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
//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 DeviceAccountHistoryExcel {
//    @Excel(name = "id")
//    private Integer id;
//    @Excel(name = "故障设备")
//    private String faultDevice;
//    @Excel(name = "故障部件")
//    private String faultParts;
//    @Excel(name = "故障类型")
//    private String faultType;
//    @Excel(name = "故障原因")
//    private String faultCause;
//    @Excel(name = "处理对策")
//    private String solution;
//    @Excel(name = "处理状态")
//    private String state;
//    @Excel(name = "影响时长")
//    private Integer affectHour;
//    @Excel(name = "发生时间")
//    private Date creatorDate;
//
//}