package com.gkhy.labRiskManage.domain.riskReport.model.bo;
|
|
|
/**
|
* 评估项目查询BO
|
* */
|
public class AssessIdentificationQueryBO {
|
|
/**
|
* 评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* 辨识方法:1-PHA;2-JHA;3-SCL;4-HAZOP;5-类比法
|
*/
|
private Byte identificationMethod;
|
|
public Long getAssessPlanId() {
|
return assessPlanId;
|
}
|
|
public void setAssessPlanId(Long assessPlanId) {
|
this.assessPlanId = assessPlanId;
|
}
|
|
public Byte getIdentificationMethod() {
|
return identificationMethod;
|
}
|
|
public void setIdentificationMethod(Byte identificationMethod) {
|
this.identificationMethod = identificationMethod;
|
}
|
|
}
|