| | |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | |
| | | |
| | | @ApiModelProperty("设备台账id") |
| | | private Long deviceLedgerId; |
| | | |
| | | @ApiModelProperty("设备保养金额") |
| | | private BigDecimal maintenancePrice; |
| | | |
| | | |
| | | private String deviceName; |
| | |
| | | private LocalDateTime maintenanceActuallyTime; |
| | | |
| | | @ApiModelProperty("保养结果 0 维修 1 完好") |
| | | private Integer maintenanceResult; |
| | | private String maintenanceResult; |
| | | |
| | | @ApiModelProperty("状态 0 待保养 1 完结") |
| | | @ApiModelProperty("状态 0 待保养 1 完结 2 失败") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("创建时间") |