yb
2 天以前 bbfc6a9a5b3a899c7405d06454d315d8c283e23f
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
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, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    private String theDate;
 
}