| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @Schema(description = "定时巡检任务ID") |
| | | private Long scheduleTaskId; |
| | | |
| | | @Schema(description = "巡检编号") |
| | | private String inspectionCode; |
| | | |
| | |
| | | |
| | | @Schema(description = "巡检类型") |
| | | private String inspectionType; |
| | | |
| | | @Schema(description = "巡检项目") |
| | | private String inspectionProject; |
| | | |
| | | @Schema(description = "计划巡检时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | @Schema(description = "状态(待巡检/巡检中/已完成)") |
| | | private String status; |
| | | |
| | | @Schema(description = "巡检结果(正常/异常)") |
| | | private String inspectionResult; |
| | | |
| | | @Schema(description = "实际巡检时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime actualInspectionTime; |
| | | |
| | | @Schema(description = "关联隐患排查上报ID") |
| | | private Integer hiddenId; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |