package com.yuanchu.mom.excel;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
@Data
|
public class DeviceRecordExport {
|
@ExcelProperty("流程编号")
|
private String deviceNumber;
|
|
@ExcelProperty("设备名称")
|
private String deviceName;
|
|
@ExcelProperty("管理编号")
|
private String managementNumber;
|
|
@ExcelProperty("温度")
|
private String temperature;
|
|
@ExcelProperty("湿度")
|
private String humidity;
|
|
@ExcelProperty("使用前")
|
private String useBefore;
|
|
@ExcelProperty("使用后")
|
private String useAfter;
|
|
@ExcelProperty("异常情况")
|
private String abnormal;
|
|
@ExcelProperty("使用日期")
|
private String useDate;
|
|
@ExcelProperty("使用人")
|
private String usePerson;
|
|
@ExcelProperty("备注")
|
private String remark;
|
|
|
}
|