zhangfeng
2022-09-21 fee66fde68610850d4c8c52df022b9d53a0cd3f7
equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/EquipmentInfoExcel.java
@@ -41,16 +41,16 @@
    private String useEndDay;
    //生命周期 1:已使用 2:库存中 3:报废
    @ExcelCell(index = 11)
    private Integer lifeCycle;
    private Byte lifeCycle;
    //投用日期
    @ExcelCell(index = 12)
    private Timestamp useDate;
    //维修状态 1:维修中 2:已修好
    @ExcelCell(index = 13)
    private Integer repairStatus;
    private Byte repairStatus;
    //停用状态 1:停用 2.在用 3.维修 4.报废    
    @ExcelCell(index = 14)
    private Integer stopStatus;
    private Byte stopStatus;
    //上次检查日期
    @ExcelCell(index = 15)
    private Timestamp previousCheckDate;
@@ -253,11 +253,11 @@
        this.useEndDay = useEndDay;
    }
    //生命周期 1:已使用 2:库存中 3:报废        
    public Integer getLifeCycle() {
    public Byte getLifeCycle() {
        return lifeCycle;
    }
    public void setLifeCycle(Integer lifeCycle) {
    public void setLifeCycle(Byte lifeCycle) {
        this.lifeCycle = lifeCycle;
    }
    //投用日期        
@@ -269,19 +269,19 @@
        this.useDate = useDate;
    }
    //维修状态 1:维修中 2:已修好        
    public Integer getRepairStatus() {
    public Byte getRepairStatus() {
        return repairStatus;
    }
    public void setRepairStatus(Integer repairStatus) {
    public void setRepairStatus(Byte repairStatus) {
        this.repairStatus = repairStatus;
    }
    //停用状态 1:停用 2.在用 3.维修 4.报废        
    public Integer getStopStatus() {
    public Byte getStopStatus() {
        return stopStatus;
    }
    public void setStopStatus(Integer stopStatus) {
    public void setStopStatus(Byte stopStatus) {
        this.stopStatus = stopStatus;
    }
    //上次检查日期