package com.gkhy.labRiskManage.application.riskReport.dto.bo;
|
|
public class RiskAssessPlanIdentificationAppUpdateBO {
|
|
private Long id;
|
/**
|
* 技术措施
|
*/
|
private String technologyMeasure;
|
/**
|
* 管理措施
|
*/
|
private String manageMeasure;
|
/**
|
* 教育措施
|
*/
|
private String educationMeasure;
|
/**
|
* 个体防护措施
|
*/
|
private String personalProtectionMeasure;
|
/**
|
* 应急措施
|
*/
|
private String emergencyMeasure;
|
/**
|
* 辨识方法:1-PHA;2-JHA;3-SCL;4-HAZOP;5-类比法
|
*/
|
private Byte identificationMethod;
|
|
|
private Long analogyId;
|
/**
|
* 类比法_检查项目(辨识)
|
*/
|
private String analogyCheckItem;
|
/**
|
* 类比法_存在风险因素(辨识)
|
*/
|
private String analogyRiskFactor;
|
/**
|
* 类比法_可能产生的后果(辨识)
|
*/
|
private String analogyResult;
|
/**
|
* 类比法_类比参照(辨识)
|
*/
|
private String analogyReference;
|
|
|
private Long hazopId;
|
/**
|
* 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;
|
|
|
private Long jhaId;
|
/**
|
* JHA_作业步骤(辨识)
|
*/
|
private String jhaCheckItem;
|
/**
|
* JHA_危险源或潜在事件(辨识)
|
*/
|
private String jhaRiskFactor;
|
/**
|
* JHA_可能发生的事故类型及后果(辨识)
|
*/
|
private String jhaResult;
|
|
|
private Long phaId;
|
/**
|
* PHA_检查项目(辨识)
|
*/
|
private String phaCheckItem;
|
/**
|
* PHA_存在风险因素(辨识)
|
*/
|
private String phaRiskFactor;
|
/**
|
* PHA_可能产生的后果(辨识)
|
*/
|
private String phaResult;
|
|
|
private Long sclId;
|
/**
|
* SCL_检查项目(辨识)
|
*/
|
private String sclCheckItem;
|
/**
|
* SCL_检查标准(辨识)
|
*/
|
private String sclCheckStandard;
|
/**
|
* SCL_不符合标准情况(辨识)
|
*/
|
private String sclCheckUnstandard;
|
/**
|
* SCL_主要后果(辨识)
|
*/
|
private String sclCheckResult;
|
/**
|
* 辨识结果: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 Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getAnalogyId() {
|
return analogyId;
|
}
|
|
public void setAnalogyId(Long analogyId) {
|
this.analogyId = analogyId;
|
}
|
|
public Long getHazopId() {
|
return hazopId;
|
}
|
|
public void setHazopId(Long hazopId) {
|
this.hazopId = hazopId;
|
}
|
|
public Long getJhaId() {
|
return jhaId;
|
}
|
|
public void setJhaId(Long jhaId) {
|
this.jhaId = jhaId;
|
}
|
|
public Long getPhaId() {
|
return phaId;
|
}
|
|
public void setPhaId(Long phaId) {
|
this.phaId = phaId;
|
}
|
|
public Long getSclId() {
|
return sclId;
|
}
|
|
public void setSclId(Long sclId) {
|
this.sclId = sclId;
|
}
|
|
public Byte getIdentificationMethod() {
|
return identificationMethod;
|
}
|
|
public void setIdentificationMethod(Byte identificationMethod) {
|
this.identificationMethod = identificationMethod;
|
}
|
|
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 String getAnalogyCheckItem() {
|
return analogyCheckItem;
|
}
|
|
public void setAnalogyCheckItem(String analogyCheckItem) {
|
this.analogyCheckItem = analogyCheckItem;
|
}
|
|
public String getAnalogyRiskFactor() {
|
return analogyRiskFactor;
|
}
|
|
public void setAnalogyRiskFactor(String analogyRiskFactor) {
|
this.analogyRiskFactor = analogyRiskFactor;
|
}
|
|
public String getAnalogyResult() {
|
return analogyResult;
|
}
|
|
public void setAnalogyResult(String analogyResult) {
|
this.analogyResult = analogyResult;
|
}
|
|
public String getAnalogyReference() {
|
return analogyReference;
|
}
|
|
public void setAnalogyReference(String analogyReference) {
|
this.analogyReference = analogyReference;
|
}
|
|
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 String getJhaCheckItem() {
|
return jhaCheckItem;
|
}
|
|
public void setJhaCheckItem(String jhaCheckItem) {
|
this.jhaCheckItem = jhaCheckItem;
|
}
|
|
public String getJhaRiskFactor() {
|
return jhaRiskFactor;
|
}
|
|
public void setJhaRiskFactor(String jhaRiskFactor) {
|
this.jhaRiskFactor = jhaRiskFactor;
|
}
|
|
public String getJhaResult() {
|
return jhaResult;
|
}
|
|
public void setJhaResult(String jhaResult) {
|
this.jhaResult = jhaResult;
|
}
|
|
public String getPhaCheckItem() {
|
return phaCheckItem;
|
}
|
|
public void setPhaCheckItem(String phaCheckItem) {
|
this.phaCheckItem = phaCheckItem;
|
}
|
|
public String getPhaRiskFactor() {
|
return phaRiskFactor;
|
}
|
|
public void setPhaRiskFactor(String phaRiskFactor) {
|
this.phaRiskFactor = phaRiskFactor;
|
}
|
|
public String getPhaResult() {
|
return phaResult;
|
}
|
|
public void setPhaResult(String phaResult) {
|
this.phaResult = phaResult;
|
}
|
|
public String getSclCheckItem() {
|
return sclCheckItem;
|
}
|
|
public void setSclCheckItem(String sclCheckItem) {
|
this.sclCheckItem = sclCheckItem;
|
}
|
|
public String getSclCheckStandard() {
|
return sclCheckStandard;
|
}
|
|
public void setSclCheckStandard(String sclCheckStandard) {
|
this.sclCheckStandard = sclCheckStandard;
|
}
|
|
public String getSclCheckUnstandard() {
|
return sclCheckUnstandard;
|
}
|
|
public void setSclCheckUnstandard(String sclCheckUnstandard) {
|
this.sclCheckUnstandard = sclCheckUnstandard;
|
}
|
|
public String getSclCheckResult() {
|
return sclCheckResult;
|
}
|
|
public void setSclCheckResult(String sclCheckResult) {
|
this.sclCheckResult = sclCheckResult;
|
}
|
|
public String getFileData() {
|
return fileData;
|
}
|
|
public void setFileData(String fileData) {
|
this.fileData = fileData;
|
}
|
}
|