zhitong.yu
2024-10-11 eb7075c41933b7d8043a66912631076eed13ae08
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
package com.hxzk.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <p>
 * 航锦化工受限空间安全作业证
 * </p>
 *
 * @author wangfei
 * @since 2024-04-22
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_zyp_space")
@ApiModel(value = "TbZypSpace对象", description = "航锦化工受限空间安全作业证")
public class TbZypSpace implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "申请单位")
    @TableField("applicant")
    private String applicant;
 
    @ApiModelProperty(value = "申请时间")
    @TableField("applicationtime")
    private String applicationtime;
 
    @ApiModelProperty(value = "作业内容")
    @TableField("content")
    private String content;
 
    @ApiModelProperty(value = "受限空间名称")
    @TableField("spacename")
    private String spacename;
 
    @ApiModelProperty(value = "受限空间内原有介质名称")
    @TableField("mediumname")
    private String mediumname;
 
    @ApiModelProperty(value = "取样分析时间1")
    @TableField("gasanalysistime1")
    private String gasanalysistime1;
 
 
    @ApiModelProperty(value = "取样分析时间2")
    @TableField("gasanalysistime2")
    private String gasanalysistime2;
 
    @ApiModelProperty(value = "取样分析时间3")
    @TableField("gasanalysistime3")
    private String gasanalysistime3;
 
    @ApiModelProperty(value = "分析部位1")
    @TableField("analysisresult1")
    private String analysisresult1;
 
    @ApiModelProperty(value = "分析部位2")
    @TableField("analysisresult2")
    private String analysisresult2;
 
    @ApiModelProperty(value = "分析结部位3")
    @TableField("analysisresult3")
    private String analysisresult3;
 
    @ApiModelProperty(value = "分析人1")
    @TableField("analyst1")
    private String analyst1;
 
    @ApiModelProperty(value = "分析人2")
    @TableField("analyst2")
    private String analyst2;
 
    @ApiModelProperty(value = "分析人3")
    @TableField("analyst3")
    private String analyst3;
 
    @ApiModelProperty(value = "关联的其他特殊作业及安全作业票编号")
    @TableField("otherworkandnum")
    private String otherworkandnum;
 
    @ApiModelProperty(value = "风险辨识结果")
    @TableField("riskresult")
    private String riskresult;
 
    @ApiModelProperty(value = "作业实施时间")
    @TableField("hottime")
    private String hottime;
 
    @ApiModelProperty(value = "安全措施1")
    @TableField("safetymeasure1")
    private String safetymeasure1;
 
    @ApiModelProperty(value = "安全措施2")
    @TableField("safetymeasure2")
    private String safetymeasure2;
 
    @ApiModelProperty(value = "安全措施3")
    @TableField("safetymeasure3")
    private String safetymeasure3;
 
    @ApiModelProperty(value = "安全措施4")
    @TableField("safetymeasure4")
    private String safetymeasure4;
 
    @ApiModelProperty(value = "安全措施5")
    @TableField("safetymeasure5")
    private String safetymeasure5;
 
    @ApiModelProperty(value = "安全措施6")
    @TableField("safetymeasure6")
    private String safetymeasure6;
 
    @ApiModelProperty(value = "安全措施7")
    @TableField("safetymeasure7")
    private String safetymeasure7;
 
    @ApiModelProperty(value = "安全措施8")
    @TableField("safetymeasure8")
    private String safetymeasure8;
 
    @ApiModelProperty(value = "安全措施9")
    @TableField("safetymeasure9")
    private String safetymeasure9;
 
    @ApiModelProperty(value = "安全措施10")
    @TableField("safetymeasure10")
    private String safetymeasure10;
 
    @ApiModelProperty(value = "安全措施11")
    @TableField("safetymeasure11")
    private String safetymeasure11;
 
    @ApiModelProperty(value = "安全措施12")
    @TableField("safetymeasure12")
    private String safetymeasure12;
 
    @ApiModelProperty(value = "安全措施13")
    @TableField("safetymeasure13")
    private String safetymeasure13;
 
    @ApiModelProperty(value = "安全措施14")
    @TableField("safetymeasure14")
    private String safetymeasure14;
 
    @ApiModelProperty(value = "安全措施15")
    @TableField("safetymeasure15")
    private String safetymeasure15;
 
    @ApiModelProperty(value = "安全交底人")
    @TableField("secureper")
    private String secureper;
 
    @ApiModelProperty(value = "接收交底人")
    @TableField("receive")
    private String receive;
 
    @ApiModelProperty(value = "监护人")
    @TableField("guardian")
    private String guardian;
 
    @ApiModelProperty(value = "作业负责人意见   ")
    @TableField("operationaladvice")
    private String operationaladvice;
 
    @ApiModelProperty(value = "审批意见    ")
    @TableField("safetyadvice")
    private String safetyadvice;
 
    @ApiModelProperty(value = "完工验收")
    @TableField("completionacceptance")
    private String completionacceptance;
 
    @ApiModelProperty(value = "编号")
    @TableField("code")
    private String code;
 
    @ApiModelProperty(value = "火灾")
    @TableField(value = "firehazard",updateStrategy = FieldStrategy.IGNORED)
    private String firehazard;
 
    @ApiModelProperty(value = "其他爆炸")
    @TableField(value = "otherexplosions",updateStrategy = FieldStrategy.IGNORED)
    private String otherexplosions;
 
    @ApiModelProperty(value = "高空坠落")
    @TableField(value = "highfall",updateStrategy = FieldStrategy.IGNORED)
    private String highfall;
 
    @ApiModelProperty(value = "机械伤害")
    @TableField(value = "mechanicalinjury",updateStrategy = FieldStrategy.IGNORED)
    private String mechanicalinjury;
 
    @ApiModelProperty(value = "物理打击")
    @TableField(value = "physicalattack",updateStrategy = FieldStrategy.IGNORED)
    private String physicalattack;
 
    @ApiModelProperty(value = "触电")
    @TableField(value = "getshock",updateStrategy = FieldStrategy.IGNORED)
    private String getshock;
 
    @ApiModelProperty(value = "车辆伤害")
    @TableField(value = "vehicleinjury",updateStrategy = FieldStrategy.IGNORED)
    private String vehicleinjury;
 
    @ApiModelProperty(value = "起重伤害")
    @TableField(value = "liftinginjury",updateStrategy = FieldStrategy.IGNORED)
    private String liftinginjury;
 
    @ApiModelProperty(value = "淹溺")
    @TableField(value = "drowning",updateStrategy = FieldStrategy.IGNORED)
    private String drowning;
 
    @ApiModelProperty(value = "灼烫")
    @TableField(value = "scalding",updateStrategy = FieldStrategy.IGNORED)
    private String scalding;
 
    @ApiModelProperty(value = "坍塌")
    @TableField(value = "collapse",updateStrategy = FieldStrategy.IGNORED)
    private String collapse;
 
    @ApiModelProperty(value = "锅炉爆炸")
    @TableField(value = "boilerexplosion",updateStrategy = FieldStrategy.IGNORED)
    private String boilerexplosion;
 
    @ApiModelProperty(value = "容器爆炸")
    @TableField(value = "containerexplosion",updateStrategy = FieldStrategy.IGNORED)
    private String containerexplosion;
 
    @ApiModelProperty(value = "中毒和窒息")
    @TableField(value = "zdandzx",updateStrategy = FieldStrategy.IGNORED)
    private String zdandzx;
 
    @ApiModelProperty(value = "其他伤害")
    @TableField("otherinjuries")
    private String otherinjuries;
 
    @ApiModelProperty(value = "涉及1")
    @TableField(value = "refer1",updateStrategy = FieldStrategy.IGNORED)
    private String refer1;
 
    @ApiModelProperty(value = "涉及2")
    @TableField(value = "refer2",updateStrategy = FieldStrategy.IGNORED)
    private String refer2;
 
    @ApiModelProperty(value = "涉及3")
    @TableField(value = "refer3",updateStrategy = FieldStrategy.IGNORED)
    private String refer3;
 
    @ApiModelProperty(value = "涉及4")
    @TableField(value = "refer4",updateStrategy = FieldStrategy.IGNORED)
    private String refer4;
 
    @ApiModelProperty(value = "涉及5")
    @TableField(value = "refer5",updateStrategy = FieldStrategy.IGNORED)
    private String refer5;
 
    @ApiModelProperty(value = "涉及6")
    @TableField(value = "refer6",updateStrategy = FieldStrategy.IGNORED)
    private String refer6;
 
    @ApiModelProperty(value = "涉及7")
    @TableField(value = "refer7",updateStrategy = FieldStrategy.IGNORED)
    private String refer7;
 
    @ApiModelProperty(value = "涉及8")
    @TableField(value = "refer8",updateStrategy = FieldStrategy.IGNORED)
    private String refer8;
 
    @ApiModelProperty(value = "涉及9")
    @TableField(value = "refer9",updateStrategy = FieldStrategy.IGNORED)
    private String refer9;
 
    @ApiModelProperty(value = "涉及10")
    @TableField(value = "refer10",updateStrategy = FieldStrategy.IGNORED)
    private String refer10;
 
    @ApiModelProperty(value = "涉及11")
    @TableField(value = "refer11",updateStrategy = FieldStrategy.IGNORED)
    private String refer11;
 
    @ApiModelProperty(value = "涉及12")
    @TableField(value = "refer12",updateStrategy = FieldStrategy.IGNORED)
    private String refer12;
 
    @ApiModelProperty(value = "涉及13")
    @TableField(value = "refer13",updateStrategy = FieldStrategy.IGNORED)
    private String refer13;
 
 
    @ApiModelProperty(value = "涉及14")
    @TableField(value = "refer14",updateStrategy = FieldStrategy.IGNORED)
    private String refer14;
 
    @ApiModelProperty(value = "签字1")
    @TableField("sign1")
    private String sign1;
 
    @ApiModelProperty(value = "签字2")
    @TableField("sign2")
    private String sign2;
 
    @ApiModelProperty(value = "签字3")
    @TableField("sign3")
    private String sign3;
 
    @ApiModelProperty(value = "其他安全措施")
    @TableField("safetymeasureother")
    private String safetymeasureother;
 
    @ApiModelProperty(value = "编制人")
    @TableField("organizer")
    private String organizer;
 
    @ApiModelProperty(value = "是否完结")
    @TableField("iscompleted")
    private String iscompleted;
 
    @ApiModelProperty(value = "作业人")
    @TableField("operator")
    private String operator;
 
    @ApiModelProperty(value = "取样分析时间4")
    @TableField("gasanalysistime4")
    private String gasanalysistime4;
 
    @ApiModelProperty(value = "取样分析时间5")
    @TableField("gasanalysistime5")
    private String gasanalysistime5;
 
    @ApiModelProperty(value = "取样分析时间6")
    @TableField("gasanalysistime6")
    private String gasanalysistime6;
 
    @ApiModelProperty(value = "取样分析时间7")
    @TableField("gasanalysistime7")
    private String gasanalysistime7;
 
    @ApiModelProperty(value = "分析部位4")
    @TableField("analysisresult4")
    private String analysisresult4;
 
    @ApiModelProperty(value = "分析部位5")
    @TableField("analysisresult5")
    private String analysisresult5;
 
    @ApiModelProperty(value = "分析部位6")
    @TableField("analysisresult6")
    private String analysisresult6;
 
    @ApiModelProperty(value = "分析部位7")
    @TableField("analysisresult7")
    private String analysisresult7;
 
    @ApiModelProperty(value = "分析人4")
    @TableField("analyst4")
    private String analyst4;
 
    @ApiModelProperty(value = "分析人5")
    @TableField("analyst5")
    private String analyst5;
 
    @ApiModelProperty(value = "分析人6")
    @TableField("analyst6")
    private String analyst6;
 
    @ApiModelProperty(value = "分析人7")
    @TableField("analyst7")
    private String analyst7;
 
    @ApiModelProperty(value = "氧气含量1")
    @TableField("breathcontent1")
    private String breathcontent1;
 
    @ApiModelProperty(value = "氧气含量2")
    @TableField("breathcontent2")
    private String breathcontent2;
 
    @ApiModelProperty(value = "氧气含量3")
    @TableField("breathcontent3")
    private String breathcontent3;
 
    @ApiModelProperty(value = "氧气含量4")
    @TableField("breathcontent4")
    private String breathcontent4;
 
    @ApiModelProperty(value = "氧气含量5")
    @TableField("breathcontent5")
    private String breathcontent5;
 
    @ApiModelProperty(value = "氧气含量6")
    @TableField("breathcontent6")
    private String breathcontent6;
 
    @ApiModelProperty(value = "有毒有害气体名称11")
    @TableField("poisonname11")
    private String poisonname11;
 
    @ApiModelProperty(value = "有毒有害气体名称21")
    @TableField("poisonname21")
    private String poisonname21;
 
    @ApiModelProperty(value = "有毒有害气体名称31")
    @TableField("poisonname31")
    private String poisonname31;
 
    @ApiModelProperty(value = "有毒有害气体名称41")
    @TableField("poisonname41")
    private String poisonname41;
 
    @ApiModelProperty(value = "有毒有害气体名称51")
    @TableField("poisonname51")
    private String poisonname51;
 
    @ApiModelProperty(value = "有毒有害气体名称61")
    @TableField("poisonname61")
    private String poisonname61;
 
    @ApiModelProperty(value = "有毒有害气体名称71")
    @TableField("poisonname71")
    private String poisonname71;
 
    @ApiModelProperty(value = "有毒有害气体名称81")
    @TableField("poisonname81")
    private String poisonname81;
 
    @ApiModelProperty(value = "可燃气体名称11")
    @TableField("combustiblename11")
    private String combustiblename11;
 
    @ApiModelProperty(value = "可燃气体名称21")
    @TableField("combustiblename21")
    private String combustiblename21;
 
    @ApiModelProperty(value = "可燃气体名称31")
    @TableField("combustiblename31")
    private String combustiblename31;
 
    @ApiModelProperty(value = "可燃气体名称41")
    @TableField("combustiblename41")
    private String combustiblename41;
 
    @ApiModelProperty(value = "可燃气体名称51")
    @TableField("combustiblename51")
    private String combustiblename51;
 
    @ApiModelProperty(value = "可燃气体名称61")
    @TableField("combustiblename61")
    private String combustiblename61;
 
    @ApiModelProperty(value = "可燃气体名称71")
    @TableField("combustiblename71")
    private String combustiblename71;
 
    @ApiModelProperty(value = "可燃气体名称81")
    @TableField("combustiblename81")
    private String combustiblename81;
 
    @TableField(exist = false)
    private String startDate;
 
    @TableField(exist = false)
    private String endDate;
 
    @ApiModelProperty(value = "有毒有害气体名称12")
    @TableField("poisonname12")
    private String poisonname12;
 
 
    @ApiModelProperty(value = "有毒有害气体名称22")
    @TableField("poisonname22")
    private String poisonname22;
 
 
 
    @ApiModelProperty(value = "有毒有害气体名称32")
    @TableField("poisonname32")
    private String poisonname32;
 
    @ApiModelProperty(value = "有毒有害气体名称42")
    @TableField("poisonname42")
    private String poisonname42;
 
    @ApiModelProperty(value = "有毒有害气体名称52")
    @TableField("poisonname52")
    private String poisonname52;
 
    @ApiModelProperty(value = "有毒有害气体名称62")
    @TableField("poisonname62")
    private String poisonname62;
 
    @ApiModelProperty(value = "有毒有害气体名称72")
    @TableField("poisonname72")
    private String poisonname72;
 
    @ApiModelProperty(value = "有毒有害气体名称82")
    @TableField("poisonname82")
    private String poisonname82;
 
    @ApiModelProperty(value = "可燃气体名称12")
    @TableField("combustiblename12")
    private String combustiblename12;
 
    @ApiModelProperty(value = "可燃气体名称22")
    @TableField("combustiblename22")
    private String combustiblename22;
 
    @ApiModelProperty(value = "可燃气体名称32")
    @TableField("combustiblename32")
    private String combustiblename32;
 
    @ApiModelProperty(value = "可燃气体名称42")
    @TableField("combustiblename42")
    private String combustiblename42;
 
    @ApiModelProperty(value = "可燃气体名称52")
    @TableField("combustiblename52")
    private String combustiblename52;
 
    @ApiModelProperty(value = "可燃气体名称62")
    @TableField("combustiblename62")
    private String combustiblename62;
 
    @ApiModelProperty(value = "可燃气体名称72")
    @TableField("combustiblename72")
    private String combustiblename72;
 
    @ApiModelProperty(value = "可燃气体名称82")
    @TableField("combustiblename82")
    private String combustiblename82;
 
    @ApiModelProperty(value = "创建时间")
    @TableField("createtime")
    private String createtime;
 
    @ApiModelProperty(value = "提交人")
    @TableField("submitter")
    private String submitter;
}