package com.gkhy.safePlatform.equipment.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
/**
|
* 重点监管装置/设备 详细信息(KeypointEquipmentInfo)表实体类
|
*
|
* @author xurui
|
* @since 2022-08-09 09:39:39
|
*/
|
@SuppressWarnings("serial")
|
@TableName("keypoint_equipment_info")
|
public class KeypointEquipmentInfo extends BaseDomain {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
//类型/类别外键
|
private Long equipmentTypeId;
|
|
public Long getEquipmentTypeId() {
|
return equipmentTypeId;
|
}
|
|
public void setEquipmentTypeId(Long equipmentTypeId) {
|
this.equipmentTypeId = equipmentTypeId;
|
}
|
//名称
|
private String name;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
//单位部门外键
|
private Long departmentId;
|
|
public Long getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(Long departmentId) {
|
this.departmentId = departmentId;
|
}
|
//具体位置
|
private String position;
|
|
public String getPosition() {
|
return position;
|
}
|
|
public void setPosition(String position) {
|
this.position = position;
|
}
|
//负责人姓名
|
private String leadingPersonName;
|
|
public String getLeadingPersonName() {
|
return leadingPersonName;
|
}
|
|
public void setLeadingPersonName(String leadingPersonName) {
|
this.leadingPersonName = leadingPersonName;
|
}
|
//联系人/外键
|
private Long connectPersonId;
|
|
public Long getConnectPersonId() {
|
return connectPersonId;
|
}
|
|
public void setConnectPersonId(Long connectPersonId) {
|
this.connectPersonId = connectPersonId;
|
}
|
//联系人名称
|
private String connectPersonName;
|
|
public String getConnectPersonName() {
|
return connectPersonName;
|
}
|
|
public void setConnectPersonName(String connectPersonName) {
|
this.connectPersonName = connectPersonName;
|
}
|
//录入人/外键
|
private Long inputPersonId;
|
|
public Long getInputPersonId() {
|
return inputPersonId;
|
}
|
|
public void setInputPersonId(Long inputPersonId) {
|
this.inputPersonId = inputPersonId;
|
}
|
//录入人名称
|
private String inputPersonName;
|
|
public String getInputPersonName() {
|
return inputPersonName;
|
}
|
|
public void setInputPersonName(String inputPersonName) {
|
this.inputPersonName = inputPersonName;
|
}
|
//责任人/外键
|
private Long responsibilityPersonId;
|
|
public Long getResponsibilityPersonId() {
|
return responsibilityPersonId;
|
}
|
|
public void setResponsibilityPersonId(Long responsibilityPersonId) {
|
this.responsibilityPersonId = responsibilityPersonId;
|
}
|
//责任人名称
|
private String responsibilityPersonName;
|
|
public String getResponsibilityPersonName() {
|
return responsibilityPersonName;
|
}
|
|
public void setResponsibilityPersonName(String responsibilityPersonName) {
|
this.responsibilityPersonName = responsibilityPersonName;
|
}
|
//装置部位分类 1:关键装置 2:重点部位
|
private Integer partType;
|
|
public Integer getPartType() {
|
return partType;
|
}
|
|
public void setPartType(Integer partType) {
|
this.partType = partType;
|
}
|
//检查周期
|
private String checkCycle;
|
|
public String getCheckCycle() {
|
return checkCycle;
|
}
|
|
public void setCheckCycle(String checkCycle) {
|
this.checkCycle = checkCycle;
|
}
|
//应急预案/外键
|
private Long emergencePlanId;
|
|
public Long getEmergencePlanId() {
|
return emergencePlanId;
|
}
|
|
public void setEmergencePlanId(Long emergencePlanId) {
|
this.emergencePlanId = emergencePlanId;
|
}
|
//主要危险有害因素
|
private String dangerousElement;
|
|
public String getDangerousElement() {
|
return dangerousElement;
|
}
|
|
public void setDangerousElement(String dangerousElement) {
|
this.dangerousElement = dangerousElement;
|
}
|
//易导致风险
|
private String toDangerous;
|
|
public String getToDangerous() {
|
return toDangerous;
|
}
|
|
public void setToDangerous(String toDangerous) {
|
this.toDangerous = toDangerous;
|
}
|
//应急处置措施
|
private String treatment;
|
|
public String getTreatment() {
|
return treatment;
|
}
|
|
public void setTreatment(String treatment) {
|
this.treatment = treatment;
|
}
|
//现场图片
|
private String scenePic;
|
|
public String getScenePic() {
|
return scenePic;
|
}
|
|
public void setScenePic(String scenePic) {
|
this.scenePic = scenePic;
|
}
|
|
//备注
|
private String memo;
|
|
public String getMemo() {
|
return memo;
|
}
|
|
public void setMemo(String memo) {
|
this.memo = memo;
|
}
|
}
|