zhangfeng
2022-09-21 fee66fde68610850d4c8c52df022b9d53a0cd3f7
equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/KeypointEquipmentInfoDto.java
@@ -8,21 +8,21 @@
import java.util.List;
public class KeypointEquipmentInfoDto implements Serializable {
    //ID
    //ID
    private Long id;
    //类型/类别外键
    //类型/类别外键
    private Long equipmentTypeId;
    //类型名称
    private String equipmentTypeName;
    //名称
    //名称
    private String name;
    //单位部门外键
    //单位部门外键
    private Long departmentId;
    //所属部门名称
    private String departmentName;
    //具体位置
    private String position;
    //负责人姓名
    //负责人姓名
    private String leadingPersonName;
    //联系人/外键
    private Long connectPersonId;
@@ -61,25 +61,25 @@
    public void setResponsibilityPersonName(String responsibilityPersonName) {
        this.responsibilityPersonName = responsibilityPersonName;
    }
    //装置部位分类 1:关键装置 2:重点部位
    private Integer partType;
    //检查周期
    //装置部位分类 1:关键装置 2:重点部位
    private Byte partType;
    //检查周期
    private String checkCycle;
    //应急预案/外键
    //应急预案/外键
    private Long emergencePlanId;
    //应急预案名称
    private String emergencePlanName;
    //主要危险有害因素
    //主要危险有害因素
    private String dangerousElement;
    //易导致风险
    //易导致风险
    private String toDangerous;
    //应急处置措施
    //应急处置措施
    private String treatment;
    //现场图片
    //现场图片
    private String scenePic;
    private Date createTime;
    private Date updateTime;
    public String getDepartmentName() {
@@ -224,7 +224,7 @@
    public void setId(Long id) {
        this.id = id;
    }
    //类型/类别外键
    //类型/类别外键
    public Long getEquipmentTypeId() {
        return equipmentTypeId;
    }
@@ -232,7 +232,7 @@
    public void setEquipmentTypeId(Long equipmentTypeId) {
        this.equipmentTypeId = equipmentTypeId;
    }
    //名称
    //名称
    public String getName() {
        return name;
    }
@@ -240,7 +240,7 @@
    public void setName(String name) {
        this.name = name;
    }
    //单位部门外键
    //单位部门外键
    public Long getDepartmentId() {
        return departmentId;
    }
@@ -248,7 +248,7 @@
    public void setDepartmentId(Long departmentId) {
        this.departmentId = departmentId;
    }
    //具体位置
    //具体位置
    public String getPosition() {
        return position;
    }
@@ -256,7 +256,7 @@
    public void setPosition(String position) {
        this.position = position;
    }
    //负责人姓名
    //负责人姓名
    public String getLeadingPersonName() {
        return leadingPersonName;
    }
@@ -264,7 +264,7 @@
    public void setLeadingPersonName(String leadingPersonName) {
        this.leadingPersonName = leadingPersonName;
    }
    //联系人/外键
    //联系人/外键
    public Long getConnectPersonId() {
        return connectPersonId;
    }
@@ -272,7 +272,7 @@
    public void setConnectPersonId(Long connectPersonId) {
        this.connectPersonId = connectPersonId;
    }
    //录入人/外键
    //录入人/外键
    public Long getInputPersonId() {
        return inputPersonId;
    }
@@ -280,7 +280,7 @@
    public void setInputPersonId(Long inputPersonId) {
        this.inputPersonId = inputPersonId;
    }
    //责任人/外键
    //责任人/外键
    public Long getResponsibilityPersonId() {
        return responsibilityPersonId;
    }
@@ -288,15 +288,15 @@
    public void setResponsibilityPersonId(Long responsibilityPersonId) {
        this.responsibilityPersonId = responsibilityPersonId;
    }
    //装置部位分类 1:关键装置 2:重点部位
    public Integer getPartType() {
    //装置部位分类 1:关键装置 2:重点部位
    public Byte getPartType() {
        return partType;
    }
    public void setPartType(Integer partType) {
    public void setPartType(Byte partType) {
        this.partType = partType;
    }
    //检查周期
    //检查周期
    public String getCheckCycle() {
        return checkCycle;
    }
@@ -304,7 +304,7 @@
    public void setCheckCycle(String checkCycle) {
        this.checkCycle = checkCycle;
    }
    //应急预案/外键
    //应急预案/外键
    public Long getEmergencePlanId() {
        return emergencePlanId;
    }
@@ -312,7 +312,7 @@
    public void setEmergencePlanId(Long emergencePlanId) {
        this.emergencePlanId = emergencePlanId;
    }
    //主要危险有害因素
    //主要危险有害因素
    public String getDangerousElement() {
        return dangerousElement;
    }
@@ -320,7 +320,7 @@
    public void setDangerousElement(String dangerousElement) {
        this.dangerousElement = dangerousElement;
    }
    //易导致风险
    //易导致风险
    public String getToDangerous() {
        return toDangerous;
    }
@@ -328,7 +328,7 @@
    public void setToDangerous(String toDangerous) {
        this.toDangerous = toDangerous;
    }
    //应急处置措施
    //应急处置措施
    public String getTreatment() {
        return treatment;
    }
@@ -336,7 +336,7 @@
    public void setTreatment(String treatment) {
        this.treatment = treatment;
    }
    //现场图片
    //现场图片
    public String getScenePic() {
        return scenePic;
    }
@@ -344,7 +344,7 @@
    public void setScenePic(String scenePic) {
        this.scenePic = scenePic;
    }
    public Date getCreateTime() {
        return createTime;
    }
@@ -352,7 +352,7 @@
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
@@ -387,4 +387,4 @@
        this.memo = memo;
    }
}
}