双重预防项目-国泰新华二开定制版
heheng
2025-06-24 e98eeaaa5766511fdb8e6d5e412eb1c59d1f07ce
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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
package com.ruoyi.doublePrevention.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
 
import java.util.Date;
import java.util.List;
 
/**
 * @description 只用于接收对象  新增不用这个实体类 用源系统的实体类
 */
@TableName("tr_hidden_danger_check_point")
public class TrHiddenDangerCheckPoint {
 
    /** 主键ID */
    private Long id;
 
    /** 隐患排查检查点信息ID */
    private Long checkPointId;
 
    /** 隐患排查ID */
    private Long checkId;
 
    /** 创建人 */
    private String createBy;
 
    /** 创建时间 */
    private Date createTime;
 
    /** 更新人 */
    private String updateBy;
 
    /** 更新时间 */
    private Date updateTime;
 
    /** 备注 */
    private String remark;
 
    /** 是否为隐患 */
    private String whetherDanger;
 
    /** 隐患名称 */
    private String dangerName;
 
    /** 隐患描述 */
    private String dangerDescription;
 
    /** 隐患级别(0一般隐患 1重大隐患) */
    private String dangerLevel;
 
    /** 隐患类别ID */
    private Long troubleTypeId;
 
    /** 隐患类别名称 */
    private String troubleTypeName;
 
    /** 排查时间 */
    private Date checkTime;
 
    /** 隐患整改前照片 */
    private String preRectifyPhoto;
 
    /** 登记人ID */
    private Long registerUserId;
 
    /** 登记人名称 */
    private String registerUserName;
 
    /** 登记创建时间 */
    private Date registerCreateTime;
 
 
    /** 登记提交时间 */
   private Date registerSubmitTime;
 
    /** 判定人ID */
    private Long judgeUserId;
 
    /** 判定人名称 */
    private String judgeUserName;
 
 
    /** 判定创建时间 */
    private Date judgeCreateTime;
 
 
    /** 隐患上报创建人ID */
    private Long judgeCreateUserId;
 
    /** 隐患来源(1隐患计划排查生成 2隐患上报生成) */
    private String dangerSources;
 
    /** 上报判定结果(0未判定 1不是隐患 2是隐患) */
    private String reportStatus;
 
    /** 核查人ID */
    private Long examineUserId;
 
    /** 核查人名称 */
    private String examineUserName;
 
    /** 核查状态(0待核查 1已核查) */
    private String examineStatus;
 
    /** 隐患核查意见 */
    private String examineOpinion;
 
    /** 隐患核查结果(0一般隐患 1重大隐患) */
    private String examineResult;
 
    /** 核查创建时间 */
    private Date examineCreateTime;
 
    /** 治理措施 */
    private String treatMeasure;
 
    /** 整改人ID */
    private Long rectifyUserId;
 
    /** 整改人名称 */
    private String rectifyUserName;
 
    /** 隐患整改责任部门ID */
    private Long rectifyDeptId;
 
    /** 隐患整改责任部门名称 */
    private String rectifyDeptName;
 
    /** 完成期限 */
    private Date rectifyDeadlineTime;
 
    /** 整改类型(1立即整改 2限期整改 3停产停业整改) */
    private String rectifyType;
 
    /** 整改附件地址 */
    private String rectifyAttachment;
 
    /** 整改措施 */
    private String rectifyMeasure;
 
    /** 整改情况 */
    private String rectifyCondition;
 
    /** 整改资金 */
    private String rectifyFund;
 
    /** 整改完成时间 */
    private Date rectifyCompleteTime;
 
    /** 整改状态(0未整改 1已整改) */
    private String rectifyStatus;
 
    /** 整改创建时间 */
    private Date rectifyCreateTime;
 
    /** 验收负责人ID */
    private Long acceptUserId;
 
    /** 验收负责人姓名 */
    private String acceptUserName;
 
    /** 隐患整改后照片 */
    private String postRectifyPhoto;
 
    /** 验收结果 */
    private String acceptResult;
 
    /** 验收意见 */
    private String acceptOpinion;
 
    /** 验收文件 */
    private String acceptFile;
 
    /** 验收状态(0未验收 1验收通过) */
    private String acceptStatus;
 
 
    /** 验收创建时间 */
    private Date acceptCreateTime;
 
    /** 隐患排查阶段(1隐患排查计划制定阶段 2隐患排查计划执行阶段 3隐患核查阶段 4隐患整改阶段 5隐患验收阶段) */
    private String stage;
 
    /** 排查状态(0待排查 1已排查)(定时任务生成的数据) */
    private String scheduleCheckStatus;
 
    //排查类型(1基础清单排查 2选择风险单元清单排查)
    private String checkType;
 
    /** 公司id */
    private Long companyId;
 
    public Long getId() {
     return id;
    }
 
    public void setId(Long id) {
     this.id = id;
    }
 
    public Long getCheckPointId() {
     return checkPointId;
    }
 
    public void setCheckPointId(Long checkPointId) {
     this.checkPointId = checkPointId;
    }
 
    public Long getCheckId() {
     return checkId;
    }
 
    public void setCheckId(Long checkId) {
     this.checkId = checkId;
    }
 
    public String getCreateBy() {
     return createBy;
    }
 
    public void setCreateBy(String createBy) {
     this.createBy = createBy;
    }
 
    public Date getCreateTime() {
     return createTime;
    }
 
    public void setCreateTime(Date createTime) {
     this.createTime = createTime;
    }
 
    public String getUpdateBy() {
     return updateBy;
    }
 
    public void setUpdateBy(String updateBy) {
     this.updateBy = updateBy;
    }
 
    public Date getUpdateTime() {
     return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
     this.updateTime = updateTime;
    }
 
    public String getRemark() {
     return remark;
    }
 
    public void setRemark(String remark) {
     this.remark = remark;
    }
 
    public String getWhetherDanger() {
     return whetherDanger;
    }
 
    public void setWhetherDanger(String whetherDanger) {
     this.whetherDanger = whetherDanger;
    }
 
    public String getDangerName() {
     return dangerName;
    }
 
    public void setDangerName(String dangerName) {
     this.dangerName = dangerName;
    }
 
    public String getDangerDescription() {
     return dangerDescription;
    }
 
    public void setDangerDescription(String dangerDescription) {
     this.dangerDescription = dangerDescription;
    }
 
    public String getDangerLevel() {
     return dangerLevel;
    }
 
    public void setDangerLevel(String dangerLevel) {
     this.dangerLevel = dangerLevel;
    }
 
    public Long getTroubleTypeId() {
     return troubleTypeId;
    }
 
    public void setTroubleTypeId(Long troubleTypeId) {
     this.troubleTypeId = troubleTypeId;
    }
 
    public String getTroubleTypeName() {
     return troubleTypeName;
    }
 
    public void setTroubleTypeName(String troubleTypeName) {
     this.troubleTypeName = troubleTypeName;
    }
 
    public Date getCheckTime() {
     return checkTime;
    }
 
    public void setCheckTime(Date checkTime) {
     this.checkTime = checkTime;
    }
 
    public String getPreRectifyPhoto() {
     return preRectifyPhoto;
    }
 
    public void setPreRectifyPhoto(String preRectifyPhoto) {
     this.preRectifyPhoto = preRectifyPhoto;
    }
 
    public Long getRegisterUserId() {
     return registerUserId;
    }
 
    public void setRegisterUserId(Long registerUserId) {
     this.registerUserId = registerUserId;
    }
 
    public String getRegisterUserName() {
     return registerUserName;
    }
 
    public void setRegisterUserName(String registerUserName) {
     this.registerUserName = registerUserName;
    }
 
    public Date getRegisterCreateTime() {
     return registerCreateTime;
    }
 
    public void setRegisterCreateTime(Date registerCreateTime) {
     this.registerCreateTime = registerCreateTime;
    }
 
    public Date getRegisterSubmitTime() {
     return registerSubmitTime;
    }
 
    public void setRegisterSubmitTime(Date registerSubmitTime) {
     this.registerSubmitTime = registerSubmitTime;
    }
 
    public Long getJudgeUserId() {
     return judgeUserId;
    }
 
    public void setJudgeUserId(Long judgeUserId) {
     this.judgeUserId = judgeUserId;
    }
 
    public String getJudgeUserName() {
     return judgeUserName;
    }
 
    public void setJudgeUserName(String judgeUserName) {
     this.judgeUserName = judgeUserName;
    }
 
    public Date getJudgeCreateTime() {
     return judgeCreateTime;
    }
 
    public void setJudgeCreateTime(Date judgeCreateTime) {
     this.judgeCreateTime = judgeCreateTime;
    }
 
    public Long getJudgeCreateUserId() {
     return judgeCreateUserId;
    }
 
    public void setJudgeCreateUserId(Long judgeCreateUserId) {
     this.judgeCreateUserId = judgeCreateUserId;
    }
 
    public String getDangerSources() {
     return dangerSources;
    }
 
    public void setDangerSources(String dangerSources) {
     this.dangerSources = dangerSources;
    }
 
    public String getReportStatus() {
     return reportStatus;
    }
 
    public void setReportStatus(String reportStatus) {
     this.reportStatus = reportStatus;
    }
 
    public Long getExamineUserId() {
     return examineUserId;
    }
 
    public void setExamineUserId(Long examineUserId) {
     this.examineUserId = examineUserId;
    }
 
    public String getExamineUserName() {
     return examineUserName;
    }
 
    public void setExamineUserName(String examineUserName) {
     this.examineUserName = examineUserName;
    }
 
    public String getExamineStatus() {
     return examineStatus;
    }
 
    public void setExamineStatus(String examineStatus) {
     this.examineStatus = examineStatus;
    }
 
    public String getExamineOpinion() {
     return examineOpinion;
    }
 
    public void setExamineOpinion(String examineOpinion) {
     this.examineOpinion = examineOpinion;
    }
 
    public String getExamineResult() {
     return examineResult;
    }
 
    public void setExamineResult(String examineResult) {
     this.examineResult = examineResult;
    }
 
    public Date getExamineCreateTime() {
     return examineCreateTime;
    }
 
    public void setExamineCreateTime(Date examineCreateTime) {
     this.examineCreateTime = examineCreateTime;
    }
 
    public String getTreatMeasure() {
     return treatMeasure;
    }
 
    public void setTreatMeasure(String treatMeasure) {
     this.treatMeasure = treatMeasure;
    }
 
    public Long getRectifyUserId() {
     return rectifyUserId;
    }
 
    public void setRectifyUserId(Long rectifyUserId) {
     this.rectifyUserId = rectifyUserId;
    }
 
    public String getRectifyUserName() {
     return rectifyUserName;
    }
 
    public void setRectifyUserName(String rectifyUserName) {
     this.rectifyUserName = rectifyUserName;
    }
 
    public Long getRectifyDeptId() {
     return rectifyDeptId;
    }
 
    public void setRectifyDeptId(Long rectifyDeptId) {
     this.rectifyDeptId = rectifyDeptId;
    }
 
    public String getRectifyDeptName() {
     return rectifyDeptName;
    }
 
    public void setRectifyDeptName(String rectifyDeptName) {
     this.rectifyDeptName = rectifyDeptName;
    }
 
    public Date getRectifyDeadlineTime() {
     return rectifyDeadlineTime;
    }
 
    public void setRectifyDeadlineTime(Date rectifyDeadlineTime) {
     this.rectifyDeadlineTime = rectifyDeadlineTime;
    }
 
    public String getRectifyType() {
     return rectifyType;
    }
 
    public void setRectifyType(String rectifyType) {
     this.rectifyType = rectifyType;
    }
 
    public String getRectifyAttachment() {
     return rectifyAttachment;
    }
 
    public void setRectifyAttachment(String rectifyAttachment) {
     this.rectifyAttachment = rectifyAttachment;
    }
 
    public String getRectifyMeasure() {
     return rectifyMeasure;
    }
 
    public void setRectifyMeasure(String rectifyMeasure) {
     this.rectifyMeasure = rectifyMeasure;
    }
 
    public String getRectifyCondition() {
     return rectifyCondition;
    }
 
    public void setRectifyCondition(String rectifyCondition) {
     this.rectifyCondition = rectifyCondition;
    }
 
    public String getRectifyFund() {
     return rectifyFund;
    }
 
    public void setRectifyFund(String rectifyFund) {
     this.rectifyFund = rectifyFund;
    }
 
    public Date getRectifyCompleteTime() {
     return rectifyCompleteTime;
    }
 
    public void setRectifyCompleteTime(Date rectifyCompleteTime) {
     this.rectifyCompleteTime = rectifyCompleteTime;
    }
 
    public String getRectifyStatus() {
     return rectifyStatus;
    }
 
    public void setRectifyStatus(String rectifyStatus) {
     this.rectifyStatus = rectifyStatus;
    }
 
    public Date getRectifyCreateTime() {
     return rectifyCreateTime;
    }
 
    public void setRectifyCreateTime(Date rectifyCreateTime) {
     this.rectifyCreateTime = rectifyCreateTime;
    }
 
    public Long getAcceptUserId() {
     return acceptUserId;
    }
 
    public void setAcceptUserId(Long acceptUserId) {
     this.acceptUserId = acceptUserId;
    }
 
    public String getAcceptUserName() {
     return acceptUserName;
    }
 
    public void setAcceptUserName(String acceptUserName) {
     this.acceptUserName = acceptUserName;
    }
 
    public String getPostRectifyPhoto() {
     return postRectifyPhoto;
    }
 
    public void setPostRectifyPhoto(String postRectifyPhoto) {
     this.postRectifyPhoto = postRectifyPhoto;
    }
 
    public String getAcceptResult() {
     return acceptResult;
    }
 
    public void setAcceptResult(String acceptResult) {
     this.acceptResult = acceptResult;
    }
 
    public String getAcceptOpinion() {
     return acceptOpinion;
    }
 
    public void setAcceptOpinion(String acceptOpinion) {
     this.acceptOpinion = acceptOpinion;
    }
 
    public String getAcceptFile() {
     return acceptFile;
    }
 
    public void setAcceptFile(String acceptFile) {
     this.acceptFile = acceptFile;
    }
 
    public String getAcceptStatus() {
     return acceptStatus;
    }
 
    public void setAcceptStatus(String acceptStatus) {
     this.acceptStatus = acceptStatus;
    }
 
    public Date getAcceptCreateTime() {
     return acceptCreateTime;
    }
 
    public void setAcceptCreateTime(Date acceptCreateTime) {
     this.acceptCreateTime = acceptCreateTime;
    }
 
    public String getStage() {
     return stage;
    }
 
    public void setStage(String stage) {
     this.stage = stage;
    }
 
    public String getScheduleCheckStatus() {
     return scheduleCheckStatus;
    }
 
    public void setScheduleCheckStatus(String scheduleCheckStatus) {
     this.scheduleCheckStatus = scheduleCheckStatus;
    }
 
    public String getCheckType() {
     return checkType;
    }
 
    public void setCheckType(String checkType) {
     this.checkType = checkType;
    }
 
    public Long getCompanyId() {
     return companyId;
    }
 
    public void setCompanyId(Long companyId) {
     this.companyId = companyId;
    }
}