|
|
@@ -4,6 +4,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
@Schema(description = "管理后台 - QHSE隐患排查及整改新增/修改 Request VO")
|
|
|
@Data
|
|
|
@@ -19,6 +20,13 @@ public class IotHazardSaveReqVO {
|
|
|
@Schema(description = "隐患排查分类")
|
|
|
private String classify;
|
|
|
|
|
|
+ @Schema(description = "排查时间")
|
|
|
+ private LocalDateTime checkTime;
|
|
|
+ @Schema(description = "整改要求")
|
|
|
+ private String correctStandard;
|
|
|
+ @Schema(description = "整改要求")
|
|
|
+ private Long correctPerson;
|
|
|
+
|
|
|
@Schema(description = "隐患排查来源")
|
|
|
private String source;
|
|
|
|