| | |
| | | package com.thhy.secure.modules.biz.regionInspection.entity; |
| | | |
| | | import com.thhy.general.annotations.Excel; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | |
| | | private String userId;//用户id |
| | | |
| | | private Integer status;//0未完成 1完成 |
| | | private String statusName;//状态名称 0未完成 1完成 |
| | | @Excel(sort = 5,title = "巡检状态") |
| | | private String statusName;//状态名称 0已完成 1待巡检 |
| | | |
| | | private String regionHazardInformId;//区域id |
| | | @Excel(sort = 3,title = "巡检路线") |
| | | private String region;//区域 |
| | | |
| | | private String location;//当前位置 |
| | | @Excel(sort = 1,title = "巡检时间") |
| | | private Date inspectionTime;//巡检时间 |
| | | private String createUser; |
| | | private Date createTime; |
| | |
| | | private Date updateTime; |
| | | private String result;//巡检结果 |
| | | //下面这些不是本表字段 |
| | | @Excel(sort = 4,title = "巡检人") |
| | | private String realName; |
| | | @Excel(sort = 2,title = "任务") |
| | | private String task;//任务 |
| | | private String standard;//巡检标准 |
| | | private String regions; |
| | | private String regionIds; |
| | | |
| | | private String[] imgPaths; |
| | | private String imgPaths; |
| | | |
| | | List<RegionInspectionRecordImgEntity> imgList; |
| | | } |