heheng
2025-03-12 d5e17ecf9a804992c3e352d64a37cecbabd57d74
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
package com.gkhy.labRiskManage.application.riskReport.dto.bo;
 
public class RiskAssessPlanIdentificationAppUpdateBO {
 
    private Long id;
    /**
     * 技术措施
     */
    private String technologyMeasure;
    /**
     * 管理措施
     */
    private String manageMeasure;
    /**
     * 教育措施
     */
    private String educationMeasure;
    /**
     * 个体防护措施
     */
    private String personalProtectionMeasure;
    /**
     * 应急措施
     */
    private String emergencyMeasure;
    /**
     * 辨识方法:1-PHA;2-JHA;3-SCL;4-HAZOP;5-类比法
     */
    private Byte identificationMethod;
 
 
    private Long analogyId;
    /**
     * 类比法_检查项目(辨识)
     */
    private String analogyCheckItem;
    /**
     * 类比法_存在风险因素(辨识)
     */
    private String analogyRiskFactor;
    /**
     * 类比法_可能产生的后果(辨识)
     */
    private String analogyResult;
    /**
     * 类比法_类比参照(辨识)
     */
    private String analogyReference;
 
 
    private Long hazopId;
    /**
     * HAZOP_节点(辨识)
     */
    private String hazopNode;
    /**
     * HAZOP_参数(辨识)
     */
    private String hazopParam;
    /**
     * HAZOP_参数描述(辨识)
     */
    private String hazopParamDesc;
    /**
     * HAZOP_引导词(辨识)
     */
    private String hazopGuide;
    /**
     * HAZOP_偏差(辨识)
     */
    private String hazopDeviation;
    /**
     * HAZOP_可能原因(辨识)
     */
    private String hazopPossibleCauses;
    /**
     * HAZOP_主要后果(辨识)
     */
    private String hazopResult;
 
 
    private Long jhaId;
    /**
     * JHA_作业步骤(辨识)
     */
    private String jhaCheckItem;
    /**
     * JHA_危险源或潜在事件(辨识)
     */
    private String jhaRiskFactor;
    /**
     * JHA_可能发生的事故类型及后果(辨识)
     */
    private String jhaResult;
 
 
    private Long phaId;
    /**
     * PHA_检查项目(辨识)
     */
    private String phaCheckItem;
    /**
     * PHA_存在风险因素(辨识)
     */
    private String phaRiskFactor;
    /**
     * PHA_可能产生的后果(辨识)
     */
    private String phaResult;
 
 
    private Long sclId;
    /**
     * SCL_检查项目(辨识)
     */
    private String sclCheckItem;
    /**
     * SCL_检查标准(辨识)
     */
    private String sclCheckStandard;
    /**
     * SCL_不符合标准情况(辨识)
     */
    private String sclCheckUnstandard;
    /**
     * SCL_主要后果(辨识)
     */
    private String sclCheckResult;
    /**
     * 辨识结果:1-有风险;2-无风险;
     */
    private Byte result;
    /**
     * 辨识专家意见
     */
    private String identificationDesc;
 
    private String fileData;
 
    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 Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getAnalogyId() {
        return analogyId;
    }
 
    public void setAnalogyId(Long analogyId) {
        this.analogyId = analogyId;
    }
 
    public Long getHazopId() {
        return hazopId;
    }
 
    public void setHazopId(Long hazopId) {
        this.hazopId = hazopId;
    }
 
    public Long getJhaId() {
        return jhaId;
    }
 
    public void setJhaId(Long jhaId) {
        this.jhaId = jhaId;
    }
 
    public Long getPhaId() {
        return phaId;
    }
 
    public void setPhaId(Long phaId) {
        this.phaId = phaId;
    }
 
    public Long getSclId() {
        return sclId;
    }
 
    public void setSclId(Long sclId) {
        this.sclId = sclId;
    }
 
    public Byte getIdentificationMethod() {
        return identificationMethod;
    }
 
    public void setIdentificationMethod(Byte identificationMethod) {
        this.identificationMethod = identificationMethod;
    }
 
    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 String getAnalogyCheckItem() {
        return analogyCheckItem;
    }
 
    public void setAnalogyCheckItem(String analogyCheckItem) {
        this.analogyCheckItem = analogyCheckItem;
    }
 
    public String getAnalogyRiskFactor() {
        return analogyRiskFactor;
    }
 
    public void setAnalogyRiskFactor(String analogyRiskFactor) {
        this.analogyRiskFactor = analogyRiskFactor;
    }
 
    public String getAnalogyResult() {
        return analogyResult;
    }
 
    public void setAnalogyResult(String analogyResult) {
        this.analogyResult = analogyResult;
    }
 
    public String getAnalogyReference() {
        return analogyReference;
    }
 
    public void setAnalogyReference(String analogyReference) {
        this.analogyReference = analogyReference;
    }
 
    public String getHazopNode() {
        return hazopNode;
    }
 
    public void setHazopNode(String hazopNode) {
        this.hazopNode = hazopNode;
    }
 
    public String getHazopParam() {
        return hazopParam;
    }
 
    public void setHazopParam(String hazopParam) {
        this.hazopParam = hazopParam;
    }
 
    public String getHazopParamDesc() {
        return hazopParamDesc;
    }
 
    public void setHazopParamDesc(String hazopParamDesc) {
        this.hazopParamDesc = hazopParamDesc;
    }
 
    public String getHazopGuide() {
        return hazopGuide;
    }
 
    public void setHazopGuide(String hazopGuide) {
        this.hazopGuide = hazopGuide;
    }
 
    public String getHazopDeviation() {
        return hazopDeviation;
    }
 
    public void setHazopDeviation(String hazopDeviation) {
        this.hazopDeviation = hazopDeviation;
    }
 
    public String getHazopPossibleCauses() {
        return hazopPossibleCauses;
    }
 
    public void setHazopPossibleCauses(String hazopPossibleCauses) {
        this.hazopPossibleCauses = hazopPossibleCauses;
    }
 
    public String getHazopResult() {
        return hazopResult;
    }
 
    public void setHazopResult(String hazopResult) {
        this.hazopResult = hazopResult;
    }
 
    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 getPhaCheckItem() {
        return phaCheckItem;
    }
 
    public void setPhaCheckItem(String phaCheckItem) {
        this.phaCheckItem = phaCheckItem;
    }
 
    public String getPhaRiskFactor() {
        return phaRiskFactor;
    }
 
    public void setPhaRiskFactor(String phaRiskFactor) {
        this.phaRiskFactor = phaRiskFactor;
    }
 
    public String getPhaResult() {
        return phaResult;
    }
 
    public void setPhaResult(String phaResult) {
        this.phaResult = phaResult;
    }
 
    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 getFileData() {
        return fileData;
    }
 
    public void setFileData(String fileData) {
        this.fileData = fileData;
    }
}