| | |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("设备台账id") |
| | | private String deviceLedgerId; |
| | | private Long deviceLedgerId; |
| | | |
| | | @ApiModelProperty("报修金额") |
| | | private BigDecimal repairPrice; |
| | | |
| | | private String deviceName; |
| | | |
| | | private String deviceModel; |
| | | |
| | | @ApiModelProperty("报修时间") |
| | | private Date repairTime; |
| | |
| | | private String maintenanceName; |
| | | |
| | | @ApiModelProperty("维修时间") |
| | | private Date maintenanceTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime maintenanceTime; |
| | | |
| | | @ApiModelProperty("维修结果") |
| | | private String maintenanceResult; |
| | | |
| | | @ApiModelProperty("状态 0 待维修 1完结") |
| | | @ApiModelProperty("状态 0 待维修 1完结 2待审核 3审核不通过") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("审核人") |
| | | private String auditName; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |