heheng
2025-05-21 6d6f2f9fe9ee5e0d2b1b63bb7cde575f2a93876b
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package com.gkhy.labRiskManage.domain.riskReport.model.dto;
 
public class JhaInsertDTO {
 
    private Long id;
    /**
     * 风险评估计划id
     */
    private Long assessPlanId;
    /**
     * JHA_作业步骤(辨识)
     */
    private String jhaCheckItem;
    /**
     * JHA_危险源或潜在事件(辨识)
     */
    private String jhaRiskFactor;
    /**
     * JHA_可能发生的事故类型及后果(辨识)
     */
    private String jhaResult;
    /**
     * 技术措施
     */
    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 getJhaCheckItem() {
        return jhaCheckItem;
    }
 
    public void setJhaCheckItem(String jhaCheckItem) {
        this.jhaCheckItem = jhaCheckItem;
    }
 
    public String getJhaRiskFactor() {
        return jhaRiskFactor;
    }
 
    public void setJhaRiskFactor(String jhaRiskFactor) {
        this.jhaRiskFactor = jhaRiskFactor;
    }
 
    public String getJhaResult() {
        return jhaResult;
    }
 
    public void setJhaResult(String jhaResult) {
        this.jhaResult = jhaResult;
    }
 
    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;
    }
}