| | |
| | | private Date inspectionStartTime; |
| | | |
| | | /** 检查结束时间 **/ |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private Date inspectionEndTime; |
| | | |
| | | /** 检查项集合 **/ |
| | |
| | | |
| | | //检查标识 2自查,1监管检查 |
| | | private Byte flag; |
| | | |
| | | /** |
| | | * 隐患总数 |
| | | */ |
| | |
| | | @TableField(exist = false) |
| | | private Integer majorCount; |
| | | /** |
| | | * 整改状态 0未整改 1部分整改 2全部整改 |
| | | * 整改状态 -1未整改 1部分整改 2全部整改 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Integer rectificationStatus; |
| | | |
| | | //检查清单附件 |
| | | @TableField(exist = false) |
| | | private List<AttachmentInfo> attachmentList; |
| | | |
| | | public List<AttachmentInfo> getAttachmentList() { |
| | | return attachmentList; |
| | | } |
| | | |
| | | public void setAttachmentList(List<AttachmentInfo> attachmentList) { |
| | | this.attachmentList = attachmentList; |
| | | } |
| | | |
| | | public List<InspectionExpert> getExpertList() { |
| | | return expertList; |
| | | } |