16639036659
2023-08-28 7a9a4f4764b0a402e3d0b4a1dafc7ecf96cb1583
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
    }
 
}