| | |
| | | @Excel(name = "设备型号") |
| | | private String deviceModel; |
| | | |
| | | @Schema(description = "项目") |
| | | @Excel(name = "项目") |
| | | private String machineryCategory; |
| | | |
| | | @Schema(description = "报修时间") |
| | | @Excel(name = "报修时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date repairTime; |
| | |
| | | @Excel(name = "维修结果") |
| | | private String maintenanceResult; |
| | | |
| | | @Schema(description = "验收人") |
| | | @Excel(name = "验收人") |
| | | private String acceptanceName; |
| | | |
| | | @Schema(description = "验收时间") |
| | | @Excel(name = "验收时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime acceptanceTime; |
| | | |
| | | @Schema(description = "验收备注") |
| | | @Excel(name = "验收备注") |
| | | private String acceptanceRemark; |
| | | |
| | | @Schema(description = "状态") |
| | | @Excel(name = "状态") |
| | | private String statusStr; |