zss
2025-01-13 8d85246f061e3da623c7b9eb4e323ee724b4de0b
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
38
39
40
41
42
43
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;
    
    
}