郑永安
2023-06-19 c8188c0fc9edf6ea3feda5b6f11dcb014af2a89e
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;
    }
 
}