yaowanxin
85 分钟以前 5e55cbc7cf95b0f892ae4066a7699a5f76a0f2f3
src/main/java/com/ruoyi/device/pojo/DeviceMaintenance.java
@@ -8,6 +8,7 @@
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
@@ -20,16 +21,28 @@
    private Long id;
    @ApiModelProperty("设备台账id")
    private String deviceLedgerId;
    private Long deviceLedgerId;
    @ApiModelProperty("设备保养金额")
    private BigDecimal maintenancePrice;
    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;