package com.gkhy.labRiskManage.domain.riskReport.model.dto;
|
|
public class SclInsertDTO {
|
|
private Long id;
|
/**
|
* 风险评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* SCL_检查项目(辨识)
|
*/
|
private String sclCheckItem;
|
/**
|
* SCL_检查标准(辨识)
|
*/
|
private String sclCheckStandard;
|
/**
|
* SCL_不符合标准情况(辨识)
|
*/
|
private String sclCheckUnstandard;
|
/**
|
* SCL_主要后果(辨识)
|
*/
|
private String sclCheckResult;
|
/**
|
* 技术措施
|
*/
|
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 createByUser;
|
private String updateByUser;
|
|
|
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 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 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 getCreateByUser() {
|
return createByUser;
|
}
|
|
public void setCreateByUser(String createByUser) {
|
this.createByUser = createByUser;
|
}
|
|
public String getUpdateByUser() {
|
return updateByUser;
|
}
|
|
public void setUpdateByUser(String updateByUser) {
|
this.updateByUser = updateByUser;
|
}
|
}
|