maven
6 天以前 ee0be3d2f2a90094506e8f817098762a5b9d9a7e
src/main/java/com/ruoyi/device/pojo/DeviceMaintenance.java
@@ -20,19 +20,28 @@
    private Long id;
    @ApiModelProperty("设备台账id")
    private String deviceLedgerId;
    private Long deviceLedgerId;
    private String deviceName;
    private String deviceModel;
    @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;
    private String maintenanceResult;
    @ApiModelProperty("状态 0 待保养 1 完结")
    private Integer status;