| | |
| | | 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; |
| | |
| | | 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; |
| | | } |
| | | //投用日期 |
| | |
| | | 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; |
| | | } |
| | | //上次检查日期 |