gongchunyi
5 天以前 64de92ae028b582b7fbe8d3c84eb568edf0d400f
src/main/java/com/ruoyi/safe/pojo/SafeLineInspection.java
@@ -33,6 +33,9 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @Schema(description = "定时巡检任务ID")
    private Long scheduleTaskId;
    @Schema(description = "巡检编号")
    private String inspectionCode;
@@ -44,6 +47,9 @@
    @Schema(description = "巡检类型")
    private String inspectionType;
    @Schema(description = "巡检项目")
    private String inspectionProject;
    @Schema(description = "计划巡检时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@@ -59,6 +65,17 @@
    @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;