yb
昨天 88c6a0e35a1edc37872fb11725c229124b037c43
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
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;
 
}