双重预防项目-国泰新华二开定制版
16639036659
2023-11-30 54843d459f3fe623e6cf2956f192141e9a99b878
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
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
package com.ruoyi.project.tr.hiddenDangerCheckPoint.domain;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.doublePrevention.entity.PreventRiskDangerConfirmLog;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import kotlin.jvm.Transient;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.Date;
import java.util.List;
 
/**
 * 隐患排查检查点信息表 tr_hidden_danger_check_point
 * 
 */
@Data
public class HiddenDangerCheckPoint extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键ID */
    private Long id;
 
    /** 隐患排查检查点信息ID */
    private Long checkPointId;
 
    /** 隐患排查ID */
    private Long checkId;
 
 
    /** 计划创建人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;
 
    /** 排查人名称 */
    @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 whetherDanger;
 
    /** 隐患名称 */
    @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;
 
    /** 隐患整改前照片 */
    @Excel(name = "隐患整改前照片")
    private String preRectifyPhoto;
 
    /** 登记人ID */
    @Excel(name = "登记人ID")
    private Long registerUserId;
 
    /** 登记人名称 */
    @Excel(name = "登记人名称")
    private String registerUserName;
 
 
    /** 登记创建时间 */
    @Excel(name = "登记创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date registerCreateTime;
 
 
    /** 登记提交时间 */
    @Excel(name = "登记提交时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date registerSubmitTime;
 
    /** 判定人ID */
    private Long judgeUserId;
 
    /** 上报判定结果为1或2 (上报判定结果(0未判定 1不是隐患 2是隐患))*/
    private String reportStatusByHasHandle;
 
 
    /** 上报判定结果IS NOT NULL*/
    private String reportStatusIsNotNull;
 
    /** 判定人名称 */
    @Excel(name = "判定人名称")
    private String judgeUserName;
 
 
    /** 判定创建时间 */
    @Excel(name = "判定创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date judgeCreateTime;
 
 
    /** 隐患上报创建人ID */
    @Excel(name = "隐患上报创建人ID")
    private Long judgeCreateUserId;
 
 
    /**  隐患上报列表查询---------------查询隐患上报创建人(judgeCreateUserId) 和   判定人(judgeUserId)为本登录帐号userId的 */
    private Long judgeQueryByUserId;
 
    //隐患上报列表查询---------------查询隐患上报创建人(judgeCreateUserId) 和   判定人(judgeUserId) 为登陆账号companyId下的userId的(数据统计使用)
    private List<Long> judgeQueryByUserIdList;
 
 
 
    /** 隐患来源(1隐患计划排查生成 2隐患上报生成) */
    @Excel(name = "隐患来源(1隐患计划排查生成 2隐患上报生成)")
    private String dangerSources;
 
    /** 上报判定结果(0未判定 1不是隐患 2是隐患) */
    @Excel(name = "上报判定结果(0未判定 1不是隐患 2是隐患)")
    private String reportStatus;
 
    /** 核查人ID */
    @Excel(name = "核查人ID")
    private Long examineUserId;
 
    /** 核查人名称 */
    @Excel(name = "核查人名称")
    private String examineUserName;
 
    /** 核查状态(0待核查 1已核查) */
    @Excel(name = "核查状态", readConverterExp = "0=待核查,1=已核查")
    private String examineStatus;
 
    /** 隐患核查意见 */
    @Excel(name = "隐患核查意见")
    private String examineOpinion;
 
    /** 隐患核查结果(0一般隐患 1重大隐患) */
    @Excel(name = "隐患核查结果(0一般隐患 1重大隐患)")
    private String examineResult;
 
    /** 核查创建时间 */
    @Excel(name = "核查创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date examineCreateTime;
 
    /** 治理措施 */
    @Excel(name = "治理措施")
    private String treatMeasure;
 
    /** 整改人ID */
    @Excel(name = "整改人ID")
    private Long rectifyUserId;
 
    /** 整改人名称 */
    @Excel(name = "整改人名称")
    private String rectifyUserName;
 
    /** 隐患整改责任部门ID */
    @Excel(name = "隐患整改责任部门ID")
    private Long rectifyDeptId;
 
    /** 隐患整改责任部门名称 */
    @Excel(name = "隐患整改责任部门名称")
    private String rectifyDeptName;
 
    /** 完成期限 */
    @Excel(name = "完成期限", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date rectifyDeadlineTime;
 
    /** 整改类型(1立即整改 2限期整改 3停产停业整改) */
    @Excel(name = "整改类型(1立即整改 2限期整改 3停产停业整改)")
    private String rectifyType;
 
    /** 整改附件地址 */
    @Excel(name = "整改附件地址")
    private String rectifyAttachment;
 
    /** 整改措施 */
    @Excel(name = "整改措施")
    private String rectifyMeasure;
 
    /** 整改情况 */
    @Excel(name = "整改情况")
    private String rectifyCondition;
 
    /** 整改资金 */
    @Excel(name = "整改资金")
    private String rectifyFund;
 
    /** 整改完成时间 */
    @Excel(name = "整改完成时间", width = 30, dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date rectifyCompleteTime;
 
    /** 整改状态(0未整改 1已整改) */
    @Excel(name = "整改状态(0未整改 1已整改)")
    private String rectifyStatus;
 
    /** 整改创建时间 */
    @Excel(name = "整改创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date rectifyCreateTime;
 
    /** 验收负责人ID */
    @Excel(name = "验收负责人ID")
    private Long acceptUserId;
 
    /** 验收负责人姓名 */
    @Excel(name = "验收负责人姓名")
    private String acceptUserName;
 
    /** 隐患整改后照片 */
    @Excel(name = "隐患整改后照片")
    private String postRectifyPhoto;
 
    /** 验收结果 */
    @Excel(name = "验收结果")
    private String acceptResult;
 
    /** 验收意见 */
    @Excel(name = "验收意见")
    private String acceptOpinion;
 
    /** 验收文件 */
    @Excel(name = "验收文件")
    private String acceptFile;
 
    /** 验收状态(0未验收 1验收通过) */
    @Excel(name = "验收状态")
    private String acceptStatus;
 
 
    /** 验收创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @Excel(name = "验收创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date acceptCreateTime;
 
    /** 隐患排查阶段(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;
 
    /** 排查执行人名称(定时任务生成的数据) */
    @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;
 
    //隐患整改人ID  不为空
    private String rectifyUserIdIsNotNull;
 
    //公司列表
    List<Long> companyIdList;
 
    //隐患核查人ID 为登陆账号companyId下的userId的(数据统计使用)
    private List<Long> examineUserIdList;
 
    /** 计划创建人姓名 */
    private String planCreateUserName;
 
 
    //判断记录是否为 超期改(隐患台账使用)
    private String overdueRectify;
 
 
    private Long companyId;
 
    private String checkPerson;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date findTime;
 
 
 
 
 
 
    /**
     * hazard_code 风先分析对象编码(风险分析单元编码)
     * */
    @Transient
    private String hazardCode;
    /**
     *  隐患来源
     * 1-日常排查;2-综合性排查;3-专业性排查;4-季节性排查;5-重点时段及节假日前排查
     * 6-事故类比排查;7-复产复工前排查;8-外聘专家诊断式排查;9-管控措施实效;10-其他;11-政府执法检查
     * */
    @Transient
    private Byte dangerSrc;
//    /**
//     * 隐患描述
//     * */
//    private String dangerDesc;
    /**
     * 隐患产生的原因
     * */
    @Transient
    private String dangerReason;
    /**
     * 隐患类型
     *  1-安全;2-工艺;3-电气;4-仪表
     *  5-消防;6-总图;7-设备;8其他
     * */
    @Transient
    private Byte hazardDangerType;
//    /**
//     * 隐患状态
//     *  0-整改中
//     *  1-待验收
//     *  2-延期整改
//     *  3-超期未整改
//     *  9-已验收
//     */
//    private Byte dangerState;
    /**
     * 隐患造成的结果:1-无;2-轻伤;3-重伤;4-死亡
     */
    @Transient
    private Byte dangerResult;
 
 
    @Transient
    private Long mobileCode;
 
    @Transient
    private Integer tag;
 
    @Transient
    private String checkDesc;
 
    @Transient
    private List<PreventRiskDangerConfirmLog> confirmLogList;
 
 
    public Long getMobileCode() {
        return mobileCode;
    }
 
    public void setMobileCode(Long mobileCode) {
        this.mobileCode = mobileCode;
    }
 
    public Byte getDangerResult() {
        return dangerResult;
    }
 
    public void setDangerResult(Byte dangerResult) {
        this.dangerResult = dangerResult;
    }
 
    public String getHazardCode() {
        return hazardCode;
    }
 
    public void setHazardCode(String hazardCode) {
        this.hazardCode = hazardCode;
    }
 
    public Byte getDangerSrc() {
        return dangerSrc;
    }
 
    public void setDangerSrc(Byte dangerSrc) {
        this.dangerSrc = dangerSrc;
    }
 
    public String getDangerReason() {
        return dangerReason;
    }
 
    public void setDangerReason(String dangerReason) {
        this.dangerReason = dangerReason;
    }
 
    public Byte getHazardDangerType() {
        return hazardDangerType;
    }
 
    public void setHazardDangerType(Byte hazardDangerType) {
        this.hazardDangerType = hazardDangerType;
    }
 
    public List<Long> getCompanyIdList() {
        return companyIdList;
    }
 
    public void setCompanyIdList(List<Long> companyIdList) {
        this.companyIdList = companyIdList;
    }
 
    public String getRectifyUserIdIsNotNull() {
        return rectifyUserIdIsNotNull;
    }
 
    public void setRectifyUserIdIsNotNull(String rectifyUserIdIsNotNull) {
        this.rectifyUserIdIsNotNull = rectifyUserIdIsNotNull;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public String getOverdueRectify() {
        return overdueRectify;
    }
 
    public void setOverdueRectify(String overdueRectify) {
        this.overdueRectify = overdueRectify;
    }
 
    public List<Long> getJudgeQueryByUserIdList() {
        return judgeQueryByUserIdList;
    }
 
    public void setJudgeQueryByUserIdList(List<Long> judgeQueryByUserIdList) {
        this.judgeQueryByUserIdList = judgeQueryByUserIdList;
    }
 
    public List<Long> getExamineUserIdList() {
        return examineUserIdList;
    }
 
    public void setExamineUserIdList(List<Long> examineUserIdList) {
        this.examineUserIdList = examineUserIdList;
    }
 
    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 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 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 getReportStatusIsNotNull() {
        return reportStatusIsNotNull;
    }
 
    public void setReportStatusIsNotNull(String reportStatusIsNotNull) {
        this.reportStatusIsNotNull = reportStatusIsNotNull;
    }
 
    public String getReportStatusByHasHandle() {
        return reportStatusByHasHandle;
    }
 
    public void setReportStatusByHasHandle(String reportStatusByHasHandle) {
        this.reportStatusByHasHandle = reportStatusByHasHandle;
    }
 
    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 getRegisterSubmitTime() {
        return registerSubmitTime;
    }
 
    public void setRegisterSubmitTime(Date registerSubmitTime) {
        this.registerSubmitTime = registerSubmitTime;
    }
 
    public Long getJudgeQueryByUserId() {
        return judgeQueryByUserId;
    }
 
    public void setJudgeQueryByUserId(Long judgeQueryByUserId) {
        this.judgeQueryByUserId = judgeQueryByUserId;
    }
 
    public Long getJudgeCreateUserId() {
        return judgeCreateUserId;
    }
 
    public void setJudgeCreateUserId(Long judgeCreateUserId) {
        this.judgeCreateUserId = judgeCreateUserId;
    }
 
    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 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 setWhetherDanger(String whetherDanger) 
    {
        this.whetherDanger = whetherDanger;
    }
 
    public String getWhetherDanger() 
    {
        return whetherDanger;
    }
    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 void setCheckTime(Date checkTime)
    {
        this.checkTime = checkTime;
    }
 
    public Date getCheckTime() 
    {
        return checkTime;
    }
    public void setPreRectifyPhoto(String preRectifyPhoto) 
    {
        this.preRectifyPhoto = preRectifyPhoto;
    }
 
    public String getPreRectifyPhoto() 
    {
        return preRectifyPhoto;
    }
    public void setRegisterCreateTime(Date registerCreateTime) 
    {
        this.registerCreateTime = registerCreateTime;
    }
 
    public Date getRegisterCreateTime() 
    {
        return registerCreateTime;
    }
    public void setJudgeCreateTime(Date judgeCreateTime) 
    {
        this.judgeCreateTime = judgeCreateTime;
    }
 
    public Date getJudgeCreateTime() 
    {
        return judgeCreateTime;
    }
    public void setDangerSources(String dangerSources) 
    {
        this.dangerSources = dangerSources;
    }
 
    public String getDangerSources() 
    {
        return dangerSources;
    }
    public void setReportStatus(String reportStatus) 
    {
        this.reportStatus = reportStatus;
    }
 
    public String getReportStatus() 
    {
        return reportStatus;
    }
    public void setExamineUserId(Long examineUserId) 
    {
        this.examineUserId = examineUserId;
    }
 
    public Long getExamineUserId() 
    {
        return examineUserId;
    }
    public void setExamineUserName(String examineUserName) 
    {
        this.examineUserName = examineUserName;
    }
 
    public String getExamineUserName() 
    {
        return examineUserName;
    }
    public void setExamineStatus(String examineStatus) 
    {
        this.examineStatus = examineStatus;
    }
 
    public String getExamineStatus() 
    {
        return examineStatus;
    }
    public void setExamineOpinion(String examineOpinion) 
    {
        this.examineOpinion = examineOpinion;
    }
 
    public String getExamineOpinion() 
    {
        return examineOpinion;
    }
    public void setExamineResult(String examineResult) 
    {
        this.examineResult = examineResult;
    }
 
    public String getExamineResult() 
    {
        return examineResult;
    }
    public void setExamineCreateTime(Date examineCreateTime) 
    {
        this.examineCreateTime = examineCreateTime;
    }
 
    public Date getExamineCreateTime() 
    {
        return examineCreateTime;
    }
    public void setTreatMeasure(String treatMeasure) 
    {
        this.treatMeasure = treatMeasure;
    }
 
    public String getTreatMeasure() 
    {
        return treatMeasure;
    }
    public void setRectifyUserId(Long rectifyUserId) 
    {
        this.rectifyUserId = rectifyUserId;
    }
 
    public Long getRectifyUserId() 
    {
        return rectifyUserId;
    }
    public void setRectifyUserName(String rectifyUserName) 
    {
        this.rectifyUserName = rectifyUserName;
    }
 
    public String getRectifyUserName() 
    {
        return rectifyUserName;
    }
    public void setRectifyDeptId(Long rectifyDeptId) 
    {
        this.rectifyDeptId = rectifyDeptId;
    }
 
    public Long getRectifyDeptId() 
    {
        return rectifyDeptId;
    }
    public void setRectifyDeptName(String rectifyDeptName) 
    {
        this.rectifyDeptName = rectifyDeptName;
    }
 
    public String getRectifyDeptName() 
    {
        return rectifyDeptName;
    }
    public void setRectifyDeadlineTime(Date rectifyDeadlineTime) 
    {
        this.rectifyDeadlineTime = rectifyDeadlineTime;
    }
 
    public Date getRectifyDeadlineTime() 
    {
        return rectifyDeadlineTime;
    }
    public void setRectifyType(String rectifyType) 
    {
        this.rectifyType = rectifyType;
    }
 
    public String getRectifyType() 
    {
        return rectifyType;
    }
    public void setRectifyAttachment(String rectifyAttachment) 
    {
        this.rectifyAttachment = rectifyAttachment;
    }
 
    public String getRectifyAttachment() 
    {
        return rectifyAttachment;
    }
    public void setRectifyMeasure(String rectifyMeasure) 
    {
        this.rectifyMeasure = rectifyMeasure;
    }
 
    public String getRectifyMeasure() 
    {
        return rectifyMeasure;
    }
    public void setRectifyCondition(String rectifyCondition) 
    {
        this.rectifyCondition = rectifyCondition;
    }
 
    public String getRectifyCondition() 
    {
        return rectifyCondition;
    }
    public void setRectifyFund(String rectifyFund) 
    {
        this.rectifyFund = rectifyFund;
    }
 
    public String getRectifyFund() 
    {
        return rectifyFund;
    }
    public void setRectifyCompleteTime(Date rectifyCompleteTime) 
    {
        this.rectifyCompleteTime = rectifyCompleteTime;
    }
 
    public Date getRectifyCompleteTime() 
    {
        return rectifyCompleteTime;
    }
    public void setRectifyStatus(String rectifyStatus) 
    {
        this.rectifyStatus = rectifyStatus;
    }
 
    public String getRectifyStatus() 
    {
        return rectifyStatus;
    }
    public void setRectifyCreateTime(Date rectifyCreateTime) 
    {
        this.rectifyCreateTime = rectifyCreateTime;
    }
 
    public Date getRectifyCreateTime() 
    {
        return rectifyCreateTime;
    }
    public void setAcceptUserId(Long acceptUserId) 
    {
        this.acceptUserId = acceptUserId;
    }
 
    public Long getAcceptUserId() 
    {
        return acceptUserId;
    }
    public void setAcceptUserName(String acceptUserName) 
    {
        this.acceptUserName = acceptUserName;
    }
 
    public String getAcceptUserName() 
    {
        return acceptUserName;
    }
    public void setPostRectifyPhoto(String postRectifyPhoto) 
    {
        this.postRectifyPhoto = postRectifyPhoto;
    }
 
    public String getPostRectifyPhoto() 
    {
        return postRectifyPhoto;
    }
    public void setAcceptResult(String acceptResult) 
    {
        this.acceptResult = acceptResult;
    }
 
    public String getAcceptResult() 
    {
        return acceptResult;
    }
 
    public void setAcceptOpinion(String acceptOpinion) 
    {
        this.acceptOpinion = acceptOpinion;
    }
 
    public String getAcceptOpinion() 
    {
        return acceptOpinion;
    }
    public void setAcceptFile(String acceptFile) 
    {
        this.acceptFile = acceptFile;
    }
 
    public String getAcceptFile() 
    {
        return 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 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("whetherDanger", getWhetherDanger())
            .append("dangerName", getDangerName())
            .append("dangerDescription", getDangerDescription())
            .append("dangerLevel", getDangerLevel())
            .append("troubleTypeId", getTroubleTypeId())
            .append("troubleTypeName", getTroubleTypeName())
            .append("dangerPlaceId", getDangerPlaceId())
            .append("dangerPlaceName", getDangerPlaceName())
            .append("checkTime", getCheckTime())
            .append("preRectifyPhoto", getPreRectifyPhoto())
            .append("registerCreateTime", getRegisterCreateTime())
            .append("judgeCreateTime", getJudgeCreateTime())
            .append("dangerSources", getDangerSources())
            .append("reportStatus", getReportStatus())
            .append("examineUserId", getExamineUserId())
            .append("examineUserName", getExamineUserName())
            .append("examineStatus", getExamineStatus())
            .append("examineOpinion", getExamineOpinion())
            .append("examineResult", getExamineResult())
            .append("examineCreateTime", getExamineCreateTime())
            .append("treatMeasure", getTreatMeasure())
            .append("rectifyUserId", getRectifyUserId())
            .append("rectifyUserName", getRectifyUserName())
            .append("rectifyDeptId", getRectifyDeptId())
            .append("rectifyDeptName", getRectifyDeptName())
            .append("rectifyDeadlineTime", getRectifyDeadlineTime())
            .append("rectifyType", getRectifyType())
            .append("rectifyAttachment", getRectifyAttachment())
            .append("rectifyMeasure", getRectifyMeasure())
            .append("rectifyCondition", getRectifyCondition())
            .append("rectifyFund", getRectifyFund())
            .append("rectifyCompleteTime", getRectifyCompleteTime())
            .append("rectifyStatus", getRectifyStatus())
            .append("rectifyCreateTime", getRectifyCreateTime())
            .append("acceptUserId", getAcceptUserId())
            .append("acceptUserName", getAcceptUserName())
            .append("postRectifyPhoto", getPostRectifyPhoto())
            .append("acceptResult", getAcceptResult())
            .append("acceptOpinion", getAcceptOpinion())
            .append("acceptFile", getAcceptFile())
            .toString();
    }
}