package com.gkhy.labRiskManage.domain.riskReport.entity;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* 辨识方法-Hazop
|
*/
|
@Entity
|
@Table(name = "risk_assess_plan_identification_hazop")
|
public class RiskAssessPlanIdentificationHazop implements Serializable {
|
private static final long serialVersionUID = -10750978358198693L;
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
/**
|
* 风险评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* HAZOP_节点(辨识)
|
*/
|
private String hazopNode;
|
/**
|
* HAZOP_参数(辨识)
|
*/
|
private String hazopParam;
|
/**
|
* HAZOP_参数描述(辨识)
|
*/
|
private String hazopParamDesc;
|
/**
|
* HAZOP_引导词(辨识)
|
*/
|
private String hazopGuide;
|
/**
|
* HAZOP_偏差(辨识)
|
*/
|
private String hazopDeviation;
|
/**
|
* HAZOP_可能原因(辨识)
|
*/
|
private String hazopPossibleCauses;
|
/**
|
* HAZOP_主要后果(辨识)
|
*/
|
private String hazopResult;
|
/**
|
* 删除状态:1-正常;2-已删除
|
*/
|
private Byte deleteStatus;
|
/**
|
* 新建时间
|
*/
|
private LocalDateTime createTime;
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
/**
|
* 技术措施
|
*/
|
private String technologyMeasure;
|
/**
|
* 管理措施
|
*/
|
private String manageMeasure;
|
/**
|
* 教育措施
|
*/
|
private String educationMeasure;
|
/**
|
* 个体防护措施
|
*/
|
private String personalProtectionMeasure;
|
/**
|
* 应急措施
|
*/
|
private String emergencyMeasure;
|
/**
|
* 辨识结果:1-有风险;2-无风险;
|
*/
|
private Byte result;
|
/**
|
* 辨识专家意见
|
*/
|
private String identificationDesc;
|
|
private String fileData;
|
|
public String getIdentificationDesc() {
|
return identificationDesc;
|
}
|
|
public void setIdentificationDesc(String identificationDesc) {
|
this.identificationDesc = identificationDesc;
|
}
|
public Byte getResult() {
|
return result;
|
}
|
|
public void setResult(Byte result) {
|
this.result = result;
|
}
|
public String getTechnologyMeasure() {
|
return technologyMeasure;
|
}
|
|
public void setTechnologyMeasure(String technologyMeasure) {
|
this.technologyMeasure = technologyMeasure;
|
}
|
|
public String getManageMeasure() {
|
return manageMeasure;
|
}
|
|
public void setManageMeasure(String manageMeasure) {
|
this.manageMeasure = manageMeasure;
|
}
|
|
public String getEducationMeasure() {
|
return educationMeasure;
|
}
|
|
public void setEducationMeasure(String educationMeasure) {
|
this.educationMeasure = educationMeasure;
|
}
|
|
public String getPersonalProtectionMeasure() {
|
return personalProtectionMeasure;
|
}
|
|
public void setPersonalProtectionMeasure(String personalProtectionMeasure) {
|
this.personalProtectionMeasure = personalProtectionMeasure;
|
}
|
|
public String getEmergencyMeasure() {
|
return emergencyMeasure;
|
}
|
|
public void setEmergencyMeasure(String emergencyMeasure) {
|
this.emergencyMeasure = emergencyMeasure;
|
}
|
|
public LocalDateTime getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(LocalDateTime createTime) {
|
this.createTime = createTime;
|
}
|
|
public LocalDateTime getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(LocalDateTime updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getAssessPlanId() {
|
return assessPlanId;
|
}
|
|
public void setAssessPlanId(Long assessPlanId) {
|
this.assessPlanId = assessPlanId;
|
}
|
|
public String getHazopNode() {
|
return hazopNode;
|
}
|
|
public void setHazopNode(String hazopNode) {
|
this.hazopNode = hazopNode;
|
}
|
|
public String getHazopParam() {
|
return hazopParam;
|
}
|
|
public void setHazopParam(String hazopParam) {
|
this.hazopParam = hazopParam;
|
}
|
|
public String getHazopParamDesc() {
|
return hazopParamDesc;
|
}
|
|
public void setHazopParamDesc(String hazopParamDesc) {
|
this.hazopParamDesc = hazopParamDesc;
|
}
|
|
public String getHazopGuide() {
|
return hazopGuide;
|
}
|
|
public void setHazopGuide(String hazopGuide) {
|
this.hazopGuide = hazopGuide;
|
}
|
|
public String getHazopDeviation() {
|
return hazopDeviation;
|
}
|
|
public void setHazopDeviation(String hazopDeviation) {
|
this.hazopDeviation = hazopDeviation;
|
}
|
|
public String getHazopPossibleCauses() {
|
return hazopPossibleCauses;
|
}
|
|
public void setHazopPossibleCauses(String hazopPossibleCauses) {
|
this.hazopPossibleCauses = hazopPossibleCauses;
|
}
|
|
public String getHazopResult() {
|
return hazopResult;
|
}
|
|
public void setHazopResult(String hazopResult) {
|
this.hazopResult = hazopResult;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public String getFileData() {
|
return fileData;
|
}
|
|
public void setFileData(String fileData) {
|
this.fileData = fileData;
|
}
|
}
|