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;
|
|
|
}
|