广州市综治平台后端
xusd
2 days ago c490640493f04e2ed0fc5c4c8fbc92ebdd4d5380
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
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!-- 
 * @title: 纠纷任务表
 * @description: 自定义sql,请自行实现业务逻辑
 * @company: hugeinfo
 * @author: liyj
 * @time:2024-10-10 10:45:06
 * @version 1.0.0
-->
<mapper namespace="cn.huge.module.cases.dao.mapper.CaseTaskMapper">
    <!-- 结果集 -->
    <resultMap id="dataResult" type="cn.huge.module.cases.domain.po.CaseTask">
            <result property="id" column="id"/>
            <result property="caseId" column="case_id"/>
            <result property="flowableId" column="flowable_id"/>
            <result property="processInstanceId" column="process_instance_id"/>
            <result property="processTaskId" column="process_task_id"/>
            <result property="nodeType" column="node_type"/>
            <result property="nodeId" column="node_id"/>
            <result property="nodeName" column="node_name"/>
            <result property="flowId" column="flow_id"/>
            <result property="nodeShowName" column="node_show_name"/>
            <result property="caseTaskType" column="case_task_type"/>
            <result property="candeUnitId" column="cande_unit_id"/>
            <result property="candeUnitName" column="cande_unit_name"/>
            <result property="candeDeptId" column="cande_dept_id"/>
            <result property="candeDeptName" column="cande_dept_name"/>
            <result property="candeRoleCode" column="cande_role_code"/>
            <result property="candeRoleName" column="cande_role_name"/>
            <result property="candeUserId" column="cande_user_id"/>
            <result property="candeUserName" column="cande_user_name"/>
            <result property="readStatus" column="read_status"/>
            <result property="readExpireTime" column="read_expire_time"/>
            <result property="readTime" column="read_time"/>
            <result property="readUnitId" column="read_unit_id"/>
            <result property="readUnitName" column="read_unit_name"/>
            <result property="readUserId" column="read_user_id"/>
            <result property="readUserName" column="read_user_name"/>
            <result property="expireTime" column="expire_time"/>
            <result property="status" column="status"/>
            <result property="handleUnitId" column="handle_unit_id"/>
            <result property="handleUnitName" column="handle_unit_name"/>
            <result property="handleDeptId" column="handle_dept_id"/>
            <result property="handleDeptName" column="handle_dept_name"/>
            <result property="handleUserId" column="handle_user_id"/>
            <result property="handleUserName" column="handle_user_name"/>
            <result property="handleResult" column="handle_result"/>
            <result property="handleContent" column="handle_content"/>
            <result property="handleIllust" column="handle_illust"/>
            <result property="handleTime" column="handle_time"/>
            <result property="usetimeHour" column="usetime_hour"/>
            <result property="overtimeStatus" column="overtime_status"/>
            <result property="overtimeHour" column="overtime_hour"/>
            <result property="deleteStatus" column="delete_status"/>
            <result property="custId" column="cust_id"/>
            <result property="createTime" column="create_time"/>
            <result property="updateTime" column="update_time"/>
    </resultMap>
    <!-- 表 -->
    <sql id='table-name'>dyh_case_task</sql>
    <!-- 字段 -->
    <sql id="column-part">
        id,
        case_id,
        flowable_id,
        process_instance_id,
        process_task_id,
        node_type,
        node_id,
        node_name,
        flow_id,
        node_show_name,
        case_task_type,
        cande_unit_id,
        cande_unit_name,
        cande_dept_id,
        cande_dept_name,
        cande_role_code,
        cande_role_name,
        cande_user_id,
        cande_user_name,
        read_status,
        read_expire_time,
        read_time,
        read_unit_id,
        read_unit_name,
        read_user_id,
        read_user_name,
        expire_time,
        status,
        handle_unit_id,
        handle_unit_name,
        handle_dept_id,
        handle_dept_name,
        handle_user_id,
        handle_user_name,
        handle_result,
        handle_content,
        handle_illust,
        handle_time,
        usetime_hour,
        overtime_status,
        overtime_hour,
        delete_status,
        cust_id,
        create_time,
        update_time
    </sql>
    <!-- 更新实体字段 -->
    <sql id="set-part">
            <if test="entity.caseId != null">case_id = #{entity.caseId},</if>
            <if test="entity.flowableId != null">flowable_id = #{entity.flowableId},</if>
            <if test="entity.processInstanceId != null">process_instance_id = #{entity.processInstanceId},</if>
            <if test="entity.processTaskId != null">process_task_id = #{entity.processTaskId},</if>
            <if test="entity.nodeType != null">node_type = #{entity.nodeType},</if>
            <if test="entity.nodeId != null">node_id = #{entity.nodeId},</if>
            <if test="entity.nodeName != null">node_name = #{entity.nodeName},</if>
            <if test="entity.flowId != null">flow_id = #{entity.flowId},</if>
            <if test="entity.nodeShowName != null">node_show_name = #{entity.nodeShowName},</if>
            <if test="entity.caseTaskType != null">case_task_type = #{entity.caseTaskType},</if>
            <if test="entity.candeUnitId != null">cande_unit_id = #{entity.candeUnitId},</if>
            <if test="entity.candeUnitName != null">cande_unit_name = #{entity.candeUnitName},</if>
            <if test="entity.candeDeptId != null">cande_dept_id = #{entity.candeDeptId},</if>
            <if test="entity.candeDeptName != null">cande_dept_name = #{entity.candeDeptName},</if>
            <if test="entity.candeRoleCode != null">cande_role_code = #{entity.candeRoleCode},</if>
            <if test="entity.candeRoleName != null">cande_role_name = #{entity.candeRoleName},</if>
            <if test="entity.candeUserId != null">cande_user_id = #{entity.candeUserId},</if>
            <if test="entity.candeUserName != null">cande_user_name = #{entity.candeUserName},</if>
            <if test="entity.readStatus != null">read_status = #{entity.readStatus},</if>
            <if test="entity.readExpireTime != null">read_expire_time = #{entity.readExpireTime},</if>
            <if test="entity.readTime != null">read_time = #{entity.readTime},</if>
            <if test="entity.readUnitId != null">read_unit_id = #{entity.readUnitId},</if>
            <if test="entity.readUnitName != null">read_unit_name = #{entity.readUnitName},</if>
            <if test="entity.readUserId != null">read_user_id = #{entity.readUserId},</if>
            <if test="entity.readUserName != null">read_user_name = #{entity.readUserName},</if>
            <if test="entity.expireTime != null">expire_time = #{entity.expireTime},</if>
            <if test="entity.status != null">status = #{entity.status},</if>
            <if test="entity.handleUnitId != null">handle_unit_id = #{entity.handleUnitId},</if>
            <if test="entity.handleUnitName != null">handle_unit_name = #{entity.handleUnitName},</if>
            <if test="entity.handleDeptId != null">handle_dept_id = #{entity.handleDeptId},</if>
            <if test="entity.handleDeptName != null">handle_dept_name = #{entity.handleDeptName},</if>
            <if test="entity.handleUserId != null">handle_user_id = #{entity.handleUserId},</if>
            <if test="entity.handleUserName != null">handle_user_name = #{entity.handleUserName},</if>
            <if test="entity.handleResult != null">handle_result = #{entity.handleResult},</if>
            <if test="entity.handleContent != null">handle_content = #{entity.handleContent},</if>
            <if test="entity.handleIllust != null">handle_illust = #{entity.handleIllust},</if>
            <if test="entity.handleTime != null">handle_time = #{entity.handleTime},</if>
            <if test="entity.usetimeHour != null">usetime_hour = #{entity.usetimeHour},</if>
            <if test="entity.overtimeStatus != null">overtime_status = #{entity.overtimeStatus},</if>
            <if test="entity.overtimeHour != null">overtime_hour = #{entity.overtimeHour},</if>
            <if test="entity.deleteStatus != null">delete_status = #{entity.deleteStatus},</if>
            <if test="entity.custId != null">cust_id = #{entity.custId},</if>
            <if test="entity.createTime != null">create_time = #{entity.createTime},</if>
            <if test="entity.updateTime != null">update_time = #{entity.updateTime}</if>
    </sql>
    <!-- 条件 -->
    <sql id="where-part">
        <if test="terms != null">
            <where>
                <if test="terms.id != null and terms.id !=''">
                    and id = #{terms.id}
                </if>
                <if test="terms.caseId != null and terms.caseId !=''">
                    and case_id = #{terms.caseId}
                </if>
                <if test="terms.flowableId != null and terms.flowableId !=''">
                    and flowable_id = #{terms.flowableId}
                </if>
                <if test="terms.processInstanceId != null and terms.processInstanceId !=''">
                    and process_instance_id = #{terms.processInstanceId}
                </if>
                <if test="terms.processTaskId != null and terms.processTaskId !=''">
                    and process_task_id = #{terms.processTaskId}
                </if>
                <if test="terms.nodeType != null and terms.nodeType !=''">
                    and node_type = #{terms.nodeType}
                </if>
                <if test="terms.nodeId != null and terms.nodeId !=''">
                    and node_id = #{terms.nodeId}
                </if>
                <if test="terms.nodeName != null and terms.nodeName !=''">
                    and node_name = #{terms.nodeName}
                </if>
                <if test="terms.flowId != null and terms.flowId !=''">
                    and flow_id = #{terms.flowId}
                </if>
                <if test="terms.nodeShowName != null and terms.nodeShowName !=''">
                    and node_show_name = #{terms.nodeShowName}
                </if>
                <if test="terms.caseTaskType != null and terms.caseTaskType !=''">
                    and case_task_type = #{terms.caseTaskType}
                </if>
                <if test="terms.candeUnitId != null and terms.candeUnitId !=''">
                    and cande_unit_id = #{terms.candeUnitId}
                </if>
                <if test="terms.candeUnitName != null and terms.candeUnitName !=''">
                    and cande_unit_name = #{terms.candeUnitName}
                </if>
                <if test="terms.candeDeptId != null and terms.candeDeptId !=''">
                    and cande_dept_id = #{terms.candeDeptId}
                </if>
                <if test="terms.candeDeptName != null and terms.candeDeptName !=''">
                    and cande_dept_name = #{terms.candeDeptName}
                </if>
                <if test="terms.candeRoleCode != null and terms.candeRoleCode !=''">
                    and cande_role_code = #{terms.candeRoleCode}
                </if>
                <if test="terms.candeRoleName != null and terms.candeRoleName !=''">
                    and cande_role_name = #{terms.candeRoleName}
                </if>
                <if test="terms.candeUserId != null and terms.candeUserId !=''">
                    and cande_user_id = #{terms.candeUserId}
                </if>
                <if test="terms.candeUserName != null and terms.candeUserName !=''">
                    and cande_user_name = #{terms.candeUserName}
                </if>
                <if test="terms.readStatus != null and terms.readStatus !=''">
                    and read_status = #{terms.readStatus}
                </if>
                <if test="terms.readExpireTime != null and terms.readExpireTime !=''">
                    and read_expire_time = #{terms.readExpireTime}
                </if>
                <if test="terms.readTime != null and terms.readTime !=''">
                    and read_time = #{terms.readTime}
                </if>
                <if test="terms.readUnitId != null and terms.readUnitId !=''">
                    and read_unit_id = #{terms.readUnitId}
                </if>
                <if test="terms.readUnitName != null and terms.readUnitName !=''">
                    and read_unit_name = #{terms.readUnitName}
                </if>
                <if test="terms.readUserId != null and terms.readUserId !=''">
                    and read_user_id = #{terms.readUserId}
                </if>
                <if test="terms.readUserName != null and terms.readUserName !=''">
                    and read_user_name = #{terms.readUserName}
                </if>
                <if test="terms.expireTime != null and terms.expireTime !=''">
                    and expire_time = #{terms.expireTime}
                </if>
                <if test="terms.status != null and terms.status !=''">
                    and status = #{terms.status}
                </if>
                <if test="terms.handleUnitId != null and terms.handleUnitId !=''">
                    and handle_unit_id = #{terms.handleUnitId}
                </if>
                <if test="terms.handleUnitName != null and terms.handleUnitName !=''">
                    and handle_unit_name = #{terms.handleUnitName}
                </if>
                <if test="terms.handleDeptId != null and terms.handleDeptId !=''">
                    and handle_dept_id = #{terms.handleDeptId}
                </if>
                <if test="terms.handleDeptName != null and terms.handleDeptName !=''">
                    and handle_dept_name = #{terms.handleDeptName}
                </if>
                <if test="terms.handleUserId != null and terms.handleUserId !=''">
                    and handle_user_id = #{terms.handleUserId}
                </if>
                <if test="terms.handleUserName != null and terms.handleUserName !=''">
                    and handle_user_name = #{terms.handleUserName}
                </if>
                <if test="terms.handleResult != null and terms.handleResult !=''">
                    and handle_result = #{terms.handleResult}
                </if>
                <if test="terms.handleContent != null and terms.handleContent !=''">
                    and handle_content = #{terms.handleContent}
                </if>
                <if test="terms.handleIllust != null and terms.handleIllust !=''">
                    and handle_illust = #{terms.handleIllust}
                </if>
                <if test="terms.handleTime != null and terms.handleTime !=''">
                    and handle_time = #{terms.handleTime}
                </if>
                <if test="terms.usetimeHour != null and terms.usetimeHour !=''">
                    and usetime_hour = #{terms.usetimeHour}
                </if>
                <if test="terms.overtimeStatus != null and terms.overtimeStatus !=''">
                    and overtime_status = #{terms.overtimeStatus}
                </if>
                <if test="terms.overtimeHour != null and terms.overtimeHour !=''">
                    and overtime_hour = #{terms.overtimeHour}
                </if>
                <if test="terms.deleteStatus = null and terms.deleteStatus =''">
                    and delete_status = 0
                </if>
                <if test="terms.deleteStatus != null and terms.deleteStatus !=''">
                    and delete_status = #{terms.deleteStatus}
                </if>
                <if test="terms.custId != null and terms.custId !=''">
                    and cust_id = #{terms.custId}
                </if>
                <if test="terms.createTime != null and terms.createTime !=''">
                    and DATE_FORMAT(create_time,'%Y-%m-%d') = #{terms.createTime}
                </if>
                <if test="terms.createStart != null and terms.createStart !='' and terms.createEnd != null and terms.createEnd !=''">
                    and (DATE_FORMAT(create_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.createStart}
                        and DATE_FORMAT(create_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.createEnd})
                </if>
                <if test="terms.updateTime != null and terms.updateTime !=''">
                    and DATE_FORMAT(update_time,'%Y-%m-%d') = #{terms.updateTime}
                </if>
                <if test="terms.updateStart != null and terms.updateStart !='' and terms.updateEnd != null and terms.updateEnd !=''">
                    and (DATE_FORMAT(update_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.updateStart}
                        and DATE_FORMAT(update_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.updateEnd})
                </if>
            </where>
        </if>
    </sql>
    <!-- 更新对象 -->
    <update id="updateCaseTask">
        update
        <include refid="table-name"/>
        <set>
            <include refid="set-part"/>
        </set>
        <where>
            id = #{entity.id}
        </where>
    </update>
    <!-- 条件更新对象 -->
    <update id="updateCaseTaskTerms">
        update
        <include refid="table-name"/>
        <set>
            <include refid="set-part"/>
        </set>
        <include refid="where-part"/>
    </update>
    <!--  根据编号物理删除  -->
    <delete id="deleteCaseTask">
        delete from
        <include refid="table-name" />
        where id = #{id}
    </delete>
    <!--  根据条件查询  -->
    <select id="listTerms" resultMap="dataResult">
        select
        <include refid="column-part"/>
        from
        <include refid="table-name" />
        <include refid="where-part"/>
    </select>
    <!--  根据条件统计  -->
    <select id="countTerms" resultType="java.lang.Long">
        select
        COUNT(1)
        from
        <include refid="table-name" />
        <include refid="where-part"/>
    </select>
    <!--  根据条件分页查询  -->
    <select id="pageTerms" resultMap="dataResult">
        SELECT
        <include refid="column-part"/>
        FROM
        <include refid="table-name" />
        <include refid="where-part"/>
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(create_time), create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
    <!--  结果集-->
    <resultMap id="FrontPageCountResult" type="cn.huge.module.cases.domain.dto.FrontPageCountDTO">
        <result property="waitDisp" column="waitDisp"/>
        <result property="waitSign" column="waitSign"/>
        <result property="waitAccept" column="waitAccept"/>
        <result property="waitAccept" column="waitAccept"/>
    </resultMap>
    <!--  查询任务数量  -->
    <select id="countTaskList" resultMap="FrontPageCountResult">
        select
        count(case when (node_id = 'ZJ_DFP' or  node_id = 'QJ_DFP' or  node_id = 'SJ_DFP' or  node_id = 'DFP') then id end) as waitDisp,
        count(case when read_status = 0 then id end) as waitSign,
        count(case when (node_id = 'ZJ_DSL' or  node_id = 'QJ_DSL' or  node_id = 'SJ_DSL' or  node_id = 'DSL') then id end) as waitAccept,
        count(case when node_id = 'BLFK' then id end) as Processing
        from
        <include refid="table-name" />
        where
        cande_unit_id = #{terms.candeUnitId}
        and delete_status = 0
        and status = 1
    </select>
 
 
    <!-- 工作台-待/已分派条件查询-条件 -->
    <sql id="myTaskFp-where-part">
        <if test="terms != null">
            <if test="terms.candeUnitId != null and terms.candeUnitId !=''">
                and t1.cande_unit_id = #{terms.candeUnitId}
            </if>
            <if test="terms.handleUnitId != null and terms.handleUnitId !=''">
                and t1.handle_unit_id = #{terms.handleUnitId}
            </if>
            <if test="terms.createTimeStart != null and terms.createTimeStart !='' and terms.createTimeEnd != null and terms.createTimeEnd !=''">
                and (DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.createTimeStart}
                and DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.createTimeEnd})
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.caseType != null and terms.caseType !=''">
                and t2.case_type = #{terms.caseType}
            </if>
            <if test="terms.plaintiffs != null and terms.plaintiffs !=''">
                and t2.plaintiffs like concat('%', #{terms.plaintiffs}, '%')
            </if>
            <if test="terms.defendants != null and terms.defendants !=''">
                and t2.defendants like concat('%', #{terms.defendants}, '%')
            </if>
            <if test="terms.canal != null and terms.canal !=''">
                and t2.canal = #{terms.canal}
            </if>
            <if test="terms.caseStatus != null and terms.caseStatus !=''">
                and t2.status = #{terms.caseStatus}
            </if>
            <if test="terms.caseLevel != null and terms.caseLevel !=''">
                and t2.case_level = #{terms.caseLevel}
            </if>
            <if test="terms.mediResult != null and terms.mediResult !=''">
                and t3.medi_result = #{terms.mediResult}
            </if>
            <if test="terms.status == 2">
                and t1.handle_result in (0, 1, 2)
            </if>
        </if>
    </sql>
    <!--  工作台-待/已分派条件统计  -->
    <select id="countMyTaskFp" resultType="java.lang.Long">
        select
        COUNT(t1.id)
        from
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DFP' or  t1.node_id = 'QJ_DFP' or  t1.node_id = 'SJ_DFP' or  t1.node_id = 'DFP')
        and t1.case_task_type = 1
        and t2.delete_status = 0
        and t1.status = #{terms.status}
        <include refid="myTaskFp-where-part"/>
    </select>
    <!--  工作台-待分派分页查询  -->
    <select id="pageMyTaskFp" resultType="cn.huge.module.cases.domain.dto.FrontPageListFPDTO">
        SELECT t1.id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
        t1.create_time as turnaroundTime, t1.expire_time as timeLimit, t1.handle_time as taskHandleTime,
        t2.case_level as caseGrade, t2.canal_name as caseSource,t2.canal_second_name as caseSecondSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat(t2.que_area_name, t2.que_road_name) as queAddress,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id) as superviseCount
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DFP' or  t1.node_id = 'QJ_DFP' or  t1.node_id = 'SJ_DFP' or  t1.node_id = 'DFP')
        and t1.case_task_type = 1
        and t2.delete_status = 0
        and t1.status = #{terms.status}
        <include refid="myTaskFp-where-part"/>
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(t1.create_time), t1.create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
 
    <!-- 工作台-待/已签收条件查询-条件 -->
    <sql id="myTaskQs-where-part">
        <if test="terms != null">
            <if test="terms.candeUnitId != null and terms.candeUnitId !=''">
                and t1.cande_unit_id = #{terms.candeUnitId}
            </if>
            <if test="terms.handleUnitId != null and terms.handleUnitId !=''">
                and t1.handle_unit_id = #{terms.handleUnitId}
            </if>
            <if test="terms.createTimeStart != null and terms.createTimeStart !='' and terms.createTimeEnd != null and terms.createTimeEnd !=''">
                and (DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.createTimeStart}
                and DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.createTimeEnd})
            </if>
            <if test="terms.readTimeStart != null and terms.readTimeStart !='' and terms.readTimeEnd != null and terms.readTimeEnd !=''">
                and (DATE_FORMAT(t1.read_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.readTimeStart}
                and DATE_FORMAT(t1.read_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.readTimeEnd})
            </if>
            <if test="terms.partyName != null and terms.partyName !=''">
                and concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%')
            </if>
        </if>
    </sql>
    <!--  首页-未/已读条件统计  -->
    <select id="countMyTaskQs" resultType="java.lang.Long">
        select
        COUNT(t1.id)
        from
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id
        where
        t2.delete_status = 0
        and t1.status = '1'
        and t1.read_status = #{terms.readStatus}
        <include refid="myTaskQs-where-part"/>
    </select>
    <!--  首页-待/已签收分页查询  -->
    <select id="pageMyTaskQs" resultType="cn.huge.module.cases.domain.dto.FrontPageListQSDTO">
        SELECT t1.id as ownerId, t1.case_id as caseId,
        t1.create_time as turnaroundTime, t1.read_expire_time as timeLimit, t1.read_time as taskHandleTime,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id) as superviseCount
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id
        where
        t2.delete_status = 0
        and t1.status = '1'
        and t1.read_status = #{terms.readStatus}
        <include refid="myTaskQs-where-part"/>
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(t1.create_time), t1.create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
    <!--  全部签收-查询未签收所有Id  -->
    <select id="listIdByTerms" resultType="cn.huge.module.cases.domain.dto.SignTaskDTO">
        SELECT t1.id as caseTaskId, t1.case_id as caseId
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id
        where
        t2.delete_status = 0
        and t1.status = '1'
        <include refid="myTaskQs-where-part"/>
    </select>
 
 
    <!-- 工作台-待/已受理条件查询-条件 -->
    <sql id="myTaskSl-where-part">
        <if test="terms != null">
            <if test="terms.candeUnitId != null and terms.candeUnitId !=''">
                and t1.cande_unit_id = #{terms.candeUnitId}
            </if>
            <if test="terms.handleUnitId != null and terms.handleUnitId !=''">
                and t1.handle_unit_id = #{terms.handleUnitId}
            </if>
            <if test="terms.caseTaskType != null and terms.caseTaskType !=''">
                and t1.case_task_type = #{terms.caseTaskType}
            </if>
            <if test="terms.createTimeStart != null and terms.createTimeStart !='' and terms.createTimeEnd != null and terms.createTimeEnd !=''">
                and (DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.createTimeStart}
                and DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.createTimeEnd})
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.caseType != null and terms.caseType !=''">
                and t2.case_type = #{terms.caseType}
            </if>
            <if test="terms.plaintiffs != null and terms.plaintiffs !=''">
                and t2.plaintiffs like concat('%', #{terms.plaintiffs}, '%')
            </if>
            <if test="terms.defendants != null and terms.defendants !=''">
                and t2.defendants like concat('%', #{terms.defendants}, '%')
            </if>
            <if test="terms.canal != null and terms.canal !=''">
                and t2.canal = #{terms.canal}
            </if>
            <if test="terms.caseStatus != null and terms.caseStatus !=''">
                and t2.status = #{terms.caseStatus}
            </if>
            <if test="terms.caseLevel != null and terms.caseLevel !=''">
                and t2.case_level = #{terms.caseLevel}
            </if>
            <if test="terms.mediResult != null and terms.mediResult !=''">
                and t3.medi_result = #{terms.mediResult}
            </if>
        </if>
    </sql>
    <!--  首页-待/已受理条件统计  -->
    <select id="countMyTaskSl" resultType="java.lang.Long">
        select
        COUNT(t1.id)
        from
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DSL' or  t1.node_id = 'QJ_DSL' or  t1.node_id = 'SJ_DSL' or  t1.node_id = 'DSL')
        and t2.delete_status = 0
        and t1.status = #{terms.status}
        <include refid="myTaskSl-where-part"/>
    </select>
    <!--  首页-待/已受理分页查询  -->
    <select id="pageMyTaskSl" resultType="cn.huge.module.cases.domain.dto.FrontPageListSLDTO">
        SELECT t1.id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
        t1.create_time as turnaroundTime, t1.expire_time as timeLimit, t1.handle_time as taskHandleTime,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id) as superviseCount
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DSL' or t1.node_id = 'QJ_DSL' or t1.node_id = 'SJ_DSL' or t1.node_id = 'DSL')
        and t2.delete_status = 0
        and t1.status = #{terms.status}
        <include refid="myTaskSl-where-part"/>
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(t1.create_time), t1.create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
 
    <!-- 工作台-办理中条件查询-条件 -->
    <sql id="myTaskBlz-where-part">
        <if test="terms != null">
            <if test="terms.candeUnitId != null and terms.candeUnitId !=''">
                and t1.cande_unit_id = #{terms.candeUnitId}
            </if>
            <if test="terms.status != null and terms.status !=''">
                and t1.status = #{terms.status}
            </if>
            <if test="terms.caseTaskType != null and terms.caseTaskType !=''">
                and t1.case_task_type = #{terms.caseTaskType}
            </if>
            <if test="terms.createTimeStart != null and terms.createTimeStart !='' and terms.createTimeEnd != null and terms.createTimeEnd !=''">
                and (DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.createTimeStart}
                and DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.createTimeEnd})
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test='terms.mediatorType != null and terms.mediatorType =="1"'>
                and t3.mediator_id = #{terms.mediatorId}
            </if>
            <if test='terms.mediatorType != null and terms.mediatorType =="2"'>
                and t3.mediator_id is null
            </if>
            <if test="terms.caseType != null and terms.caseType !=''">
                and t2.case_type = #{terms.caseType}
            </if>
            <if test="terms.plaintiffs != null and terms.plaintiffs !=''">
                and t2.plaintiffs like concat('%', #{terms.plaintiffs}, '%')
            </if>
            <if test="terms.defendants != null and terms.defendants !=''">
                and t2.defendants like concat('%', #{terms.defendants}, '%')
            </if>
            <if test="terms.canal != null and terms.canal !=''">
                and t2.canal = #{terms.canal}
            </if>
            <if test="terms.caseStatus != null and terms.caseStatus !=''">
                and t2.status = #{terms.caseStatus}
            </if>
            <if test="terms.caseLevel != null and terms.caseLevel !=''">
                and t2.case_level = #{terms.caseLevel}
            </if>
            <if test="terms.mediResult != null and terms.mediResult !=''">
                and t3.medi_result = #{terms.mediResult}
            </if>
        </if>
    </sql>
    <!--  首页-办理中条件统计  -->
    <select id="countMyTaskBlz" resultType="java.lang.Long">
        select
        COUNT(t1.id)
        from
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id
        left join dyh_case_info_unfold t3 on t1.case_id = t3.id
        where
        t1.node_id = 'BLFK'
        and t1.status = 1
        and t2.delete_status = 0
        <include refid="myTaskBlz-where-part"/>
    </select>
    <!--  首页-办理中分页查询  -->
    <select id="pageMyTaskBlz" resultType="cn.huge.module.cases.domain.dto.FrontPageListBLZDTO">
        SELECT
        t1.id as ownerId, t1.case_id as caseId, t1.create_time as turnaroundTime, t2.case_level as caseGrade, t3.is_risk as isRisk,
        t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType, t3.mediator as manager,
        t3.assist_unit_name as cooperatingUnit, t3.mediate_unit_name as organizingUnit,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id) as superviseCount
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id
        left join dyh_case_info_unfold t3 on t1.case_id = t3.id
        where
        t1.node_id = 'BLFK'
        and t1.status = 1
        and t2.delete_status = 0
        <include refid="myTaskBlz-where-part"/>
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(t1.create_time), t1.create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
    <!--  首页-待审核-我申请的条件统计  -->
    <select id="countMyTaskShWSQD" resultType="java.lang.Long">
        select sum(t1.count)
        from
        (
        SELECT count(1) as count, case_id as caseId
        FROM dyh_case_return
        WHERE return_unit_id = #{terms.applyUnitId}
        union all
        SELECT count(1) as count, case_id as caseId
        FROM dyh_case_windup_apply
        WHERE apply_unit_id = #{terms.applyUnitId}
        union all
        SELECT count(1) as count, case_id as caseId
        FROM dyh_case_appear
        WHERE appear_unit_id = #{terms.applyUnitId}
        union all
        SELECT count(1) as count, case_id as caseId
        FROM dyh_case_assist_apply
        WHERE apply_unit_id = #{terms.applyUnitId}
        union all
        SELECT count(1) as count, case_id as caseId
        FROM dyh_judic_info
        WHERE apply_unit_id = #{terms.applyUnitId}
        )t1 left join dyh_case_info t2 on t1.caseId = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        <where>
            <if test="terms.applyType != null and terms.applyType !=''">
                and t1.applyType = #{terms.applyType}
            </if>
            <if test="terms.auditStatus != null and terms.auditStatus !=''">
                and t1.audit_result = #{terms.auditResult}
            </if>
            <if test="terms.timeStart != null and terms.timeStart !='' and terms.timeEnd != null and terms.timeEnd !=''">
                and (DATE_FORMAT(t1.turnaroundTime,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.timeStart}
                and DATE_FORMAT(t1.turnaroundTime,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.timeEnd})
            </if>
            <if test="terms.partyName != null and terms.partyName !=''">
                and concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%')
            </if>
        </where>
    </select>
    <!--  首页-待审核-我申请的分页查询  -->
    <select id="pageMyTaskShWSQD" resultType="cn.huge.module.cases.domain.dto.FrontPageListWSQDDTO">
        select t1.*,t2.case_level as caseGrade, t2.canal_name as caseSource, t3.is_risk as isRisk,
               concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
               concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
               concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants
        from
        (
        SELECT case_id as caseId, id as ownerId, return_time as turnaroundTime, '回退' as applyType,
        audit_unit_name as auditUnit, return_status as auditStatus, audit_result_name as auditResult,
        audit_time as auditTime, create_time, audit_result
        FROM dyh_case_return
        WHERE return_unit_id = #{terms.applyUnitId}
        union all
        SELECT case_id as caseId, id as ownerId, apply_time as turnaroundTime, '结案' as applyType,
        audit_unit_name as auditUnit, apply_status as auditStatus, audit_result_name as auditResult,
        audit_time as auditTime, create_time, audit_result
        FROM dyh_case_windup_apply
        WHERE apply_unit_id = #{terms.applyUnitId}
        union all
        SELECT case_id as caseId, id as ownerId, appear_time as turnaroundTime, '上报' as applyType,
        audit_unit_name as auditUnit, apply_status as auditStatus, audit_result_name as auditResult,
        audit_time as auditTime, create_time, audit_result
        FROM dyh_case_appear
        WHERE appear_unit_id = #{terms.applyUnitId}
        union all
        SELECT case_id as caseId, id as ownerId, apply_time as turnaroundTime, '联合处置' as applyType,
        audit_unit_name as auditUnit, apply_status as auditStatus, audit_result_name as auditStatus,
        audit_time as auditTime, create_time, audit_result
        FROM dyh_case_assist_apply
        WHERE apply_unit_id = #{terms.applyUnitId}
        union all
        SELECT case_id as caseId, id as ownerId, apply_time as turnaroundTime, '司法确认' as applyType,
        handle_unit_name as auditUnit, status as auditStatus, judic_audit_name as auditStatus,
        audit_time as auditTime, create_time, judic_audit as audit_result
        FROM dyh_judic_info
        WHERE apply_unit_id = #{terms.applyUnitId}
        )t1 left join dyh_case_info t2 on t1.caseId = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        <where>
            <if test="terms.applyType != null and terms.applyType !=''">
                and t1.applyType = #{terms.applyType}
            </if>
            <if test="terms.auditStatus != null and terms.auditStatus !=''">
                and t1.audit_result = #{terms.auditResult}
            </if>
            <if test="terms.timeStart != null and terms.timeStart !='' and terms.timeEnd != null and terms.timeEnd !=''">
                and (DATE_FORMAT(t1.turnaroundTime,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.timeStart}
                and DATE_FORMAT(t1.turnaroundTime,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.timeEnd})
            </if>
            <if test="terms.partyName != null and terms.partyName !=''">
                and concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%')
            </if>
        </where>
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(t1.create_time), t1.create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
 
    <!-- web端-工作台-已办事项条件查询-条件 -->
    <sql id="myTaskYb-where-part">
        <if test="terms != null">
            <if test="terms.createTimeStart != null and terms.createTimeStart !='' and terms.createTimeEnd != null and terms.createTimeEnd !=''">
                and (DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.createTimeStart}
                and DATE_FORMAT(t1.create_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.createTimeEnd})
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <if test="terms.mediator != null and terms.mediator !=''">
                and t3.mediator like concat('%', #{terms.mediator}, '%')
            </if>
            <if test="terms.canal != null and terms.canal !=''">
                and t2.canal = #{terms.canal}
            </if>
            <if test="terms.mediResult != null and terms.mediResult !=''">
                and t3.medi_result = #{terms.mediResult}
            </if>
            <if test="terms.caseLevel != null and terms.caseLevel !=''">
                and t2.case_level = #{terms.caseLevel}
            </if>
            <if test="terms.caseType != null and terms.caseType !=''">
                and (t2.case_type = #{terms.caseType} or t2.case_type_first = #{terms.caseType})
            </if>
            <if test="terms.status != null and terms.status !=''">
                and t2.status = #{terms.status}
            </if>
            <if test="terms.nodeIdList != null and terms.nodeIdList.size > 0">
                and t1.node_id in
                <foreach collection="terms.nodeIdList" item="nodeId" index="index" open="(" separator="," close=")">
                    #{nodeId}
                </foreach>
            </if>
        </if>
    </sql>
    <!--  web端-工作台-已办事项条件统计  -->
    <select id="countMyTaskYb" resultType="java.lang.Long">
        SELECT count(DISTINCT t2.id)
        FROM dyh_case_task t1
        left join dyh_case_info t2 on t1.case_id = t2.id
        left join dyh_case_info_unfold t3 on t1.case_id = t3.id
        where t1.status = 2
        and t1.handle_unit_id = #{terms.handleUnitId}
        and t2.delete_status = 0
        <include refid="myTaskYb-where-part"/>
    </select>
    <!--  web端-工作台-已办事项分页查询  -->
    <select id="pageMyTaskYb" resultType="cn.huge.module.cases.domain.dto.FrontPageListYBDTO">
        SELECT t1.id as caseTaskId, t2.id as caseId, t1.create_time as createTime, t2.status_name as statusName,t1.handle_unit_name as handleUnitName,t1.handle_result as handleResult,
        t3.medi_result as mediResult, t3.medi_result_name as mediResultName, t3.mediator as mediator,t3.mediate_unit_name as mediateUnitName,t3.assist_unit_name as assistUnitName,
        t1.handle_time as handleTime, t2.case_level as caseLevel, t2.canal_name as canalName,t2.plaintiffs,t2.defendants,
        concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id) as superviseCount
        FROM dyh_case_task t1
        left join dyh_case_info t2 on t1.case_id = t2.id
        left join dyh_case_info_unfold t3 on t1.case_id = t3.id
        where t1.status = 2
        and t1.handle_unit_id = #{terms.handleUnitId}
        and t2.delete_status = 0
        <include refid="myTaskYb-where-part"/>
        group by t2.id
        <if test="page.sort != null">
            <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">
                isnull(${s.property}), ${s.property} ${s.direction}
            </foreach>
        </if>
        <if test="page.sort == null">
            order by isnull(t1.create_time), t1.create_time desc
        </if>
        limit #{page.offset}, #{page.size}
    </select>
 
    <!--  根据编号物理删除  -->
    <delete id="deleteByCaseId">
        delete from
        <include refid="table-name" />
        where case_id = #{caseId}
    </delete>
 
    <!-- FlowNodeBaseDTO结果集 -->
    <resultMap id="flowNodeBaseDTO" type="cn.huge.module.sys.dto.FlowNodeBaseDTO">
        <result property="id" column="id"/>
        <result property="flowId" column="flow_id"/>
        <result property="nodeId" column="node_id"/>
        <result property="nodeType" column="node_type"/>
        <result property="nodeName" column="node_name"/>
        <result property="nodeDes" column="node_des"/>
        <result property="nodeIcon" column="node_icon"/>
        <result property="apiType" column="api_type"/>
        <result property="api" column="api"/>
        <result property="expire" column="expire"/>
        <result property="operType" column="oper_type"/>
        <result property="operUserId" column="oper_user_id"/>
        <result property="operUserName" column="oper_user_name"/>
        <result property="operRodeCode" column="oper_rode_code"/>
        <result property="operRodeName" column="oper_rode_name"/>
        <result property="operDeptId" column="oper_dept_id"/>
        <result property="operDeptName" column="oper_dept_name"/>
        <result property="goCond" column="go_cond"/>
        <result property="backCond" column="back_cond"/>
        <result property="nodeIndex" column="node_index"/>
        <result property="deleteStatus" column="delete_status"/>
        <result property="custId" column="cust_id"/>
        <result property="createTime" column="create_time"/>
        <result property="updateTime" column="update_time"/>
    </resultMap>
    <!--  查询工作流节点  -->
    <select id="getNodeByFlowAndNode" resultMap="flowNodeBaseDTO">
        SELECT *
        from dyh_flow_node
        where flow_id = #{flowId}
          and node_id = #{nodeId}
    </select>
 
    <update id="deleteCaseTaskByCaseId">
        update dyh_case_task set delete_status = 1,update_time = #{updateTime} where case_id = #{caseId}
    </update>
 
    <sql id="where-select-task-all">
        <if test="terms != null">
            <if test="terms.caseType != null and terms.caseType !=''">
                and t2.case_type = #{terms.caseType}
            </if>
            <if test="terms.plaintiffs != null and terms.plaintiffs !=''">
                and t2.plaintiffs like concat('%', #{terms.plaintiffs}, '%')
            </if>
            <if test="terms.defendants != null and terms.defendants !=''">
                and t2.defendants like concat('%', #{terms.defendants}, '%')
            </if>
            <if test="terms.canal != null and terms.canal !=''">
                and t2.canal = #{terms.canal}
            </if>
            <if test="terms.caseStatus != null and terms.caseStatus !=''">
                and t2.status = #{terms.caseStatus}
            </if>
            <if test="terms.caseLevel != null and terms.caseLevel !=''">
                and t2.case_level = #{terms.caseLevel}
            </if>
            <if test="terms.mediResult != null and terms.mediResult !=''">
                and t3.medi_result = #{terms.mediResult}
            </if>
        </if>
    </sql>
 
    <sql id="select-task-all">
        SELECT
        t1.id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.create_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.handle_time as turnaroundTime,
        </if>
        t1.expire_time as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
        concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
        '' as taskType,
        <if test="terms.status != null and terms.status ==1">
            '待分派' as taskTypeName
        </if>
        <if test="terms.status != null and terms.status ==2">
            '已分派' as taskTypeName
        </if>
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DFP' or  t1.node_id = 'QJ_DFP' or  t1.node_id = 'SJ_DFP' or  t1.node_id = 'DFP')
        and t1.case_task_type = 1
        and t2.delete_status = 0
        and t1.status = #{terms.status}
        <if test="terms.status != null and terms.status ==1">
            and t1.cande_unit_id = #{terms.candeUnitId}
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.handle_unit_id = #{terms.candeUnitId}
        </if>
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT
        t1.id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.create_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.handle_time as turnaroundTime,
        </if>
        t1.expire_time as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
        concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
        '' as taskType,
        <if test="terms.status != null and terms.status ==1">
            '待受理' as taskTypeName
        </if>
        <if test="terms.status != null and terms.status ==2">
            '已受理' as taskTypeName
        </if>
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DSL' or t1.node_id = 'QJ_DSL' or t1.node_id = 'SJ_DSL' or t1.node_id = 'DSL')
        and t2.delete_status = 0
        and t1.status = 1
        <if test="terms.status != null and terms.status ==1">
            and t1.cande_unit_id = #{terms.candeUnitId}
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.handle_unit_id = #{terms.candeUnitId}
        </if>
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        <if test="terms.status != null and terms.status ==2">
            UNION ALL
            SELECT
            t1.case_task_id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
            t1.dis_time as turnaroundTime,
            null as timeLimit,
            t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
            concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
            concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
            (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
            '' as taskType,
            '不已受理' as taskTypeName
            FROM
            dyh_case_dismiss t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
            where t2.delete_status = 0
            and t1.dis_unit_id = #{terms.candeUnitId}
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.dis_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.dis_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <include refid="where-select-task-all"/>
        </if>
 
        <if test="terms.status != null and terms.status ==1">
            UNION ALL
            SELECT
            t1.id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
            t1.create_time as turnaroundTime,
            t1.expire_time as timeLimit,
            t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
            concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
            concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
            (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
            'sxbl' as taskType,
            '办理中' as taskTypeName
            FROM
            dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id
            left join dyh_case_info_unfold t3 on t1.case_id = t3.id
            where
            t1.node_id = 'BLFK'
            and t1.status = 1
            and t2.delete_status = 0
            and t1.cande_unit_id = #{terms.candeUnitId}
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <include refid="where-select-task-all"/>
            UNION ALL
            SELECT
            t1.case_task_id as ownerId, t1.case_id as caseId, t3.is_risk as isRisk,
            t1.apply_time as turnaroundTime,
            null as timeLimit,
            t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
            concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
            concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
            (select count(1) from dyh_case_supervise where case_id = t2.id and sup_status = 0) as superviseCount,
            'sxbl' as taskType,
            '结案申请' as taskTypeName
            FROM dyh_case_windup_apply t1 left join dyh_case_info t2 on t1.case_id = t2.id
            left join dyh_case_info_unfold t3 on t3.id = t2.id
            where
            t1.apply_status = 0
            and t2.delete_status = 0
            and (t1.apply_unit_id = #{terms.candeUnitId} or t3.assist_unit_id like concat('%', #{terms.candeUnitId}, '%'))
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.apply_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.apply_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <include refid="where-select-task-all"/>
        </if>
        <if test="terms.status != null and terms.status ==2">
            UNION ALL
            SELECT
            t3.case_task_id as ownerId, t1.id as caseId, t2.is_risk as isRisk,
            t2.close_time as turnaroundTime,
            null as timeLimit,
            t1.case_level as caseGrade, t1.canal_name as caseSource, concat_ws('', ifnull(t1.case_type_first_name, ''), '/' , ifnull(t1.case_type_name, '')) as caseType,
            concat_ws('', ifnull(t1.plaintiffs, ''), ifnull(t1.pagents, '')) as plaintiffs,
            concat_ws('', ifnull(t1.defendants, ''), ifnull(t1.dagents, '')) as defendants,
            (select count(1) from dyh_case_supervise where case_id = t1.id and sup_status = 0) as superviseCount,
            'sxbl' as taskType,
            '已结案' as taskTypeName
            from dyh_case_info t1
            left join dyh_case_info_unfold t2 on t1.id = t2.id
            left join dyh_case_windup_apply t3 on t1.id = t3.case_id
            where t1.process in (5, 6)
            and t1.delete_status = 0
            and (t2.mediate_unit_id = #{terms.candeUnitId} or t2.assist_unit_id like concat('%', #{terms.candeUnitId}, '%'))
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t1.plaintiffs, ''), ifnull(t1.pagents, ''), ifnull(t1.defendants, ''), ifnull(t1.dagents, '')) like concat('%', #{terms.partyName}, '%') or t1.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.caseType != null and terms.caseType !=''">
                and t1.case_type = #{terms.caseType}
            </if>
            <if test="terms.plaintiffs != null and terms.plaintiffs !=''">
                and t1.plaintiffs like concat('%', #{terms.plaintiffs}, '%')
            </if>
            <if test="terms.defendants != null and terms.defendants !=''">
                and t1.defendants like concat('%', #{terms.defendants}, '%')
            </if>
            <if test="terms.canal != null and terms.canal !=''">
                and t1.canal = #{terms.canal}
            </if>
            <if test="terms.caseStatus != null and terms.caseStatus !=''">
                and t1.status = #{terms.caseStatus}
            </if>
            <if test="terms.caseLevel != null and terms.caseLevel !=''">
                and t1.case_level = #{terms.caseLevel}
            </if>
            <if test="terms.mediResult != null and terms.mediResult !=''">
                and t2.medi_result = #{terms.mediResult}
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t2.close_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t2.close_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
        </if>
        UNION ALL
        SELECT
        t1.case_task_id as ownerId, t1.case_id as caseId,t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.return_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.audit_time as turnaroundTime,
        </if>
        null as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
        'htsh' as taskType,
        <if test="terms.status != null and terms.status ==1">
            '待审核' as taskTypeName
        </if>
        <if test="terms.status != null and terms.status ==2">
            '已审核' as taskTypeName
        </if>
        FROM
        dyh_case_return t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        <if test="terms.status != null and terms.status ==1">
            and t1.return_status = 0
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.return_status = 1
        </if>
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.case_task_id as ownerId, t1.case_id as caseId,t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.appear_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.audit_time as turnaroundTime,
        </if>
        null as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
        'sbsh' as taskType,
        <if test="terms.status != null and terms.status ==1">
            '待审核' as taskTypeName
        </if>
        <if test="terms.status != null and terms.status ==2">
            '已审核' as taskTypeName
        </if>
        FROM
        dyh_case_appear t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        <if test="terms.status != null and terms.status ==1">
            and t1.apply_status = 0
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.apply_status = 1
        </if>
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.case_task_id as ownerId, t1.case_id as caseId,t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.apply_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.audit_time as turnaroundTime,
        </if>
        null as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource,
        concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType, concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
        concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
        'jash' as taskType,
        <if test="terms.status != null and terms.status ==1">
            '待审核' as taskTypeName
        </if>
        <if test="terms.status != null and terms.status ==2">
            '已审核' as taskTypeName
        </if>
        FROM
        dyh_case_windup_apply t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        <if test="terms.status != null and terms.status ==1">
            and t1.apply_status = 0
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.apply_status = 1
        </if>
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.id as ownerId, t1.case_id as CaseId, t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.apply_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.audit_time as turnaroundTime,
        </if>
        null as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource, concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType,
        concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs, concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        (select count(1) from dyh_case_supervise where case_id = t1.case_id and sup_status = 0) as superviseCount,
        'lhczsh' as taskType,
        <if test="terms.status != null and terms.status ==1">
            '待审核' as taskTypeName
        </if>
        <if test="terms.status != null and terms.status ==2">
            '已审核' as taskTypeName
        </if>
        FROM
        dyh_case_assist_apply t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        <if test="terms.status != null and terms.status ==1">
            and t1.apply_status = 0
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.apply_status = 1
        </if>
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.id as ownerId, t1.case_id as caseId,t3.is_risk as isRisk,
        <if test="terms.status != null and terms.status ==1">
            t1.sup_time as turnaroundTime,
        </if>
        <if test="terms.status != null and terms.status ==2">
            t1.reply_time as turnaroundTime,
        </if>
        DATEADD(hour, t1.reply_term, t1.sup_time) as timeLimit,
        t2.case_level as caseGrade, t2.canal_name as caseSource,
        concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType, concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
        concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
        0 as superviseCount,
        '' as taskType,
        '督办' as taskTypeName
        FROM
        dyh_case_supervise t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        <if test="terms.status != null and terms.status ==1">
            and t1.sup_status = 0
        </if>
        <if test="terms.status != null and terms.status ==2">
            and t1.sup_status = 1
        </if>
        and t1.quilt_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.reply_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.reply_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        <if test="terms.status != null and terms.status ==2">
            UNION ALL
            SELECT t1.id as ownerId, t1.case_id as caseId,t3.is_risk as isRisk,
            t1.sup_time as turnaroundTime,
            DATEADD(hour, t1.reply_term, t1.sup_time) as timeLimit,
            t2.case_level as caseGrade, t2.canal_name as caseSource,
            concat_ws('', ifnull(t2.case_type_first_name, ''), '/' , ifnull(t2.case_type_name, '')) as caseType, concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, '')) as plaintiffs,
            concat_ws('', ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) as defendants,
            0 as superviseCount,
            '' as taskType,
            '督办' as taskTypeName
            FROM
            dyh_case_supervise t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
            where
            t1.delete_status = 0
            and t1.sup_unit_id = #{terms.candeUnitId}
            <if test="terms.partyName != null and terms.partyName !=''">
                and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
            </if>
            <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
                and (DATE_FORMAT(t1.sup_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
                and DATE_FORMAT(t1.sup_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
            </if>
            <include refid="where-select-task-all"/>
        </if>
    </sql>
 
    <select id="pageMyTaskAll" resultType="cn.huge.module.cases.domain.dto.FrontPageListAllDTO">
        select * from
        (<include refid="select-task-all"/>) t where 1=1
        order by isnull(t.turnaroundTime), t.turnaroundTime desc
        limit #{page.offset}, #{page.size}
    </select>
 
    <select id="countMyTaskAll" resultType="java.lang.Long">
        select count(1) from
        (<include refid="select-task-all"/>) t
    </select>
 
    <select id="countYbDispatch" resultType="java.lang.Long">
        select count(1) from
        (SELECT
        t1.id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DFP' or  t1.node_id = 'QJ_DFP' or  t1.node_id = 'SJ_DFP' or  t1.node_id = 'DFP')
        and t1.case_task_type = 1
        and t2.delete_status = 0
        and t1.status = #{terms.status}
        and t1.handle_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        ) t
    </select>
 
    <select id="countYbAccept" resultType="java.lang.Long">
        select count(1) from
        (SELECT
        t1.id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_task t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        (t1.node_id = 'ZJ_DSL' or t1.node_id = 'QJ_DSL' or t1.node_id = 'SJ_DSL' or t1.node_id = 'DSL')
        and t2.delete_status = 0
        and t1.status = 1
        and t1.handle_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.handle_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT
        t1.case_task_id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_dismiss t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where t2.delete_status = 0
        and t1.dis_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.dis_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.dis_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        ) t
    </select>
 
    <select id="countYbClosed" resultType="java.lang.Long">
        select count(1) from
        (SELECT
        t3.case_task_id as ownerId, t1.id as caseId
        from dyh_case_info t1
        left join dyh_case_info_unfold t2 on t1.id = t2.id
        left join dyh_case_windup_apply t3 on t1.id = t3.case_id
        where t1.process in (5, 6)
        and t1.delete_status = 0
        and (t2.mediate_unit_id = #{terms.candeUnitId} or t2.assist_unit_id like concat('%', #{terms.candeUnitId}, '%'))
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t1.plaintiffs, ''), ifnull(t1.pagents, ''), ifnull(t1.defendants, ''), ifnull(t1.dagents, '')) like concat('%', #{terms.partyName}, '%') or t1.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t2.close_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t2.close_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <if test="terms.caseType != null and terms.caseType !=''">
            and t1.case_type = #{terms.caseType}
        </if>
        <if test="terms.plaintiffs != null and terms.plaintiffs !=''">
            and t1.plaintiffs like concat('%', #{terms.plaintiffs}, '%')
        </if>
        <if test="terms.defendants != null and terms.defendants !=''">
            and t1.defendants like concat('%', #{terms.defendants}, '%')
        </if>
        <if test="terms.canal != null and terms.canal !=''">
            and t1.canal = #{terms.canal}
        </if>
        <if test="terms.caseStatus != null and terms.caseStatus !=''">
            and t1.status = #{terms.caseStatus}
        </if>
        <if test="terms.caseLevel != null and terms.caseLevel !=''">
            and t1.case_level = #{terms.caseLevel}
        </if>
        <if test="terms.mediResult != null and terms.mediResult !=''">
            and t2.medi_result = #{terms.mediResult}
        </if>
        ) t
    </select>
 
    <select id="countYbAudit" resultType="java.lang.Long">
        select count(1) from
        (
        SELECT
        t1.case_task_id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_return t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        and t1.return_status = 1
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.case_task_id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_appear t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        and t1.apply_status = 1
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.case_task_id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_windup_apply t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        and t1.apply_status = 1
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.id as ownerId, t1.case_id as CaseId
        FROM
        dyh_case_assist_apply t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        and t1.apply_status = 1
        and t1.audit_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.audit_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        ) t
    </select>
    <select id="countYbSupervise" resultType="java.lang.Long">
        select count(1) from
        (
        SELECT t1.id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_supervise t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        and t1.sup_status = 1
        and t1.quilt_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.reply_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.reply_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        UNION ALL
        SELECT t1.id as ownerId, t1.case_id as caseId
        FROM
        dyh_case_supervise t1 left join dyh_case_info t2 on t1.case_id = t2.id left join dyh_case_info_unfold t3 on t2.id = t3.id
        where
        t1.delete_status = 0
        and t1.sup_unit_id = #{terms.candeUnitId}
        <if test="terms.partyName != null and terms.partyName !=''">
            and (concat_ws('', ifnull(t2.plaintiffs, ''), ifnull(t2.pagents, ''), ifnull(t2.defendants, ''), ifnull(t2.dagents, '')) like concat('%', #{terms.partyName}, '%') or t2.case_ref like concat('%', #{terms.partyName}, '%'))
        </if>
        <if test="terms.handleTimeStart != null and terms.handleTimeStart !='' and terms.handleTimeEnd != null and terms.handleTimeEnd !=''">
            and (DATE_FORMAT(t1.sup_time,'%Y-%m-%d') <![CDATA[ >= ]]> #{terms.handleTimeStart}
            and DATE_FORMAT(t1.sup_time,'%Y-%m-%d') <![CDATA[ <= ]]> #{terms.handleTimeEnd})
        </if>
        <include refid="where-select-task-all"/>
        ) t
    </select>
 
</mapper>