无关风月
7 天以前 884dd94c6b0bfbc48c12f280a65204aa65885d84
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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "房屋巡检导入excel")
public class AssetHouseInspectionImport implements Serializable {
 
    @Excel(name = "资产编码",width = 20)
    private String assetCode;
    @Excel(name = "资产名称",width = 20)
    private String assetName;
    @Excel(name = "门窗关闭情况",width = 20)
    private String houseCloseStatus;
    @Excel(name = "水表关闭情况",width = 20)
    private String waterStatus1;
    @Excel(name = "气表关闭情况",width = 20)
    private String waterStatus2;
    @Excel(name = "电表关闭情况",width = 20)
    private String waterStatus3;
    @Excel(name = "墙壁漏水情况",width = 20)
    private String innerStatus1;
    @Excel(name = "设备损坏情况",width = 20)
    private String innerStatus2;
    @Excel(name = "墙壁掉灰情况",width = 20)
    private String innerStatus3;
    @Excel(name = "地瓷砖开裂情况",width = 20)
    private String innerStatus4;
    @Excel(name = "巡检备注",width = 20)
    private String remark;
    @Excel(name = "巡检日期",width = 20)
    private String inspectionDate;
    @Excel(name = "巡检人",width = 20)
    private String nickName;
 
 
}