houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
46
47
//package com.iailab.module.device.excel;
//
//import cn.afterturn.easypoi.excel.annotation.Excel;
//import lombok.Data;
//
//import java.util.Date;
//
///**
// * 设备台账
// *
// * @author lirm ${email}
// * @since 1.0.0 2024-05-27
// */
//@Data
//public class DeviceAccountExcel {
//    @Excel(name = "ID")
//    private Integer id;
//    @Excel(name = "设备ID")
//    private Integer deviceId;
//    @Excel(name = "设备名称")
//    private String deviceName;
//    @Excel(name = "设备编码")
//    private String deviceCode;
//    @Excel(name = "设备类型")
//    private String deviceCategory;
//    @Excel(name = "设备分类")
//    private String deviceClass;
//    @Excel(name = "所属车间")
//    private String workShop;
//    @Excel(name = "规格型号")
//    private String specification;
//    @Excel(name = "是否推送工单")
//    private Integer isPush;
//    @Excel(name = "运行状态")
//    private Integer runState;
//    @Excel(name = "监测状态")
//    private Integer monitorState;
//    @Excel(name = "创建人")
//    private String creator;
//    @Excel(name = "创建时间")
//    private Date createDate;
//    @Excel(name = "更新人")
//    private String updater;
//    @Excel(name = "更新时间")
//    private Date updateDate;
//
//}