| | |
| | | import java.util.List; |
| | | |
| | | public class EmergencySuppliesDetailRespDTO { |
| | | |
| | | //保养列表 |
| | | private List<EmergencySuppliesMaintainDetailRespDTO> maintainList; |
| | | |
| | | //检查列表 |
| | | private List<EmergencySuppliesInspectDetailRespDTO> inspectList; |
| | | |
| | | public List<EmergencySuppliesMaintainDetailRespDTO> getMaintainList() { |
| | |
| | | public void setInspectList(List<EmergencySuppliesInspectDetailRespDTO> inspectList) { |
| | | this.inspectList = inspectList; |
| | | } |
| | | |
| | | //负责人名称 |
| | | private String principalUserName; |
| | | |
| | | public String getPrincipalUserName() { |
| | |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | //生产日期 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date productionDate; |
| | | //投用日期 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date useDate; |
| | | //检查日期 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date inspectDate; |
| | | //下次检查日期 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date nextInspectDate; |
| | | //检查周期/月 |
| | | private Integer inspectPeriod; |
| | | //存储数量 |
| | | private Integer count; |
| | | //使用期限/天 |
| | | private Integer usePeriod; |
| | | //负责部门id |
| | | private Long departmentId; |
| | | //负责人uid |
| | | private Long principalUserUid; |
| | | //状态(数据字典) |
| | | private Byte status; |
| | | //分类(数据字典) |
| | | private Byte classification; |
| | | //名称 |
| | | private String name; |
| | | //编号 |
| | | private String number; |
| | | //型号 |
| | | private String model; |
| | | //经度 |
| | | private String longitude; |
| | | //维度 |
| | | private String latitude; |
| | | //用途 |
| | | private String use; |
| | | //所属区域 |
| | | private Long areaId; |
| | | //存放位置 |
| | | private String place; |
| | | //使用说明 |
| | | private String useExplain; |
| | | |
| | | public Long getId() { |