songhuangfeng123
2022-09-19 ab2b3291cb9e21885ed878d60f5afd6640d830f3
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/model/dto/resp/EmergencySuppliesDetailRespDTO.java
@@ -12,9 +12,9 @@
import java.util.List;
public class EmergencySuppliesDetailRespDTO {
    //保养列表
    private List<EmergencySuppliesMaintainDetailRespDTO> maintainList;
    //检查列表
    private List<EmergencySuppliesInspectDetailRespDTO> inspectList;
    public List<EmergencySuppliesMaintainDetailRespDTO> getMaintainList() {
@@ -32,7 +32,7 @@
    public void setInspectList(List<EmergencySuppliesInspectDetailRespDTO> inspectList) {
        this.inspectList = inspectList;
    }
    //负责人名称
    private String principalUserName;
    public String getPrincipalUserName() {
@@ -45,29 +45,49 @@
    @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() {