|
|
|
@ -52,9 +52,12 @@ public class MoldRepairSaveReqVO {
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "验收日期")
|
|
|
|
@Schema(description = "验收日期")
|
|
|
|
private LocalDateTime confirmDate;
|
|
|
|
private LocalDateTime confirmDate;
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// @Schema(description = "维修结果")
|
|
|
|
|
|
|
|
// private String repairResult;
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "维修结果")
|
|
|
|
@Schema(description = "维修结果")
|
|
|
|
private String repairResult;
|
|
|
|
private String repairStatus;
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "维修人员")
|
|
|
|
@Schema(description = "维修人员")
|
|
|
|
private String acceptedBy;
|
|
|
|
private String acceptedBy;
|
|
|
|
@ -80,4 +83,37 @@ public class MoldRepairSaveReqVO {
|
|
|
|
@Schema(description = "关键件Id")
|
|
|
|
@Schema(description = "关键件Id")
|
|
|
|
private Long componentId;
|
|
|
|
private Long componentId;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@Schema(description = "故障等级 1-一般 2-严重 3-紧急")
|
|
|
|
|
|
|
|
private Integer faultLevel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "是否停机")
|
|
|
|
|
|
|
|
private Boolean shutdown;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "故障现象")
|
|
|
|
|
|
|
|
private String faultPhenomenon;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "故障描述")
|
|
|
|
|
|
|
|
private String faultDescription;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "故障图片,多个逗号分隔")
|
|
|
|
|
|
|
|
private String faultImages;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "停机时长")
|
|
|
|
|
|
|
|
private String shutdownDuration;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "故障原因")
|
|
|
|
|
|
|
|
private String faultReason;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "处理措施")
|
|
|
|
|
|
|
|
private String treatmentMeasures;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "更换配件")
|
|
|
|
|
|
|
|
private String replacementParts;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "维修总结/维修内容")
|
|
|
|
|
|
|
|
private String repairSummary;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "维修后图片,多个逗号分隔")
|
|
|
|
|
|
|
|
private String repairedImages;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|