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
44
45
package com.yuanchu.mom.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import lombok.Data;
 
@Data
public class DeviceMaintenanceExport {
 
    @ColumnWidth(20)
    @ExcelProperty("设备名称")
    private String deviceName;
 
    @ColumnWidth(20)
    @ExcelProperty("流程编号")
    private String deviceNumber;
 
    @ColumnWidth(20)
    @ExcelProperty("管理编号")
    private String managementNumber;
 
    @ColumnWidth(50)
    @ExcelProperty("维护内容")
    private String content;
 
    @ColumnWidth(20)
    @ExcelProperty("维护时间")
    private String date;
 
    @ColumnWidth(20)
    @ExcelProperty("下次维护时间")
    private String nextDate;
 
    @ColumnWidth(20)
    @ExcelProperty("维护类型")
    private String maintenanceType;
 
    @ColumnWidth(20)
    @ExcelProperty("维护人")
    private String name;
 
    @ColumnWidth(50)
    @ExcelProperty("备注")
    private String comments;
}