package com.gkhy.labRiskManage.domain.riskReport.entity;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* 辨识方法-类比法(Analogy)
|
*/
|
@Entity
|
@Table(name = "risk_assess_plan_identification_analogy")
|
public class RiskAssessPlanIdentificationAnalogy implements Serializable {
|
private static final long serialVersionUID = 647218208630896833L;
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
/**
|
* 风险评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* 类比法_检查项目(辨识)
|
*/
|
private String analogyCheckItem;
|
/**
|
* 类比法_存在风险因素(辨识)
|
*/
|
private String analogyRiskFactor;
|
/**
|
* 类比法_可能产生的后果(辨识)
|
*/
|
private String analogyResult;
|
/**
|
* 类比法_类比参照(辨识)
|
*/
|
private String analogyReference;
|
/**
|
* 删除状态: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 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 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;
|
}
|
}
|