yb
昨天 ec33a83aa39eedaf39675d4ef7be5f133f556846
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 feedbeilv, BigDecimal spindlebeilv) {
        this.theDate = theDate;
        this.feedbeilv = feedbeilv;
        this.spindlebeilv = spindlebeilv;
    }
 
    public MdcEquipmentMagnificationDto() {
 
    }
 
}