liyong
4 天以前 c4132c10ccf4dfe7fdd05178dd37ffc1333ee123
src/main/java/com/ruoyi/device/pojo/DeviceMaintenance.java
@@ -20,16 +20,20 @@
    private Long id;
    @ApiModelProperty("设备台账id")
    private String deviceLedgerId;
    private Long deviceLedgerId;
    @ApiModelProperty("计划保养日期")
    private Date maintenancePlanTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime maintenancePlanTime;
    @ApiModelProperty("实际保养人")
    private String maintenanceActuallyName;
    @ApiModelProperty("实际保养日期")
    private Date maintenanceActuallyTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime maintenanceActuallyTime;
    @ApiModelProperty("保养结果 0 维修 1 完好")
    private Integer maintenanceResult;