yb
昨天 45f273a2bdef5db34da34a1ac72ee26da5452c8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package org.jeecg.modules.mdc.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.math.BigDecimal;
 
@Data
public class MdcEquipmentMagnificationDto {
 
    @Excel(name = "设备编号", width = 15)
    private String equipmentId;
    //  主轴倍率平均值
    @Excel(name = "主轴倍率平均值", width = 15)
    private BigDecimal spindlebeilv = new BigDecimal(0);
    //进给倍率平均值
    @Excel(name = "进给倍率平均值", width = 15)
    private BigDecimal feedbeilv = new BigDecimal(0);
    //有效日期
    @ApiModelProperty(value = "日期")
    @Excel(name = "日期", width = 15)
    private String theDate;
 
 
    public MdcEquipmentMagnificationDto(String theDate, BigDecimal spindlebeilv, BigDecimal feedbeilv) {
        this.theDate = theDate;
        this.spindlebeilv = spindlebeilv;
        this.feedbeilv = feedbeilv;
    }
 
    public MdcEquipmentMagnificationDto() {
 
    }
 
}