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;
|
|
}
|