双重预防项目-国泰新华二开定制版
SZH
2022-08-20 f9f0687195e0fe349185437d22c495d74c8d4a20
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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
package com.ruoyi.project.tr.hiddenDangerCheck.domain;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import java.util.Date;
import java.util.List;
 
/**
 * 隐患排查对象 tr_hidden_danger_check
 *
 *
 * @date 2020-05-08
 */
public class HiddenDangerCheck extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 隐患排查ID */
    private Long checkId;
 
 
    /** 核查人ID */
    @Excel(name = "核查人ID")
    private Long examineUserId;
 
    /** 核查人名称 */
    @Excel(name = "核查人名称")
    private String examineUserName;
 
    /** 计划创建人ID */
    @Excel(name = "计划创建人ID")
    private Long planCreateUserId;
 
    /** 计划名称 */
    @Excel(name = "计划名称")
    private String planName;
 
    /** 排查类型id */
    @Excel(name = "排查类型id")
    private Long troubleshootTypeId;
 
    /** 排查类型名称 */
    @Excel(name = "排查类型名称")
    private String troubleshootTypeName;
 
    /** 隐患排查周期数 */
    private Long troubleshootTypeCycleNum;
 
    /** 隐患排查周期类型(1小时,2日,3周,4月,5年) */
    private Long troubleshootTypeCycleType;
 
    /** 组织单位ID */
    @Excel(name = "组织单位ID")
    private Long organizationDeptId;
 
    /** 组织单位名称 */
    @Excel(name = "组织单位名称")
    private String organizationDeptName;
 
    /** 风险单元类型(1设备设施清单 2作业活动清单 3工艺节点清单) */
    @Excel(name = "风险单元类型")
    private String riskType;
 
    /** 风险单元ID */
    @Excel(name = "风险单元ID")
    private Long riskId;
 
    /** 风险单元ID集合(隐患排查计划制定 使用) */
    private String riskIdLabel;
 
    /** 风险单元名称 */
    @Excel(name = "风险单元名称")
    private String riskName;
 
    /** 排查人ID */
    @Excel(name = "排查人ID")
    private Long checkUserId;
 
 
    //排查人ID(隐患排查计划制定生成的数据) 为登陆账号companyId下的userId的(数据统计使用)
    private List<Long> checkUserIdList;
 
    /** 排查人名称 */
    @Excel(name = "排查人名称")
    private String checkUserName;
 
    /** 被检查单位ID */
    @Excel(name = "被检查单位ID")
    private Long beCheckedDeptId;
 
    /** 被检查单位名称 */
    @Excel(name = "被检查单位名称")
    private String beCheckedDeptName;
 
    /** 排查开始日期 */
    @Excel(name = "排查开始日期")
    private String checkBeginTime;
 
    /** 排查结束日期 */
    @Excel(name = "排查结束日期")
    private String checkEndTime;
 
    /** 隐患排查计划制定(0未开始 1已派发) */
    @Excel(name = "隐患排查计划制定", readConverterExp = "0=未开始,1=已派发")
    private String planFormulateStatus;
 
 
 
    /** 排除---------隐患排查计划制定(为某个状态的) */
    private String planFormulateStatusExclude;
 
 
    /** 隐患排查计划执行(0未开始 1进行中 2已执行) */
    @Excel(name = "隐患排查计划执行", readConverterExp = "0=未开始,1=进行中,2=已执行")
    private String planExecuteStatus;
 
    /** 排查状态(0待排查 1已排查) */
    @Excel(name = "排查状态", readConverterExp = "0=待排查,1=已排查")
    private String checkStatus;
 
 
    /** 隐患名称 */
    @Excel(name = "隐患名称")
    private String dangerName;
 
    /** 隐患描述 */
    @Excel(name = "隐患描述")
    private String dangerDescription;
 
    /** 隐患级别(0一般隐患 1重大隐患) */
    @Excel(name = "隐患级别(0一般隐患 1重大隐患)")
    private String dangerLevel;
 
    /** 隐患类别ID */
    @Excel(name = "隐患类别ID")
    private Long troubleTypeId;
 
    /** 隐患类别名称 */
    @Excel(name = "隐患类别名称")
    private String troubleTypeName;
 
 
 
    /** 隐患责任部门ID */
    @Excel(name = "隐患责任部门ID")
    private String dangerDeptId;
 
 
 
    /** 隐患责任部门名称 */
    @Excel(name = "隐患责任部门名称")
    private String dangerDeptName;
 
 
    /** 隐患地点ID */
    @Excel(name = "隐患地点ID")
    private String dangerPlaceId;
 
 
    /** 隐患地点名称 */
    @Excel(name = "隐患地点名称")
    private String dangerPlaceName;
 
    /** 排查时间 */
    @Excel(name = "排查时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date checkTime;
 
 
    /** 隐患排查阶段(1隐患排查计划制定阶段 2隐患排查计划执行阶段 3隐患核查阶段 4隐患整改阶段 5隐患验收阶段) */
    @Excel(name = "隐患排查阶段(1隐患排查计划制定阶段 2隐患排查计划执行阶段 3隐患核查阶段 4隐患整改阶段 5隐患验收阶段)")
    private String stage;
 
 
    /** 定时任务创建人ID(定时任务生成的数据) */
    @Excel(name = "定时任务创建人ID")
    private Long scheduleCreateUserId;
 
    /** 定时任务创建人名称(定时任务生成的数据) */
    @Excel(name = "定时任务创建人名称")
    private String scheduleCreateUserName;
 
 
    /** 排查执行人ID(定时任务生成的数据) */
    @Excel(name = "排查执行人ID", readConverterExp = "定=时任务生成的数据")
    private Long scheduleCheckUserId;
 
 
    //排查执行人ID(定时任务生成的数据) 为登陆账号companyId下的userId的(数据统计使用)
    private List<Long> scheduleCheckUserIdList;
 
 
    /** 排查执行人名称(定时任务生成的数据) */
    @Excel(name = "排查执行人名称", readConverterExp = "定=时任务生成的数据")
    private String scheduleCheckUserName;
 
    /** 排查状态(0待排查 1已排查)(定时任务生成的数据) */
    @Excel(name = "排查状态", readConverterExp = "0=待排查,1=已排查")
    private String scheduleCheckStatus;
 
    /** 任务ID */
    @Excel(name = "任务ID")
    private Long jobId;
 
    /** 任务名称 */
    @Excel(name = "任务名称")
    private String jobName;
 
    /** 任务组名 */
    @Excel(name = "任务组名")
    private String jobGroup;
 
    /** 调用目标字符串 */
    @Excel(name = "调用目标字符串")
    private String invokeTarget;
 
    /** 日志信息 */
    @Excel(name = "日志信息")
    private String jobMessage;
 
    /** 执行状态(0正常 1失败) */
    @Excel(name = "执行状态", readConverterExp = "0=正常,1=失败")
    private String status;
 
    /** 异常信息 */
    @Excel(name = "异常信息")
    private String exceptionInfo;
 
 
 
    //排查类型(1基础清单排查 2选择风险单元清单排查)
    private String checkType;
 
 
    //隐患整改人ID 为登陆账号companyId下的userId的(隐患台账使用)
    private Long ledgerUserId;
 
    //隐患整改人ID 为登陆账号companyId下的userId的(隐患台账使用)
    private List<Long> ledgerUserIdList;
 
    /** 计划创建人姓名 */
    private String planCreateUserName;
 
 
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public List<Long> getCheckUserIdList() {
        return checkUserIdList;
    }
 
    public void setCheckUserIdList(List<Long> checkUserIdList) {
        this.checkUserIdList = checkUserIdList;
    }
 
    public List<Long> getScheduleCheckUserIdList() {
        return scheduleCheckUserIdList;
    }
 
    public void setScheduleCheckUserIdList(List<Long> scheduleCheckUserIdList) {
        this.scheduleCheckUserIdList = scheduleCheckUserIdList;
    }
 
    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 List<Long> getLedgerUserIdList() {
        return ledgerUserIdList;
    }
 
    public void setLedgerUserIdList(List<Long> ledgerUserIdList) {
        this.ledgerUserIdList = ledgerUserIdList;
    }
 
 
    public String getPlanCreateUserName() {
        return planCreateUserName;
    }
 
    public void setPlanCreateUserName(String planCreateUserName) {
        this.planCreateUserName = planCreateUserName;
    }
 
    public Long getLedgerUserId() {
        return ledgerUserId;
    }
 
    public void setLedgerUserId(Long ledgerUserId) {
        this.ledgerUserId = ledgerUserId;
    }
 
    public void setCheckId(Long checkId)
    {
        this.checkId = checkId;
    }
 
    public Long getCheckId() 
    {
        return checkId;
    }
 
 
    public String getRiskIdLabel() {
        return riskIdLabel;
    }
 
    public void setRiskIdLabel(String riskIdLabel) {
        this.riskIdLabel = riskIdLabel;
    }
 
    public String getCheckType() {
        return checkType;
    }
 
    public void setCheckType(String checkType) {
        this.checkType = checkType;
    }
 
    public Long getScheduleCreateUserId() {
        return scheduleCreateUserId;
    }
 
    public void setScheduleCreateUserId(Long scheduleCreateUserId) {
        this.scheduleCreateUserId = scheduleCreateUserId;
    }
 
    public String getScheduleCreateUserName() {
        return scheduleCreateUserName;
    }
 
    public void setScheduleCreateUserName(String scheduleCreateUserName) {
        this.scheduleCreateUserName = scheduleCreateUserName;
    }
 
    public Long getTroubleshootTypeCycleNum() {
        return troubleshootTypeCycleNum;
    }
 
    public void setTroubleshootTypeCycleNum(Long troubleshootTypeCycleNum) {
        this.troubleshootTypeCycleNum = troubleshootTypeCycleNum;
    }
 
    public Long getTroubleshootTypeCycleType() {
        return troubleshootTypeCycleType;
    }
 
    public void setTroubleshootTypeCycleType(Long troubleshootTypeCycleType) {
        this.troubleshootTypeCycleType = troubleshootTypeCycleType;
    }
 
    public Long getScheduleCheckUserId() {
        return scheduleCheckUserId;
    }
 
    public void setScheduleCheckUserId(Long scheduleCheckUserId) {
        this.scheduleCheckUserId = scheduleCheckUserId;
    }
 
    public String getScheduleCheckUserName() {
        return scheduleCheckUserName;
    }
 
    public void setScheduleCheckUserName(String scheduleCheckUserName) {
        this.scheduleCheckUserName = scheduleCheckUserName;
    }
 
    public String getScheduleCheckStatus() {
        return scheduleCheckStatus;
    }
 
    public void setScheduleCheckStatus(String scheduleCheckStatus) {
        this.scheduleCheckStatus = scheduleCheckStatus;
    }
 
    public Long getJobId() {
        return jobId;
    }
 
    public void setJobId(Long jobId) {
        this.jobId = jobId;
    }
 
    public String getJobName() {
        return jobName;
    }
 
    public void setJobName(String jobName) {
        this.jobName = jobName;
    }
 
    public String getJobGroup() {
        return jobGroup;
    }
 
    public void setJobGroup(String jobGroup) {
        this.jobGroup = jobGroup;
    }
 
    public String getInvokeTarget() {
        return invokeTarget;
    }
 
    public void setInvokeTarget(String invokeTarget) {
        this.invokeTarget = invokeTarget;
    }
 
    public String getJobMessage() {
        return jobMessage;
    }
 
    public void setJobMessage(String jobMessage) {
        this.jobMessage = jobMessage;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getExceptionInfo() {
        return exceptionInfo;
    }
 
    public void setExceptionInfo(String exceptionInfo) {
        this.exceptionInfo = exceptionInfo;
    }
 
    public String getRiskType() {
        return riskType;
    }
 
    public void setRiskType(String riskType) {
        this.riskType = riskType;
    }
 
    public String getDangerDeptId() {
        return dangerDeptId;
    }
 
    public void setDangerDeptId(String dangerDeptId) {
        this.dangerDeptId = dangerDeptId;
    }
 
    public String getDangerDeptName() {
        return dangerDeptName;
    }
 
    public void setDangerDeptName(String dangerDeptName) {
        this.dangerDeptName = dangerDeptName;
    }
 
    public String getStage() {
        return stage;
    }
 
    public void setStage(String stage) {
        this.stage = stage;
    }
 
    public Long getPlanCreateUserId() {
        return planCreateUserId;
    }
 
    public void setPlanCreateUserId(Long planCreateUserId) {
        this.planCreateUserId = planCreateUserId;
    }
 
    public void setPlanName(String planName)
    {
        this.planName = planName;
    }
 
    public String getPlanName() 
    {
        return planName;
    }
    public void setTroubleshootTypeId(Long troubleshootTypeId) 
    {
        this.troubleshootTypeId = troubleshootTypeId;
    }
 
    public Long getTroubleshootTypeId() 
    {
        return troubleshootTypeId;
    }
    public void setTroubleshootTypeName(String troubleshootTypeName) 
    {
        this.troubleshootTypeName = troubleshootTypeName;
    }
 
    public String getTroubleshootTypeName() 
    {
        return troubleshootTypeName;
    }
    public void setOrganizationDeptId(Long organizationDeptId) 
    {
        this.organizationDeptId = organizationDeptId;
    }
 
    public Long getOrganizationDeptId() 
    {
        return organizationDeptId;
    }
    public void setOrganizationDeptName(String organizationDeptName) 
    {
        this.organizationDeptName = organizationDeptName;
    }
 
    public String getOrganizationDeptName() 
    {
        return organizationDeptName;
    }
    public void setRiskId(Long riskId) 
    {
        this.riskId = riskId;
    }
 
    public Long getRiskId() 
    {
        return riskId;
    }
    public void setRiskName(String riskName) 
    {
        this.riskName = riskName;
    }
 
    public String getRiskName() 
    {
        return riskName;
    }
    public void setCheckUserId(Long checkUserId) 
    {
        this.checkUserId = checkUserId;
    }
 
    public Long getCheckUserId() 
    {
        return checkUserId;
    }
    public void setCheckUserName(String checkUserName) 
    {
        this.checkUserName = checkUserName;
    }
 
    public String getCheckUserName() 
    {
        return checkUserName;
    }
    public void setBeCheckedDeptId(Long beCheckedDeptId) 
    {
        this.beCheckedDeptId = beCheckedDeptId;
    }
 
    public Long getBeCheckedDeptId() 
    {
        return beCheckedDeptId;
    }
    public void setBeCheckedDeptName(String beCheckedDeptName) 
    {
        this.beCheckedDeptName = beCheckedDeptName;
    }
 
    public String getBeCheckedDeptName() 
    {
        return beCheckedDeptName;
    }
    public void setCheckBeginTime(String checkBeginTime) 
    {
        this.checkBeginTime = checkBeginTime;
    }
 
    public String getCheckBeginTime() 
    {
        return checkBeginTime;
    }
    public void setCheckEndTime(String checkEndTime) 
    {
        this.checkEndTime = checkEndTime;
    }
 
    public String getCheckEndTime() 
    {
        return checkEndTime;
    }
    public void setPlanFormulateStatus(String planFormulateStatus) 
    {
        this.planFormulateStatus = planFormulateStatus;
    }
 
    public String getPlanFormulateStatus() 
    {
        return planFormulateStatus;
    }
    public void setPlanExecuteStatus(String planExecuteStatus) 
    {
        this.planExecuteStatus = planExecuteStatus;
    }
 
    public String getPlanExecuteStatus() 
    {
        return planExecuteStatus;
    }
    public void setCheckStatus(String checkStatus) 
    {
        this.checkStatus = checkStatus;
    }
 
    public String getCheckStatus()
    {
        return checkStatus;
    }
    public void setDangerName(String dangerName)
    {
        this.dangerName = dangerName;
    }
 
    public String getDangerName() 
    {
        return dangerName;
    }
    public void setDangerDescription(String dangerDescription) 
    {
        this.dangerDescription = dangerDescription;
    }
 
    public String getDangerDescription() 
    {
        return dangerDescription;
    }
    public void setDangerLevel(String dangerLevel) 
    {
        this.dangerLevel = dangerLevel;
    }
 
    public String getDangerLevel() 
    {
        return dangerLevel;
    }
    public void setTroubleTypeId(Long troubleTypeId) 
    {
        this.troubleTypeId = troubleTypeId;
    }
 
    public Long getTroubleTypeId() 
    {
        return troubleTypeId;
    }
    public void setTroubleTypeName(String troubleTypeName) 
    {
        this.troubleTypeName = troubleTypeName;
    }
 
    public String getTroubleTypeName() 
    {
        return troubleTypeName;
    }
 
    public String getDangerPlaceId() {
        return dangerPlaceId;
    }
 
    public void setDangerPlaceId(String dangerPlaceId) {
        this.dangerPlaceId = dangerPlaceId;
    }
 
    public String getDangerPlaceName() {
        return dangerPlaceName;
    }
 
    public void setDangerPlaceName(String dangerPlaceName) {
        this.dangerPlaceName = dangerPlaceName;
    }
 
    public void setCheckTime(Date checkTime)
    {
        this.checkTime = checkTime;
    }
 
    public Date getCheckTime() 
    {
        return checkTime;
    }
 
    public String getPlanFormulateStatusExclude() {
        return planFormulateStatusExclude;
    }
 
    public void setPlanFormulateStatusExclude(String planFormulateStatusExclude) {
        this.planFormulateStatusExclude = planFormulateStatusExclude;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("checkId", getCheckId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .append("planName", getPlanName())
            .append("troubleshootTypeId", getTroubleshootTypeId())
            .append("troubleshootTypeName", getTroubleshootTypeName())
            .append("organizationDeptId", getOrganizationDeptId())
            .append("organizationDeptName", getOrganizationDeptName())
            .append("riskId", getRiskId())
            .append("riskName", getRiskName())
            .append("checkUserId", getCheckUserId())
            .append("checkUserName", getCheckUserName())
            .append("beCheckedDeptId", getBeCheckedDeptId())
            .append("beCheckedDeptName", getBeCheckedDeptName())
            .append("checkBeginTime", getCheckBeginTime())
            .append("checkEndTime", getCheckEndTime())
            .append("planFormulateStatus", getPlanFormulateStatus())
            .append("planExecuteStatus", getPlanExecuteStatus())
            .append("checkStatus", getCheckStatus())
            .append("dangerName", getDangerName())
            .append("dangerDescription", getDangerDescription())
            .append("dangerLevel", getDangerLevel())
            .append("troubleTypeId", getTroubleTypeId())
            .append("troubleTypeName", getTroubleTypeName())
            .append("checkTime", getCheckTime())
            .toString();
    }
}