| | |
| | | |
| | | @Schema(description = "报修内容") |
| | | private String remark; |
| | | |
| | | @Schema(description = "设备类目") |
| | | |
| | | @Schema(description = "设备项目") |
| | | private String machineryCategory; |
| | | |
| | | |
| | |
| | | @Schema(description = "维修结果") |
| | | private String maintenanceResult; |
| | | |
| | | @Schema(description = "验收人") |
| | | private String acceptanceName; |
| | | |
| | | @Schema(description = "验收时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime acceptanceTime; |
| | | |
| | | @Schema(description = "验收备注") |
| | | private String acceptanceRemark; |
| | | |
| | | @Schema(description = "状态 0 待维修 1完结 2 失败") |
| | | // 0:待维修 1:完结 2:失败 3:待验收 |
| | | private Integer status; |
| | | |
| | | @Schema(description = "创建时间") |