xiangpei
2024-05-15 09135e31580c89fa86ba760904dca6d88f98c040
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
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
2023-08-02 09:02:25.431  INFO 10424 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 10424 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 09:02:25.434  INFO 10424 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 09:02:25.497  INFO 10424 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 09:02:25.497  INFO 10424 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 09:02:29.284  INFO 10424 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$76bd3511] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 09:02:29.689  WARN 10424 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 09:02:29.721  INFO 10424 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 09:02:29.721  INFO 10424 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 4222 ms
2023-08-02 09:02:31.581  INFO 10424 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 09:02:31.798  INFO 10424 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2c1ba447, org.springframework.security.web.context.SecurityContextPersistenceFilter@21881a4a, org.springframework.security.web.header.HeaderWriterFilter@29504c38, org.springframework.web.filter.CorsFilter@7f775c0, org.springframework.security.web.authentication.logout.LogoutFilter@4712c8c6, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@10c97cdc, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@2dfb499f, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7b0ed516, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@8356625, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@49ad5d76, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7314db2b, org.springframework.security.web.session.SessionManagementFilter@790b646, org.springframework.security.web.access.ExceptionTranslationFilter@55fb6dec, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5c412214]
2023-08-02 09:02:31.830  INFO 10424 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 09:02:32.378  INFO 10424 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 09:02:32.404  INFO 10424 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 09:02:32.460  INFO 10424 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 09:02:32.686  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 09:02:32.721  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 09:02:32.740  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 09:02:32.749  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 09:02:32.753  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 09:02:32.789  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 09:02:32.800  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 09:02:32.828  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 09:02:32.832  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 09:02:32.834  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 09:02:32.849  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 09:02:32.854  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 09:02:32.864  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 09:02:32.866  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 09:02:32.867  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 09:02:32.870  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 09:02:32.871  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 09:02:32.877  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 09:02:32.879  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 09:02:32.882  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 09:02:32.891  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 09:02:32.899  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 09:02:32.911  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 09:02:32.913  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 09:02:32.921  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 09:02:32.931  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 09:02:32.935  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 09:02:32.938  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 09:02:32.940  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 09:02:32.968  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 09:02:32.971  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 09:02:32.975  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 09:02:32.978  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 09:02:32.984  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 09:02:32.987  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 09:02:32.995  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 09:02:32.995  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 09:02:32.996  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 09:02:32.997  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 09:02:32.997  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 09:02:32.998  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 09:02:32.998  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 09:02:32.999  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 09:02:33.020  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 09:02:33.027  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 09:02:33.033  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 09:02:33.035  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 09:02:33.038  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 09:02:33.046  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 09:02:33.052  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 09:02:33.053  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 09:02:33.057  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 09:02:33.059  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 09:02:33.061  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 09:02:33.063  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 09:02:33.064  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 09:02:33.066  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 09:02:33.067  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 09:02:33.069  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 09:02:33.070  INFO 10424 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 09:02:33.164  INFO 10424 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 09:02:33.183  INFO 10424 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 09:02:33.276  INFO 10424 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 09:02:33.281  INFO 10424 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 8.532 seconds (JVM running for 14.33)
2023-08-02 09:04:29.220  INFO 10424 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 09:04:29.221  INFO 10424 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 09:04:29.239  INFO 10424 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 18 ms
2023-08-02 09:04:29.319  INFO 10424 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:04:29.360  INFO 10424 --- [XNIO-1 task-5] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 09:04:37.498  INFO 10424 --- [XNIO-1 task-5] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 09:04:37.511 DEBUG 10424 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:04:37.548 DEBUG 10424 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:04:37.595 DEBUG 10424 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:04:46.783 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:04:46.785 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:04:46.800 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:04:47.648 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:04:47.648 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:04:47.661 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:04:47.704 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 09:04:47.709 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登录了考试系统(String), 2023-08-02 09:04:47.662(Timestamp)
2023-08-02 09:04:47.742 DEBUG 10424 --- [XNIO-1 task-8] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 09:04:47.849  INFO 10424 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:04:47.865 DEBUG 10424 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:04:47.865 DEBUG 10424 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:04:47.876 DEBUG 10424 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:04:47.887 DEBUG 10424 --- [XNIO-1 task-9] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:04:47.887 DEBUG 10424 --- [XNIO-1 task-9] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:04:47.901 DEBUG 10424 --- [XNIO-1 task-9] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:04:48.150  INFO 10424 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:04:48.151  INFO 10424 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:04:48.151  INFO 10424 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:04:48.151 DEBUG 10424 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:04:48.152 DEBUG 10424 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:04:48.164 DEBUG 10424 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:04:48.165 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:04:48.166 DEBUG 10424 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:04:48.166 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:04:48.167 DEBUG 10424 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:04:48.179 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:04:48.180 DEBUG 10424 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:04:48.195 DEBUG 10424 --- [XNIO-1 task-12] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:04:48.196 DEBUG 10424 --- [XNIO-1 task-12] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:04:48.205 DEBUG 10424 --- [XNIO-1 task-12] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:04:48.218 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:04:48.219 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:04:48.231 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:04:48.234 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) ORDER BY e.id desc ) t 
2023-08-02 09:04:48.235 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:04:48.233(Timestamp), 1028(Integer), 4(Integer)
2023-08-02 09:04:48.244 DEBUG 10424 --- [XNIO-1 task-11] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:06:25.324  INFO 10424 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:06:25.331 DEBUG 10424 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:06:25.332 DEBUG 10424 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:06:25.340 DEBUG 10424 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:06:35.899 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:35.900 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:06:35.911 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:35.916 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:35.917 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:06:35.928 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:35.929 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 09:06:35.930 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登录了考试系统(String), 2023-08-02 09:06:35.928(Timestamp)
2023-08-02 09:06:35.960 DEBUG 10424 --- [XNIO-1 task-18] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 09:06:36.125  INFO 10424 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:06:36.125 DEBUG 10424 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:36.125 DEBUG 10424 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:06:36.138 DEBUG 10424 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:36.140 DEBUG 10424 --- [XNIO-1 task-19] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:06:36.141 DEBUG 10424 --- [XNIO-1 task-19] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:06:36.150 DEBUG 10424 --- [XNIO-1 task-19] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:06:36.299  INFO 10424 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:06:36.299  INFO 10424 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:06:36.299  INFO 10424 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:06:36.299 DEBUG 10424 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:36.300 DEBUG 10424 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:06:36.308 DEBUG 10424 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:36.308 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:36.308 DEBUG 10424 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:06:36.308 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:06:36.310 DEBUG 10424 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:36.311 DEBUG 10424 --- [XNIO-1 task-22] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:06:36.311 DEBUG 10424 --- [XNIO-1 task-22] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:06:36.319 DEBUG 10424 --- [XNIO-1 task-22] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:06:36.320 DEBUG 10424 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:36.320 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:36.321 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:06:36.323 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:06:36.332 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:06:36.336 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) ORDER BY e.id desc ) t 
2023-08-02 09:06:36.337 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:06:36.332(Timestamp), 1028(Integer), 4(Integer)
2023-08-02 09:06:36.346 DEBUG 10424 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:06:45.149 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:45.150 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:06:45.159 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:45.163 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:06:45.164 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:06:45.172 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:06:45.173 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 09:06:45.174 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-08-02 09:06:45.172(Timestamp)
2023-08-02 09:06:45.198 DEBUG 10424 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 09:06:45.394  INFO 10424 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-08-02 09:06:45.396 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-08-02 09:06:45.397 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 09:06:45.404 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 09:06:45.410 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-08-02 09:06:45.411 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-08-02 09:06:45.418 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-08-02 09:06:45.425 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-08-02 09:06:45.425 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 09:06:45.434 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 09:06:45.435 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-08-02 09:06:45.435 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 09:06:45.443 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 09:06:45.450 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 09:06:45.450 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 09:06:45.462 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.U.selectCountByDate            : <==      Total: 2
2023-08-02 09:06:45.464 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 09:06:45.465 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 09:06:45.476 DEBUG 10424 --- [XNIO-1 task-24] r.c.m.x.r.E.selectCountByDate            : <==      Total: 1
2023-08-02 09:06:48.426  INFO 10424 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:06:48.437 DEBUG 10424 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:06:48.437 DEBUG 10424 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:06:48.450 DEBUG 10424 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:06:48.773  INFO 10424 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-02 09:06:48.820 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-02 09:06:48.820 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-02 09:06:48.830 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-02 09:06:48.835 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 09:06:48.836 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-02 09:06:48.846 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 7
2023-08-02 09:06:48.849 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.850 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:06:48.858 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:06:48.862 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.862 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-02 09:06:48.870 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:06:48.870 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.871 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-02 09:06:48.878 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:06:48.881 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.881 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-02 09:06:48.889 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:06:48.889 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.891 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-02 09:06:48.898 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:06:48.899 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.899 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-02 09:06:48.908 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:06:48.909 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:48.910 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-02 09:06:48.917 DEBUG 10424 --- [XNIO-1 task-26] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:06:52.423  INFO 10424 --- [XNIO-1 task-27] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:06:52.425  INFO 10424 --- [XNIO-1 task-29] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-08-02 09:06:52.429 DEBUG 10424 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:06:52.429 DEBUG 10424 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:06:52.433 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:06:52.433 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:06:52.438 DEBUG 10424 --- [XNIO-1 task-27] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:06:52.441 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:06:52.443 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:06:52.443 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-08-02 09:06:52.452 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-02 09:06:52.452 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:06:52.453 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-08-02 09:06:52.476  INFO 10424 --- [XNIO-1 task-28] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/select/147
2023-08-02 09:06:52.477 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:06:52.477 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 147(Integer)
2023-08-02 09:06:52.492 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-08-02 09:06:52.492 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.492 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:06:52.493 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-08-02 09:06:52.495 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:06:52.495 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 601(Integer)
2023-08-02 09:06:52.502 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-02 09:06:52.502 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:06:52.503 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 18(Integer)
2023-08-02 09:06:52.505 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.511 DEBUG 10424 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1
2023-08-02 09:06:52.518 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 09:06:52.518 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 427(Integer), 430(Integer), 428(Integer), 431(Integer), 429(Integer)
2023-08-02 09:06:52.533 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 09:06:52.541 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:06:52.542 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:06:52.551 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.559 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:06:52.560 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:06:52.567 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.569 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:06:52.570 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:06:52.578 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.580 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:06:52.580 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:06:52.587 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.592 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:06:52.592 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:06:52.601 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:06:52.602 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:52.602 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:06:52.610 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:06:52.612 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:52.612 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:06:52.622 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:06:52.624 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:06:52.624 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:06:52.632 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:06:52.634 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 09:06:52.634 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 09:06:52.642 DEBUG 10424 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 09:07:26.501  INFO 10424 --- [XNIO-1 task-30] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/edit
2023-08-02 09:07:26.508 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:07:26.509 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:07:26.519 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:07:26.549 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:07:26.550 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.558 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.559 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.559 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 601(Integer)
2023-08-02 09:07:26.568 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.568 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-08-02 09:07:26.569 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"123","questionItems":[{"id":430,"itemOrder":1},{"id":427,"itemOrder":2},{"id":431,"itemOrder":3},{"id":428,"itemOrder":4},{"id":429,"itemOrder":5}]}](String), 2023-08-01 15:31:13.0(Timestamp), 601(Integer)
2023-08-02 09:07:26.584 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-08-02 09:07:26.593 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, paper_type = ?, score = ?, question_count = ?, suggest_time = ?, limit_start_time = ?, limit_end_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ? where id = ? 
2023-08-02 09:07:26.594 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: 测试时间(String), 4(Integer), 200(Integer), 5(Integer), 12(Integer), 2023-08-01 00:00:00.0(Timestamp), 2023-08-02 09:10:00.0(Timestamp), 601(Integer), 2(Integer), 2023-08-01 15:31:13.0(Timestamp), false(Boolean), 147(Integer)
2023-08-02 09:07:26.610 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-08-02 09:07:26.610 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : ==>  Preparing: delete from t_exam_paper_department where exam_paper_id = ? 
2023-08-02 09:07:26.610 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.625 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : <==    Updates: 0
2023-08-02 09:07:26.626 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : ==>  Preparing: delete from t_exam_paper_subject where exam_paper_id = ? 
2023-08-02 09:07:26.626 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.641 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : <==    Updates: 2
2023-08-02 09:07:26.642 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:26.642 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.651 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:26.651 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : ==>  Preparing: delete from t_exam_paper_user where exam_paper_id = ? 
2023-08-02 09:07:26.651 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.666 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.removeByExamPaperId          : <==    Updates: 1
2023-08-02 09:07:26.673 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-08-02 09:07:26.673 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 147(Integer), 1028(Integer), 0(String)
2023-08-02 09:07:26.688 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-08-02 09:07:26.695 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:26.696 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.704 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:07:26.705 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) , (?,?,?,?) 
2023-08-02 09:07:26.706 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 147(Integer), 0(String), null, 21(Integer), 147(Integer), 0(String)
2023-08-02 09:07:26.721 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 2
2023-08-02 09:07:26.751 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:07:26.751 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.760 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.761 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.761 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 601(Integer)
2023-08-02 09:07:26.769 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.772 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 09:07:26.772 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-02 09:07:26.781 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 09:07:26.784 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.784 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:07:26.793 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.794 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.795 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:07:26.804 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.805 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.805 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:07:26.814 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.815 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.815 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:07:26.823 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.824 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:07:26.825 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:07:26.832 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:07:26.834 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:26.834 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.842 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:07:26.843 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:26.843 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.851 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:07:26.851 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:26.852 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:07:26.860 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:26.860 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 09:07:26.860 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 09:07:26.868 DEBUG 10424 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 09:07:27.437  INFO 10424 --- [XNIO-1 task-31] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:07:27.445 DEBUG 10424 --- [XNIO-1 task-31] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:07:27.445 DEBUG 10424 --- [XNIO-1 task-31] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:07:27.453 DEBUG 10424 --- [XNIO-1 task-31] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:07:27.740  INFO 10424 --- [XNIO-1 task-32] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-02 09:07:27.742 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-02 09:07:27.742 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-02 09:07:27.758 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-02 09:07:27.761 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 09:07:27.763 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-02 09:07:27.774 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 7
2023-08-02 09:07:27.775 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.775 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:07:27.784 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:07:27.786 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.786 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-02 09:07:27.795 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:07:27.796 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.796 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-02 09:07:27.804 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:27.806 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.807 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-02 09:07:27.815 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:27.816 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.816 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-02 09:07:27.824 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:27.825 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.825 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-02 09:07:27.833 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:27.835 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:07:27.835 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-02 09:07:27.842 DEBUG 10424 --- [XNIO-1 task-32] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:07:33.129  INFO 10424 --- [XNIO-1 task-33] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:07:33.138 DEBUG 10424 --- [XNIO-1 task-33] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:07:33.139 DEBUG 10424 --- [XNIO-1 task-33] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:07:33.146 DEBUG 10424 --- [XNIO-1 task-33] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:07:33.162  INFO 10424 --- [XNIO-1 task-35] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:07:33.163  INFO 10424 --- [XNIO-1 task-34] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:07:33.163 DEBUG 10424 --- [XNIO-1 task-34] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:07:33.163 DEBUG 10424 --- [XNIO-1 task-34] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:07:33.175 DEBUG 10424 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:07:33.175 DEBUG 10424 --- [XNIO-1 task-34] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:07:33.175 DEBUG 10424 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:07:33.175 DEBUG 10424 --- [XNIO-1 task-34] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:07:33.176 DEBUG 10424 --- [XNIO-1 task-34] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:07:33.184 DEBUG 10424 --- [XNIO-1 task-34] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:07:33.185 DEBUG 10424 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:07:33.187  INFO 10424 --- [XNIO-1 task-37] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:07:33.187  INFO 10424 --- [XNIO-1 task-36] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:07:33.188 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:07:33.188 DEBUG 10424 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:07:33.188 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:07:33.188 DEBUG 10424 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:07:33.198 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:07:33.198 DEBUG 10424 --- [XNIO-1 task-37] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:07:33.199 DEBUG 10424 --- [XNIO-1 task-37] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:07:33.199 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:07:33.199 DEBUG 10424 --- [XNIO-1 task-37] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:07:33.199 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:07:33.208 DEBUG 10424 --- [XNIO-1 task-37] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:07:33.208 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:07:33.210 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) ORDER BY e.id desc ) t 
2023-08-02 09:07:33.210 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:07:33.208(Timestamp), 1028(Integer), 4(Integer)
2023-08-02 09:07:33.218 DEBUG 10424 --- [XNIO-1 task-36] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:31:10.592  INFO 10424 --- [XNIO-1 task-40] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:31:10.592  INFO 10424 --- [XNIO-1 task-41] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:31:10.592  INFO 10424 --- [XNIO-1 task-38] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:31:10.592  INFO 10424 --- [XNIO-1 task-39] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:31:10.601 DEBUG 10424 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:31:10.601 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:31:10.601 DEBUG 10424 --- [XNIO-1 task-38] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:31:10.601 DEBUG 10424 --- [XNIO-1 task-38] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:31:10.601 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:31:10.601 DEBUG 10424 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:31:10.603 DEBUG 10424 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:31:10.603 DEBUG 10424 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:31:10.609 DEBUG 10424 --- [XNIO-1 task-38] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:31:10.613 DEBUG 10424 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:31:10.613 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:31:10.614 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:31:10.614 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:31:10.617 DEBUG 10424 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:31:10.617 DEBUG 10424 --- [XNIO-1 task-39] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:31:10.617 DEBUG 10424 --- [XNIO-1 task-39] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:31:10.624 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:31:10.625 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) ORDER BY e.id desc ) t 
2023-08-02 09:31:10.626 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:31:10.625(Timestamp), 1028(Integer), 4(Integer)
2023-08-02 09:31:10.626 DEBUG 10424 --- [XNIO-1 task-39] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:31:10.635 DEBUG 10424 --- [XNIO-1 task-41] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:31:10.870  INFO 10424 --- [XNIO-1 task-42] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:31:10.871 DEBUG 10424 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:31:10.871 DEBUG 10424 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:31:10.881 DEBUG 10424 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:31:10.881 DEBUG 10424 --- [XNIO-1 task-42] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:31:10.882 DEBUG 10424 --- [XNIO-1 task-42] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:31:10.891 DEBUG 10424 --- [XNIO-1 task-42] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:42:53.894  INFO 10424 --- [Thread-26] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 09:42:53.914  INFO 10424 --- [Thread-26] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 09:42:53.927  INFO 10424 --- [Thread-26] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 09:43:01.674  INFO 19320 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 19320 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 09:43:01.677  INFO 19320 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 09:43:01.733  INFO 19320 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 09:43:01.735  INFO 19320 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 09:43:03.584  INFO 19320 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$832e3b1c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 09:43:04.005  WARN 19320 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 09:43:04.034  INFO 19320 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 09:43:04.060  INFO 19320 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2325 ms
2023-08-02 09:43:05.682  INFO 19320 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 09:43:05.891  INFO 19320 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@108d27e4, org.springframework.security.web.context.SecurityContextPersistenceFilter@3edb37bc, org.springframework.security.web.header.HeaderWriterFilter@78d8f0ae, org.springframework.web.filter.CorsFilter@4fcee873, org.springframework.security.web.authentication.logout.LogoutFilter@614972bc, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@5b79da8b, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@2840518b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@21d6d87d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1761dfd7, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@615c0175, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6d4de01c, org.springframework.security.web.session.SessionManagementFilter@5fae2065, org.springframework.security.web.access.ExceptionTranslationFilter@1aca115e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@184975c6]
2023-08-02 09:43:05.921  INFO 19320 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 09:43:06.379  INFO 19320 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 09:43:06.399  INFO 19320 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 09:43:06.438  INFO 19320 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 09:43:06.611  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 09:43:06.650  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 09:43:06.671  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 09:43:06.681  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 09:43:06.687  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 09:43:06.724  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 09:43:06.735  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 09:43:06.758  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 09:43:06.763  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 09:43:06.765  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 09:43:06.780  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 09:43:06.784  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 09:43:06.786  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 09:43:06.796  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 09:43:06.802  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 09:43:06.803  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 09:43:06.807  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 09:43:06.809  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 09:43:06.811  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 09:43:06.813  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 09:43:06.822  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 09:43:06.830  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 09:43:06.841  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 09:43:06.843  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 09:43:06.849  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 09:43:06.858  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 09:43:06.861  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 09:43:06.863  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 09:43:06.865  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 09:43:06.888  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 09:43:06.891  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 09:43:06.893  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 09:43:06.909  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 09:43:06.919  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 09:43:06.924  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 09:43:06.931  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 09:43:06.931  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 09:43:06.932  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 09:43:06.933  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 09:43:06.933  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 09:43:06.934  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 09:43:06.935  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 09:43:06.935  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 09:43:06.952  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 09:43:06.958  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 09:43:06.964  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 09:43:06.965  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 09:43:06.969  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 09:43:06.977  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 09:43:06.983  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 09:43:06.985  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 09:43:06.990  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 09:43:06.993  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 09:43:06.994  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 09:43:06.996  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 09:43:06.997  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 09:43:07.000  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 09:43:07.001  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 09:43:07.003  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 09:43:07.006  INFO 19320 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 09:43:07.089  INFO 19320 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 09:43:07.104  INFO 19320 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 09:43:07.198  INFO 19320 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 09:43:07.204  INFO 19320 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.237 seconds (JVM running for 7.669)
2023-08-02 09:43:17.856  INFO 19320 --- [XNIO-1 task-2] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 09:43:17.856  INFO 19320 --- [XNIO-1 task-2] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 09:43:17.866  INFO 19320 --- [XNIO-1 task-2] o.s.web.servlet.DispatcherServlet        : Completed initialization in 10 ms
2023-08-02 09:43:17.920  INFO 19320 --- [XNIO-1 task-2] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:43:17.920  INFO 19320 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:43:17.952  INFO 19320 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 09:43:18.205  INFO 19320 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 09:43:18.214 DEBUG 19320 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:43:18.241 DEBUG 19320 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:43:18.270 DEBUG 19320 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:43:18.275 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:18.277 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:18.288 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:18.314 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:43:18.314 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:43:18.325 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:43:18.326 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 09:43:18.329 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:43:18.326(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 09:43:18.326(Timestamp)
2023-08-02 09:43:18.339 DEBUG 19320 --- [XNIO-1 task-2] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 09:43:23.057 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:23.058 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:23.069 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:23.414 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:23.414 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:23.425 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:23.427 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 09:43:23.428 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登录了考试系统(String), 2023-08-02 09:43:23.426(Timestamp)
2023-08-02 09:43:23.455 DEBUG 19320 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 09:43:23.489  INFO 19320 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:43:23.493 DEBUG 19320 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:23.494 DEBUG 19320 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:23.505 DEBUG 19320 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:23.508 DEBUG 19320 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:43:23.508 DEBUG 19320 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:43:23.519 DEBUG 19320 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:43:23.813  INFO 19320 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:43:23.813  INFO 19320 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:43:23.813  INFO 19320 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:43:23.813 DEBUG 19320 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:23.814 DEBUG 19320 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:23.822 DEBUG 19320 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:23.822 DEBUG 19320 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:23.822 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:23.823 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:43:23.825 DEBUG 19320 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:23.836 DEBUG 19320 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:23.836 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:23.838 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:43:23.839 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:43:23.839 DEBUG 19320 --- [XNIO-1 task-10] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:43:23.841 DEBUG 19320 --- [XNIO-1 task-10] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:43:23.849 DEBUG 19320 --- [XNIO-1 task-10] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:43:23.849 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:43:23.851 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 09:43:23.852 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:43:23.849(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 09:43:23.849(Timestamp)
2023-08-02 09:43:23.864 DEBUG 19320 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 09:43:36.740 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:36.742 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:43:36.754 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:36.760 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:36.761 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:43:36.772 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:36.774 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 09:43:36.774 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-08-02 09:43:36.773(Timestamp)
2023-08-02 09:43:36.800 DEBUG 19320 --- [XNIO-1 task-14] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 09:43:36.962  INFO 19320 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-08-02 09:43:36.965 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-08-02 09:43:36.966 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 09:43:36.974 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 09:43:36.978 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-08-02 09:43:36.978 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-08-02 09:43:36.988 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-08-02 09:43:36.992 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-08-02 09:43:36.992 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 09:43:37.000 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 09:43:37.001 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-08-02 09:43:37.001 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 09:43:37.010 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 09:43:37.027 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 09:43:37.028 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 09:43:37.039 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.U.selectCountByDate            : <==      Total: 2
2023-08-02 09:43:37.041 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 09:43:37.042 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 09:43:37.051 DEBUG 19320 --- [XNIO-1 task-15] r.c.m.x.r.E.selectCountByDate            : <==      Total: 1
2023-08-02 09:43:39.659  INFO 19320 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:43:39.671 DEBUG 19320 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:43:39.671 DEBUG 19320 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:43:39.681 DEBUG 19320 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:43:40.007  INFO 19320 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-08-02 09:43:40.008 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:43:40.009 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:43:40.018 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:43:40.019 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:43:40.019 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-08-02 09:43:40.028 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-02 09:43:40.029 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:43:40.029 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-08-02 09:43:40.033  INFO 19320 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/select/147
2023-08-02 09:43:40.044 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:43:40.045 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 147(Integer)
2023-08-02 09:43:40.055 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.060 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:40.060 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 601(Integer)
2023-08-02 09:43:40.068 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-08-02 09:43:40.068 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:43:40.068 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-08-02 09:43:40.071 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.078 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-02 09:43:40.079 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:43:40.079 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 18(Integer)
2023-08-02 09:43:40.082 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 09:43:40.082 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-02 09:43:40.087 DEBUG 19320 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1
2023-08-02 09:43:40.092 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 09:43:40.098 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:40.100 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:43:40.108 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.116 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:40.117 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:43:40.125 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.128 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:40.128 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:43:40.137 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.139 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:40.139 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:43:40.148 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.152 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:40.152 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:43:40.161 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:40.163 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:40.163 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:40.172 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:43:40.173 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:40.173 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:40.181 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:43:40.183 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:40.183 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:40.194 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:43:40.196 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 09:43:40.196 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 09:43:40.205 DEBUG 19320 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 09:43:59.335  INFO 19320 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/edit
2023-08-02 09:43:59.344 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:43:59.345 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:43:59.355 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:43:59.377 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:43:59.377 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.385 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.387 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.388 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 601(Integer)
2023-08-02 09:43:59.395 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.397 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==>  Preparing: update t_text_content SET content = ?, create_time = ? where id = ? 
2023-08-02 09:43:59.397 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.updateByPrimaryKeySelective  : ==> Parameters: [{"name":"123","questionItems":[{"id":430,"itemOrder":1},{"id":427,"itemOrder":2},{"id":428,"itemOrder":3},{"id":431,"itemOrder":4},{"id":429,"itemOrder":5}]}](String), 2023-08-01 15:31:13.0(Timestamp), 601(Integer)
2023-08-02 09:43:59.413 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.updateByPrimaryKeySelective  : <==    Updates: 1
2023-08-02 09:43:59.423 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==>  Preparing: update t_exam_paper SET name = ?, paper_type = ?, score = ?, question_count = ?, suggest_time = ?, limit_start_time = ?, limit_end_time = ?, frame_text_content_id = ?, create_user = ?, create_time = ?, deleted = ? where id = ? 
2023-08-02 09:43:59.424 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.updateByPrimaryKeySelective  : ==> Parameters: 测试时间(String), 4(Integer), 200(Integer), 5(Integer), 12(Integer), 2023-08-01 00:00:00.0(Timestamp), 2023-08-02 09:45:00.0(Timestamp), 601(Integer), 2(Integer), 2023-08-01 15:31:13.0(Timestamp), false(Boolean), 147(Integer)
2023-08-02 09:43:59.443 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.updateByPrimaryKeySelective  : <==    Updates: 1
2023-08-02 09:43:59.444 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : ==>  Preparing: delete from t_exam_paper_department where exam_paper_id = ? 
2023-08-02 09:43:59.444 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.464 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : <==    Updates: 0
2023-08-02 09:43:59.464 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : ==>  Preparing: delete from t_exam_paper_subject where exam_paper_id = ? 
2023-08-02 09:43:59.465 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.481 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : <==    Updates: 2
2023-08-02 09:43:59.481 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:59.482 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.490 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:43:59.491 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : ==>  Preparing: delete from t_exam_paper_user where exam_paper_id = ? 
2023-08-02 09:43:59.492 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.508 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.removeByExamPaperId          : <==    Updates: 1
2023-08-02 09:43:59.513 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-08-02 09:43:59.514 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 147(Integer), 1028(Integer), 0(String)
2023-08-02 09:43:59.528 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-08-02 09:43:59.534 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:59.535 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.543 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:43:59.546 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) , (?,?,?,?) 
2023-08-02 09:43:59.547 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 147(Integer), 0(String), null, 21(Integer), 147(Integer), 0(String)
2023-08-02 09:43:59.564 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 2
2023-08-02 09:43:59.603 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:43:59.603 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.626 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.627 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.627 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 601(Integer)
2023-08-02 09:43:59.639 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.641 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 09:43:59.641 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 428(Integer), 431(Integer), 429(Integer)
2023-08-02 09:43:59.651 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 09:43:59.654 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.654 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:43:59.663 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.664 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.665 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:43:59.674 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.676 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.677 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:43:59.686 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.687 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.687 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:43:59.695 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.697 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:43:59.697 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:43:59.705 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:43:59.708 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:59.708 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.717 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:43:59.718 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:59.718 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.726 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:43:59.726 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:43:59.727 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:43:59.735 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:43:59.735 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 09:43:59.735 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 09:43:59.744 DEBUG 19320 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 09:44:00.351  INFO 19320 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:44:00.359 DEBUG 19320 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:44:00.360 DEBUG 19320 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:44:00.368 DEBUG 19320 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:44:00.661  INFO 19320 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-02 09:44:00.855 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-02 09:44:00.856 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-02 09:44:00.865 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-02 09:44:00.873 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 09:44:00.874 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-02 09:44:00.883 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 7
2023-08-02 09:44:00.886 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.886 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:44:00.894 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:44:00.896 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.896 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-02 09:44:00.906 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:44:00.907 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.907 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-02 09:44:00.915 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:44:00.916 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.916 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-02 09:44:00.924 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:44:00.925 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.925 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-02 09:44:00.934 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:44:00.935 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.935 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-02 09:44:00.943 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:44:00.944 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:44:00.944 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-02 09:44:00.952 DEBUG 19320 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:44:03.645  INFO 19320 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:44:03.653 DEBUG 19320 --- [XNIO-1 task-22] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:44:03.653 DEBUG 19320 --- [XNIO-1 task-22] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:44:03.662 DEBUG 19320 --- [XNIO-1 task-22] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:44:03.666  INFO 19320 --- [XNIO-1 task-23] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:44:03.666 DEBUG 19320 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:44:03.667 DEBUG 19320 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:44:03.667  INFO 19320 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:44:03.676 DEBUG 19320 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:44:03.676 DEBUG 19320 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:44:03.676 DEBUG 19320 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:44:03.677 DEBUG 19320 --- [XNIO-1 task-23] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:44:03.677 DEBUG 19320 --- [XNIO-1 task-23] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:44:03.686 DEBUG 19320 --- [XNIO-1 task-23] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:44:03.686  INFO 19320 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:44:03.686  INFO 19320 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:44:03.688 DEBUG 19320 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:44:03.688 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:44:03.688 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:44:03.696 DEBUG 19320 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:44:03.699 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:44:03.706 DEBUG 19320 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:44:03.707 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:44:03.707 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:44:03.717 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:44:03.717 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 09:44:03.719 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:44:03.717(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 09:44:03.717(Timestamp)
2023-08-02 09:44:03.720 DEBUG 19320 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:44:03.721 DEBUG 19320 --- [XNIO-1 task-26] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:44:03.721 DEBUG 19320 --- [XNIO-1 task-26] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:44:03.729 DEBUG 19320 --- [XNIO-1 task-25] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:44:03.730 DEBUG 19320 --- [XNIO-1 task-26] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:45:03.878  INFO 19320 --- [XNIO-1 task-27] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 09:45:03.886 DEBUG 19320 --- [XNIO-1 task-27] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:45:03.887 DEBUG 19320 --- [XNIO-1 task-27] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:45:03.893  INFO 19320 --- [XNIO-1 task-28] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 09:45:03.898 DEBUG 19320 --- [XNIO-1 task-27] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:45:03.903 DEBUG 19320 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:45:03.904 DEBUG 19320 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:45:03.916 DEBUG 19320 --- [XNIO-1 task-28] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:45:03.917 DEBUG 19320 --- [XNIO-1 task-28] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 09:45:03.917 DEBUG 19320 --- [XNIO-1 task-28] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 09:45:03.926 DEBUG 19320 --- [XNIO-1 task-28] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 09:45:03.955  INFO 19320 --- [XNIO-1 task-29] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 09:45:03.955 DEBUG 19320 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:45:03.956 DEBUG 19320 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:45:03.967 DEBUG 19320 --- [XNIO-1 task-29] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:45:04.038  INFO 19320 --- [XNIO-1 task-31] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 09:45:04.038  INFO 19320 --- [XNIO-1 task-30] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 09:45:04.039 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:45:04.039 DEBUG 19320 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:45:04.039 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:45:04.039 DEBUG 19320 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 09:45:04.052 DEBUG 19320 --- [XNIO-1 task-30] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:45:04.052 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:45:04.052 DEBUG 19320 --- [XNIO-1 task-30] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 09:45:04.053 DEBUG 19320 --- [XNIO-1 task-30] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 09:45:04.053 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 09:45:04.054 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 09:45:04.061 DEBUG 19320 --- [XNIO-1 task-30] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 09:45:04.061 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 09:45:04.063 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 09:45:04.064 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 09:45:04.061(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 09:45:04.061(Timestamp)
2023-08-02 09:45:04.073 DEBUG 19320 --- [XNIO-1 task-31] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 09:45:11.153  INFO 19320 --- [XNIO-1 task-33] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-08-02 09:45:11.153  INFO 19320 --- [XNIO-1 task-32] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:45:11.161 DEBUG 19320 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:45:11.161 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 09:45:11.161 DEBUG 19320 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:45:11.161 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 09:45:11.170 DEBUG 19320 --- [XNIO-1 task-32] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:45:11.170 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 09:45:11.170 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:45:11.171 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-08-02 09:45:11.179 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-02 09:45:11.180 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:45:11.180 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-08-02 09:45:11.204 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-08-02 09:45:11.205 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:45:11.205 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-08-02 09:45:11.214 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-02 09:45:11.215 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-02 09:45:11.215 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 18(Integer)
2023-08-02 09:45:11.225 DEBUG 19320 --- [XNIO-1 task-33] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1
2023-08-02 09:45:39.652  INFO 19320 --- [XNIO-1 task-34] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-08-02 09:45:39.708 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM (SELECT q.* FROM t_question q LEFT JOIN t_question_subject qs ON q.id = qs.question_id WHERE q.deleted = 0 AND qs.deleted = 0 AND qs.subject_id IN (?, ?) GROUP BY q.id) table_count 
2023-08-02 09:45:39.708 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-02 09:45:39.717 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-08-02 09:45:39.722 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT q.* FROM t_question q LEFT JOIN t_question_subject qs ON q.id = qs.question_id WHERE q.deleted = 0 AND qs.deleted = 0 AND qs.subject_id IN (?, ?) GROUP BY q.id order by id desc LIMIT ? 
2023-08-02 09:45:39.723 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 20(Integer), 21(Integer), 5(Integer)
2023-08-02 09:45:39.732 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 5
2023-08-02 09:45:39.734 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:39.734 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:45:39.743 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:39.744 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:39.744 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-02 09:45:39.753 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-02 09:45:39.754 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.755 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:39.763 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.763 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.764 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-02 09:45:39.772 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.772 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:39.773 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:45:39.782 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:39.783 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:39.783 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-08-02 09:45:39.791 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-02 09:45:39.792 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.792 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:39.800 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.800 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:39.801 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:45:39.809 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:39.811 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:39.811 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-08-02 09:45:39.819 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-02 09:45:39.820 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.820 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:39.828 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.828 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.829 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-02 09:45:39.837 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.838 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:39.838 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:45:39.846 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:39.847 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:39.847 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-08-02 09:45:39.856 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-02 09:45:39.857 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.857 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:39.866 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.866 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.866 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-02 09:45:39.875 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:39.876 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:39.876 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:45:39.884 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:39.884 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:39.884 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-08-02 09:45:39.894 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-02 09:45:39.895 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:39.895 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:39.903 DEBUG 19320 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.148  INFO 19320 --- [XNIO-1 task-38] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/427
2023-08-02 09:45:43.148  INFO 19320 --- [XNIO-1 task-39] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/429
2023-08-02 09:45:43.148  INFO 19320 --- [XNIO-1 task-37] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/431
2023-08-02 09:45:43.148  INFO 19320 --- [XNIO-1 task-36] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/428
2023-08-02 09:45:43.148  INFO 19320 --- [XNIO-1 task-35] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/430
2023-08-02 09:45:43.157 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  Preparing: select id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted from t_question where id = ? 
2023-08-02 09:45:43.157 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  Preparing: select id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted from t_question where id = ? 
2023-08-02 09:45:43.157 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  Preparing: select id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted from t_question where id = ? 
2023-08-02 09:45:43.157 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 427(Integer)
2023-08-02 09:45:43.157 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 431(Integer)
2023-08-02 09:45:43.157 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 430(Integer)
2023-08-02 09:45:43.159 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  Preparing: select id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted from t_question where id = ? 
2023-08-02 09:45:43.159 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  Preparing: select id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted from t_question where id = ? 
2023-08-02 09:45:43.159 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 429(Integer)
2023-08-02 09:45:43.159 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 428(Integer)
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-08-02 09:45:43.168 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-08-02 09:45:43.178 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-02 09:45:43.178 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-02 09:45:43.178 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-02 09:45:43.178 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-02 09:45:43.179 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.180 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-02 09:45:43.187 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:45:43.188 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-02 09:45:43.189 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-02 09:45:43.189 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-02 09:45:43.197 DEBUG 19320 --- [XNIO-1 task-38] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.197 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.197 DEBUG 19320 --- [XNIO-1 task-35] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.197 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.197 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:43.197 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:43.198 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:45:43.198 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:45:43.198 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-02 09:45:43.199 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:43.199 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:45:43.206 DEBUG 19320 --- [XNIO-1 task-37] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.206 DEBUG 19320 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:43.208 DEBUG 19320 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.232  INFO 19320 --- [XNIO-1 task-40] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/edit
2023-08-02 09:45:46.240 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 09:45:46.240 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 09:45:46.249 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 09:45:46.260 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-08-02 09:45:46.260 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"name":"123","questionItems":[{"id":430,"itemOrder":1},{"id":427,"itemOrder":2},{"id":431,"itemOrder":3},{"id":428,"itemOrder":4},{"id":429,"itemOrder":5}]}](String), 2023-08-02 09:45:46.258(Timestamp)
2023-08-02 09:45:46.277 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-08-02 09:45:46.278 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper ( name, paper_type, score, question_count, suggest_time, frame_text_content_id, create_user, create_time, deleted ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-08-02 09:45:46.278 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.insertSelective              : ==> Parameters: 测试任务(String), 6(Integer), 200(Integer), 5(Integer), 12(Integer), 602(Integer), 2(Integer), 2023-08-02 09:45:46.258(Timestamp), false(Boolean)
2023-08-02 09:45:46.295 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-08-02 09:45:46.295 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:46.295 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 09:45:46.304 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:45:46.304 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-08-02 09:45:46.305 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 148(Integer), 1028(Integer), 0(String)
2023-08-02 09:45:46.321 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-08-02 09:45:46.322 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:46.322 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 09:45:46.330 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:45:46.331 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) , (?,?,?,?) 
2023-08-02 09:45:46.331 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 148(Integer), 0(String), null, 21(Integer), 148(Integer), 0(String)
2023-08-02 09:45:46.347 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 2
2023-08-02 09:45:46.377 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 09:45:46.377 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-02 09:45:46.385 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.387 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:46.387 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 602(Integer)
2023-08-02 09:45:46.395 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.396 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 09:45:46.396 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-02 09:45:46.406 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 09:45:46.406 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:46.407 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 09:45:46.416 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.417 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:46.417 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 09:45:46.428 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.429 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:46.429 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 09:45:46.437 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.439 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:46.439 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 09:45:46.448 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.448 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 09:45:46.449 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 09:45:46.456 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 09:45:46.458 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:46.458 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 09:45:46.465 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:45:46.466 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:46.466 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 09:45:46.474 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 09:45:46.474 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:46.475 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 09:45:46.483 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:45:46.484 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 09:45:46.484 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 09:45:46.492 DEBUG 19320 --- [XNIO-1 task-40] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 09:45:47.392  INFO 19320 --- [XNIO-1 task-41] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:45:47.392  INFO 19320 --- [XNIO-1 task-42] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-02 09:45:47.401 DEBUG 19320 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:45:47.401 DEBUG 19320 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:45:47.403 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-02 09:45:47.403 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-02 09:45:47.409 DEBUG 19320 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:45:47.412 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-02 09:45:47.413 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 09:45:47.414 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-02 09:45:47.427 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 8
2023-08-02 09:45:47.429 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.429 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 09:45:47.439 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:45:47.439 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.439 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 09:45:47.447 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:45:47.449 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.449 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-02 09:45:47.457 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 09:45:47.458 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.458 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-02 09:45:47.467 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:45:47.468 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.468 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-02 09:45:47.477 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:45:47.477 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.477 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-02 09:45:47.486 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:45:47.486 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.487 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-02 09:45:47.495 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:45:47.495 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 09:45:47.496 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-02 09:45:47.505 DEBUG 19320 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 09:45:51.084  INFO 19320 --- [XNIO-1 task-43] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:45:51.093 DEBUG 19320 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:45:51.093 DEBUG 19320 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:45:51.102 DEBUG 19320 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:45:56.353  INFO 19320 --- [XNIO-1 task-44] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-02 09:45:56.375 DEBUG 19320 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-02 09:45:56.375 DEBUG 19320 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-02 09:45:56.384 DEBUG 19320 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-02 09:45:56.386 DEBUG 19320 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-02 09:45:56.386 DEBUG 19320 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-08-02 09:45:56.394 DEBUG 19320 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-02 09:45:56.485  INFO 19320 --- [XNIO-1 task-45] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 09:45:56.485 DEBUG 19320 --- [XNIO-1 task-45] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 09:45:56.485 DEBUG 19320 --- [XNIO-1 task-45] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 09:45:56.493 DEBUG 19320 --- [XNIO-1 task-45] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 09:46:06.772  INFO 19320 --- [XNIO-1 task-46] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 09:46:06.785 DEBUG 19320 --- [XNIO-1 task-46] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 09:46:06.785 DEBUG 19320 --- [XNIO-1 task-46] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 18(Integer), 6(Integer)
2023-08-02 09:46:06.794 DEBUG 19320 --- [XNIO-1 task-46] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 09:46:21.397  INFO 19320 --- [XNIO-1 task-47] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 09:46:21.407 DEBUG 19320 --- [XNIO-1 task-47] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 09:46:21.407 DEBUG 19320 --- [XNIO-1 task-47] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 18(Integer), 6(Integer)
2023-08-02 09:46:21.414 DEBUG 19320 --- [XNIO-1 task-47] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 09:47:00.706  INFO 19320 --- [XNIO-1 task-48] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 09:47:19.607 DEBUG 19320 --- [XNIO-1 task-48] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 09:47:19.608 DEBUG 19320 --- [XNIO-1 task-48] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 18(Integer), 6(Integer)
2023-08-02 09:47:19.616 DEBUG 19320 --- [XNIO-1 task-48] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 09:48:19.051  INFO 19320 --- [XNIO-1 task-49] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 09:48:22.466 DEBUG 19320 --- [XNIO-1 task-49] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 09:48:22.467 DEBUG 19320 --- [XNIO-1 task-49] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 18(Integer), 6(Integer)
2023-08-02 09:48:22.476 DEBUG 19320 --- [XNIO-1 task-49] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 09:49:00.930  INFO 19320 --- [XNIO-1 task-50] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 09:49:06.458 DEBUG 19320 --- [XNIO-1 task-50] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 09:49:06.460 DEBUG 19320 --- [XNIO-1 task-50] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 18(Integer), 6(Integer)
2023-08-02 09:49:06.470 DEBUG 19320 --- [XNIO-1 task-50] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 10:01:39.572  INFO 19320 --- [XNIO-1 task-51] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 10:01:39.572  INFO 19320 --- [XNIO-1 task-52] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 10:01:39.572  INFO 19320 --- [XNIO-1 task-53] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 10:01:39.572  INFO 19320 --- [XNIO-1 task-55] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 10:01:39.572  INFO 19320 --- [XNIO-1 task-54] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 10:01:39.601 DEBUG 19320 --- [XNIO-1 task-55] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:01:39.601 DEBUG 19320 --- [XNIO-1 task-52] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:01:39.601 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:01:39.601 DEBUG 19320 --- [XNIO-1 task-51] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 10:01:39.601 DEBUG 19320 --- [XNIO-1 task-53] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:01:39.609 DEBUG 19320 --- [XNIO-1 task-51] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 10:01:39.609 DEBUG 19320 --- [XNIO-1 task-52] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:01:39.609 DEBUG 19320 --- [XNIO-1 task-53] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:01:39.609 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:01:39.609 DEBUG 19320 --- [XNIO-1 task-55] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:01:39.620 DEBUG 19320 --- [XNIO-1 task-51] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 10:01:39.622 DEBUG 19320 --- [XNIO-1 task-52] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:01:39.622 DEBUG 19320 --- [XNIO-1 task-53] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:01:39.626 DEBUG 19320 --- [XNIO-1 task-55] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:01:39.626 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:01:39.626 DEBUG 19320 --- [XNIO-1 task-52] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 10:01:39.626 DEBUG 19320 --- [XNIO-1 task-52] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 10:01:39.627 DEBUG 19320 --- [XNIO-1 task-55] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 10:01:39.627 DEBUG 19320 --- [XNIO-1 task-55] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 10:01:39.632 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 10:01:39.632 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 10:01:39.635 DEBUG 19320 --- [XNIO-1 task-55] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 10:01:39.635 DEBUG 19320 --- [XNIO-1 task-52] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 10:01:39.641 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 10:01:39.644 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 10:01:39.644 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 10:01:39.641(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 10:01:39.641(Timestamp)
2023-08-02 10:01:39.655 DEBUG 19320 --- [XNIO-1 task-54] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 10:03:39.368  INFO 19320 --- [XNIO-1 task-56] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/task/page
2023-08-02 10:03:39.415 DEBUG 19320 --- [XNIO-1 task-56] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_task_exam WHERE deleted = 0 
2023-08-02 10:03:39.415 DEBUG 19320 --- [XNIO-1 task-56] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==> Parameters: 
2023-08-02 10:03:39.423 DEBUG 19320 --- [XNIO-1 task-56] r.c.m.x.r.TaskExamMapper.page_COUNT      : <==      Total: 1
2023-08-02 10:04:44.112  INFO 19320 --- [XNIO-1 task-57] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 10:04:44.121 DEBUG 19320 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 10:04:44.121 DEBUG 19320 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 10:04:44.131 DEBUG 19320 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 10:06:54.534  INFO 19320 --- [XNIO-1 task-58] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 10:07:02.670 DEBUG 19320 --- [XNIO-1 task-58] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 10:07:02.672 DEBUG 19320 --- [XNIO-1 task-58] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: null, 6(Integer)
2023-08-02 10:07:02.681 DEBUG 19320 --- [XNIO-1 task-58] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 10:07:12.762  INFO 19320 --- [XNIO-1 task-59] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 10:07:20.466 DEBUG 19320 --- [XNIO-1 task-59] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND s.department_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 10:07:20.467 DEBUG 19320 --- [XNIO-1 task-59] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 18(Integer), 6(Integer)
2023-08-02 10:07:20.476 DEBUG 19320 --- [XNIO-1 task-59] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 10:08:14.464  INFO 19320 --- [XNIO-1 task-60] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 10:08:14.473 DEBUG 19320 --- [XNIO-1 task-60] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 10:08:14.473 DEBUG 19320 --- [XNIO-1 task-60] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 10:08:14.481 DEBUG 19320 --- [XNIO-1 task-60] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 10:08:14.534  INFO 19320 --- [XNIO-1 task-62] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 10:08:14.534  INFO 19320 --- [XNIO-1 task-61] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 10:08:14.534 DEBUG 19320 --- [XNIO-1 task-62] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:08:14.536 DEBUG 19320 --- [XNIO-1 task-62] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:08:14.536  INFO 19320 --- [XNIO-1 task-63] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 10:08:14.538  INFO 19320 --- [XNIO-1 task-64] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 10:08:14.543 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:08:14.543 DEBUG 19320 --- [XNIO-1 task-63] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:08:14.543 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:08:14.543 DEBUG 19320 --- [XNIO-1 task-63] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:08:14.545 DEBUG 19320 --- [XNIO-1 task-62] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:08:14.546 DEBUG 19320 --- [XNIO-1 task-62] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 10:08:14.546 DEBUG 19320 --- [XNIO-1 task-62] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 10:08:14.548 DEBUG 19320 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 10:08:14.548 DEBUG 19320 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 10:08:14.554 DEBUG 19320 --- [XNIO-1 task-62] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 10:08:14.554 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:08:14.554 DEBUG 19320 --- [XNIO-1 task-63] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:08:14.556 DEBUG 19320 --- [XNIO-1 task-63] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 10:08:14.556 DEBUG 19320 --- [XNIO-1 task-63] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 10:08:14.556 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 10:08:14.556 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 10:08:14.558 DEBUG 19320 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 10:08:14.565 DEBUG 19320 --- [XNIO-1 task-63] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 10:08:14.565 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 10:08:14.572 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 10:08:14.572 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 10:08:14.571(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 10:08:14.571(Timestamp)
2023-08-02 10:08:14.583 DEBUG 19320 --- [XNIO-1 task-61] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 12:29:31.922  WARN 19320 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=13m27s69ms439µs600ns).
2023-08-02 14:53:24.490  INFO 19320 --- [Thread-20] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 14:53:24.589  INFO 19320 --- [Thread-20] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 14:53:24.631  INFO 19320 --- [Thread-20] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 14:53:37.449  INFO 7608 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 7608 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 14:53:37.453  INFO 7608 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 14:53:37.545  INFO 7608 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 14:53:37.546  INFO 7608 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 14:53:42.776  INFO 7608 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$74b71e92] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 14:53:43.352  WARN 7608 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 14:53:43.396  INFO 7608 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 14:53:43.396  INFO 7608 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 5850 ms
2023-08-02 14:53:46.053  INFO 7608 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 14:53:46.355  INFO 7608 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5c0b6879, org.springframework.security.web.context.SecurityContextPersistenceFilter@602c35b2, org.springframework.security.web.header.HeaderWriterFilter@39957776, org.springframework.web.filter.CorsFilter@251e9641, org.springframework.security.web.authentication.logout.LogoutFilter@4bf8018f, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@3ffd706e, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@2ad550fd, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6e6ffc17, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2ab88b92, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@593a4b0d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@649d6560, org.springframework.security.web.session.SessionManagementFilter@73e2f807, org.springframework.security.web.access.ExceptionTranslationFilter@1521874f, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3c509857]
2023-08-02 14:53:46.393  INFO 7608 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 14:53:47.073  INFO 7608 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 14:53:47.100  INFO 7608 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 14:53:47.157  INFO 7608 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 14:53:47.415  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 14:53:47.467  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 14:53:47.494  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 14:53:47.505  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 14:53:47.512  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 14:53:47.601  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 14:53:47.621  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 14:53:47.681  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 14:53:47.689  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 14:53:47.692  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 14:53:47.698  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 14:53:47.716  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 14:53:47.730  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 14:53:47.732  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 14:53:47.739  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 14:53:47.752  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 14:53:47.757  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 14:53:47.764  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 14:53:47.767  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 14:53:47.771  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 14:53:47.784  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 14:53:47.796  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 14:53:47.806  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 14:53:47.807  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 14:53:47.814  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 14:53:47.828  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 14:53:47.833  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 14:53:47.837  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 14:53:47.841  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 14:53:47.911  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 14:53:47.914  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 14:53:47.918  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 14:53:47.922  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 14:53:47.930  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 14:53:47.933  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 14:53:47.943  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 14:53:47.944  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 14:53:47.944  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 14:53:47.946  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 14:53:47.946  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 14:53:47.947  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 14:53:47.948  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 14:53:47.948  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 14:53:47.955  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 14:53:47.959  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 14:53:47.967  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 14:53:47.973  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 14:53:47.975  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 14:53:47.980  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 14:53:47.985  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 14:53:47.995  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 14:53:48.000  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 14:53:48.002  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 14:53:48.003  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 14:53:48.008  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 14:53:48.009  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 14:53:48.014  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 14:53:48.015  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 14:53:48.019  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 14:53:48.021  INFO 7608 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 14:53:48.139  INFO 7608 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 14:53:48.161  INFO 7608 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 14:53:48.278  INFO 7608 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 14:53:48.283  INFO 7608 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 11.767 seconds (JVM running for 20.477)
2023-08-02 14:54:00.108  INFO 7608 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 14:54:00.108  INFO 7608 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 14:54:00.126  INFO 7608 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 18 ms
2023-08-02 14:54:08.040  INFO 7608 --- [XNIO-1 task-3] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 14:54:16.512  INFO 7608 --- [XNIO-1 task-3] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 14:54:16.526 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 14:54:16.570 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 14:54:16.625 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 14:54:17.469 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 14:54:17.470 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 14:54:17.481 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 14:54:17.513 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 14:54:17.519 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-08-02 14:54:17.482(Timestamp)
2023-08-02 14:54:17.544 DEBUG 7608 --- [XNIO-1 task-3] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 14:54:18.138  INFO 7608 --- [XNIO-1 task-4] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-08-02 14:54:18.157 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-08-02 14:54:18.157 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 14:54:18.171 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 14:54:18.176 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-08-02 14:54:18.177 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-08-02 14:54:18.186 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-08-02 14:54:18.193 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-08-02 14:54:18.193 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 14:54:18.203 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 14:54:18.204 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-08-02 14:54:18.205 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 14:54:18.216 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 14:54:18.223 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 14:54:18.224 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 14:54:18.236 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.U.selectCountByDate            : <==      Total: 2
2023-08-02 14:54:18.239 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 14:54:18.241 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 14:54:18.253 DEBUG 7608 --- [XNIO-1 task-4] r.c.m.x.r.E.selectCountByDate            : <==      Total: 1
2023-08-02 14:55:34.420  INFO 7608 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 14:55:34.436 DEBUG 7608 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 14:55:34.436 DEBUG 7608 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 14:55:34.447 DEBUG 7608 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 14:55:36.383  INFO 7608 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 14:55:36.461 DEBUG 7608 --- [XNIO-1 task-6] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 14:55:36.463 DEBUG 7608 --- [XNIO-1 task-6] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 6(Integer)
2023-08-02 14:55:36.473 DEBUG 7608 --- [XNIO-1 task-6] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 14:56:47.244  INFO 7608 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-02 14:56:47.301 DEBUG 7608 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-02 14:56:47.302 DEBUG 7608 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-02 14:56:47.316 DEBUG 7608 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-02 14:56:47.322 DEBUG 7608 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-02 14:56:47.322 DEBUG 7608 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-08-02 14:56:47.333 DEBUG 7608 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-02 14:56:47.593  INFO 7608 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 14:56:47.593 DEBUG 7608 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 14:56:47.594 DEBUG 7608 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 14:56:47.606 DEBUG 7608 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 14:56:51.790  INFO 7608 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 14:56:51.805 DEBUG 7608 --- [XNIO-1 task-9] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND s.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 14:56:51.806 DEBUG 7608 --- [XNIO-1 task-9] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 6(Integer)
2023-08-02 14:56:51.815 DEBUG 7608 --- [XNIO-1 task-9] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 15:05:19.135  INFO 7608 --- [Thread-35] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 15:05:19.149  INFO 7608 --- [Thread-35] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 15:05:19.154  INFO 7608 --- [Thread-35] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 15:05:24.027  INFO 952 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 952 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 15:05:24.030  INFO 952 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 15:05:24.084  INFO 952 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 15:05:24.084  INFO 952 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 15:05:26.442  INFO 952 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$25d63015] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 15:05:26.997  WARN 952 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 15:05:27.034  INFO 952 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 15:05:27.034  INFO 952 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2950 ms
2023-08-02 15:05:29.412  INFO 952 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 15:05:29.693  INFO 952 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7525ca5, org.springframework.security.web.context.SecurityContextPersistenceFilter@43a688cc, org.springframework.security.web.header.HeaderWriterFilter@200d5082, org.springframework.web.filter.CorsFilter@6ff4db19, org.springframework.security.web.authentication.logout.LogoutFilter@4b0971d2, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@7a644fbb, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@26cd266b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3ccb8d67, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@57c4aa70, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@1d280084, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@415187a5, org.springframework.security.web.session.SessionManagementFilter@3a7c9359, org.springframework.security.web.access.ExceptionTranslationFilter@9a0d438, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7a2ac96f]
2023-08-02 15:05:29.728  INFO 952 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 15:05:30.434  INFO 952 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 15:05:30.460  INFO 952 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 15:05:30.514  INFO 952 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 15:05:30.758  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 15:05:30.821  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 15:05:30.845  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 15:05:30.856  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 15:05:30.860  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 15:05:30.960  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 15:05:31.016  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 15:05:31.017  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 15:05:31.021  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 15:05:31.024  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 15:05:31.027  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 15:05:31.062  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 15:05:31.077  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 15:05:31.079  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 15:05:31.083  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 15:05:31.091  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 15:05:31.093  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 15:05:31.097  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 15:05:31.099  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 15:05:31.101  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 15:05:31.112  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 15:05:31.123  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 15:05:31.134  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 15:05:31.135  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 15:05:31.142  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 15:05:31.153  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 15:05:31.157  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 15:05:31.160  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 15:05:31.162  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 15:05:31.225  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 15:05:31.228  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 15:05:31.232  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 15:05:31.236  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 15:05:31.242  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 15:05:31.245  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 15:05:31.255  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 15:05:31.256  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 15:05:31.257  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 15:05:31.257  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 15:05:31.258  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 15:05:31.258  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 15:05:31.259  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 15:05:31.260  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 15:05:31.277  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 15:05:31.284  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 15:05:31.286  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 15:05:31.287  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 15:05:31.289  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 15:05:31.290  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 15:05:31.292  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 15:05:31.293  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 15:05:31.296  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 15:05:31.303  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 15:05:31.305  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 15:05:31.309  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 15:05:31.316  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 15:05:31.321  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 15:05:31.322  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 15:05:31.326  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 15:05:31.328  INFO 952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 15:05:31.461  INFO 952 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 15:05:31.479  INFO 952 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 15:05:31.587  INFO 952 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 15:05:31.592  INFO 952 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 8.355 seconds (JVM running for 9.834)
2023-08-02 15:06:00.853  INFO 952 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 15:06:00.853  INFO 952 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 15:06:00.866  INFO 952 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 13 ms
2023-08-02 15:06:01.000  INFO 952 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-02 15:06:01.054  INFO 952 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 15:06:01.356  INFO 952 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 15:06:01.465 DEBUG 952 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-02 15:06:01.510 DEBUG 952 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-02 15:06:01.566 DEBUG 952 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-02 15:06:01.574 DEBUG 952 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-02 15:06:01.576 DEBUG 952 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-08-02 15:06:01.585 DEBUG 952 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-02 15:06:29.283 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:06:29.285 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 15:06:29.299 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:06:29.947 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:06:29.948 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 15:06:29.958 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:06:29.962 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 15:06:29.966 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-08-02 15:06:29.959(Timestamp)
2023-08-02 15:06:29.990 DEBUG 952 --- [XNIO-1 task-3] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 15:06:30.245  INFO 952 --- [XNIO-1 task-4] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-08-02 15:06:30.264 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-08-02 15:06:30.265 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 15:06:30.277 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 15:06:30.286 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-08-02 15:06:30.288 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-08-02 15:06:30.303 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-08-02 15:06:30.320 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-08-02 15:06:30.320 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 15:06:30.333 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 15:06:30.334 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-08-02 15:06:30.334 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 15:06:30.344 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 15:06:30.350 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 15:06:30.352 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 15:06:30.363 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.U.selectCountByDate            : <==      Total: 2
2023-08-02 15:06:30.369 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 15:06:30.370 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 15:06:30.379 DEBUG 952 --- [XNIO-1 task-4] r.c.m.x.r.E.selectCountByDate            : <==      Total: 1
2023-08-02 15:14:25.005  INFO 952 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 15:14:25.021 DEBUG 952 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 15:14:25.022 DEBUG 952 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 15:14:25.031 DEBUG 952 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 15:14:26.195  INFO 952 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 15:14:26.273 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 15:14:26.274 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 6(Integer)
2023-08-02 15:14:26.285 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 15:14:26.289 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.taskExamPage   : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 15:14:26.290 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.taskExamPage   : ==> Parameters: 6(Integer), 5(Integer)
2023-08-02 15:14:26.302 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.taskExamPage   : <==      Total: 1
2023-08-02 15:14:26.308 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 15:14:26.308 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 15:14:26.319 DEBUG 952 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 15:24:18.591  INFO 952 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 15:24:18.601 DEBUG 952 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 15:24:18.602 DEBUG 952 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 15:24:18.614 DEBUG 952 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 15:24:24.841 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:24.842 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:24.855 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:24.865 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:24.865 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:24.878 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:24.883 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 15:24:24.884 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登录了考试系统(String), 2023-08-02 15:24:24.882(Timestamp)
2023-08-02 15:24:24.906 DEBUG 952 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 15:24:25.078  INFO 952 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 15:24:25.084 DEBUG 952 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:25.086 DEBUG 952 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:25.098 DEBUG 952 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:25.107 DEBUG 952 --- [XNIO-1 task-13] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 15:24:25.107 DEBUG 952 --- [XNIO-1 task-13] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 15:24:25.116 DEBUG 952 --- [XNIO-1 task-13] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 15:24:25.294  INFO 952 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 15:24:25.296 DEBUG 952 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:25.297 DEBUG 952 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:25.308 DEBUG 952 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:25.334  INFO 952 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 15:24:25.336  INFO 952 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 15:24:25.341 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:25.342 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:25.351 DEBUG 952 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:25.351 DEBUG 952 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:25.353 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:25.365 DEBUG 952 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:25.367 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 15:24:25.367 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 15:24:25.372 DEBUG 952 --- [XNIO-1 task-16] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 15:24:25.372 DEBUG 952 --- [XNIO-1 task-16] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 15:24:25.377 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 15:24:25.378 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 15:24:25.380 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 15:24:25.377(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 15:24:25.377(Timestamp)
2023-08-02 15:24:25.382 DEBUG 952 --- [XNIO-1 task-16] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 15:24:25.389 DEBUG 952 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 15:24:38.643  INFO 952 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 15:24:38.653 DEBUG 952 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 15:24:38.654 DEBUG 952 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 15:24:38.664 DEBUG 952 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 15:24:38.812  INFO 952 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 15:24:38.812  INFO 952 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 15:24:38.812  INFO 952 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 15:24:38.812  INFO 952 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 15:24:38.815 DEBUG 952 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:38.818 DEBUG 952 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:38.822 DEBUG 952 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:38.824 DEBUG 952 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:38.825 DEBUG 952 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:38.825 DEBUG 952 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:38.828 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 15:24:38.828 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 15:24:38.830 DEBUG 952 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:38.831 DEBUG 952 --- [XNIO-1 task-21] r.c.m.x.r.T.getByGradeLevel              : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where deleted=0 and grade_level = ? 
2023-08-02 15:24:38.832 DEBUG 952 --- [XNIO-1 task-21] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 18(Integer)
2023-08-02 15:24:38.837 DEBUG 952 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:38.837 DEBUG 952 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:38.840 DEBUG 952 --- [XNIO-1 task-18] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 15:24:38.840 DEBUG 952 --- [XNIO-1 task-18] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 15:24:38.844 DEBUG 952 --- [XNIO-1 task-21] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-08-02 15:24:38.845 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 15:24:38.850 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 15:24:38.851 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 15:24:38.852 DEBUG 952 --- [XNIO-1 task-18] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 15:24:38.864 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 15:24:38.866 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 15:24:38.869 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 15:24:38.865(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 15:24:38.865(Timestamp)
2023-08-02 15:24:38.882 DEBUG 952 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 16:51:39.184  INFO 952 --- [Thread-24] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 16:51:39.220  INFO 952 --- [Thread-24] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 16:51:39.238  INFO 952 --- [Thread-24] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 16:51:48.827  INFO 12736 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 12736 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 16:51:48.829  INFO 12736 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 16:51:48.879  INFO 12736 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 16:51:48.879  INFO 12736 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 16:51:50.748  INFO 12736 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$db1c3fe4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 16:51:51.181  WARN 12736 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 16:51:51.210  INFO 12736 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 16:51:51.210  INFO 12736 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2329 ms
2023-08-02 16:51:52.838  INFO 12736 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 16:51:53.044  INFO 12736 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5f10f9b8, org.springframework.security.web.context.SecurityContextPersistenceFilter@6cef6993, org.springframework.security.web.header.HeaderWriterFilter@29fed101, org.springframework.web.filter.CorsFilter@7e00a256, org.springframework.security.web.authentication.logout.LogoutFilter@1a627161, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@5b148024, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6f38f2ef, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@cef1543, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3bfbcaa3, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@32613fbc, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6aa15d52, org.springframework.security.web.session.SessionManagementFilter@7e413da0, org.springframework.security.web.access.ExceptionTranslationFilter@3e3a60df, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@30b876c7]
2023-08-02 16:51:53.069  INFO 12736 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 16:51:53.466  INFO 12736 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 16:51:53.487  INFO 12736 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 16:51:53.526  INFO 12736 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 16:51:53.678  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 16:51:53.719  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 16:51:53.736  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 16:51:53.743  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 16:51:53.747  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 16:51:53.779  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 16:51:53.787  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 16:51:53.807  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 16:51:53.812  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 16:51:53.815  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 16:51:53.829  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 16:51:53.833  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 16:51:53.844  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 16:51:53.847  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 16:51:53.849  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 16:51:53.851  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 16:51:53.853  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 16:51:53.859  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 16:51:53.861  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 16:51:53.866  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 16:51:53.876  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 16:51:53.882  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 16:51:53.894  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 16:51:53.897  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 16:51:53.904  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 16:51:53.914  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 16:51:53.917  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 16:51:53.920  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 16:51:53.922  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 16:51:53.942  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 16:51:53.945  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 16:51:53.947  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 16:51:53.950  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 16:51:53.955  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 16:51:53.957  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 16:51:53.962  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 16:51:53.962  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 16:51:53.963  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 16:51:53.963  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 16:51:53.964  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 16:51:53.964  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 16:51:53.964  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 16:51:53.966  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 16:51:53.986  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 16:51:53.993  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 16:51:53.999  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 16:51:54.000  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 16:51:54.003  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 16:51:54.010  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 16:51:54.033  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 16:51:54.034  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 16:51:54.042  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 16:51:54.043  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 16:51:54.044  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 16:51:54.047  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 16:51:54.047  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 16:51:54.049  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 16:51:54.050  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 16:51:54.052  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 16:51:54.054  INFO 12736 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 16:51:54.156  INFO 12736 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 16:51:54.170  INFO 12736 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 16:51:54.244  INFO 12736 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 16:51:54.249  INFO 12736 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.124 seconds (JVM running for 7.575)
2023-08-02 16:54:08.347  INFO 12736 --- [XNIO-1 task-4] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 16:54:08.347  INFO 12736 --- [XNIO-1 task-4] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 16:54:08.363  INFO 12736 --- [XNIO-1 task-4] o.s.web.servlet.DispatcherServlet        : Completed initialization in 16 ms
2023-08-02 16:54:08.434  INFO 12736 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 16:54:08.478  INFO 12736 --- [XNIO-1 task-5] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 16:54:14.808  INFO 12736 --- [XNIO-1 task-5] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 16:54:14.820 DEBUG 12736 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 16:54:14.853 DEBUG 12736 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 16:54:14.897 DEBUG 12736 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 16:54:21.330 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:54:21.332 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 16:54:21.346 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:54:21.648 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:54:21.648 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 16:54:21.662 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:54:21.676 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 16:54:21.678 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登录了考试系统(String), 2023-08-02 16:54:21.662(Timestamp)
2023-08-02 16:54:21.715 DEBUG 12736 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 16:54:21.769  INFO 12736 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 16:54:21.773 DEBUG 12736 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:54:21.774 DEBUG 12736 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 16:54:21.785 DEBUG 12736 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:54:21.788 DEBUG 12736 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 16:54:21.790 DEBUG 12736 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 16:54:21.801 DEBUG 12736 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 16:54:22.084  INFO 12736 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 16:54:22.084  INFO 12736 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 16:54:22.084  INFO 12736 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 16:54:22.084 DEBUG 12736 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:54:22.084 DEBUG 12736 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 16:54:22.095 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:54:22.095 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:54:22.096 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 16:54:22.096 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 16:54:22.097 DEBUG 12736 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:54:22.109 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:54:22.109 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:54:22.111 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 16:54:22.111 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1028(Integer)
2023-08-02 16:54:22.119 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 16:54:22.119 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : <==      Total: 3
2023-08-02 16:54:22.120 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 16:54:22.121 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? ) and deleted = 0 
2023-08-02 16:54:22.122 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 146(Integer), 147(Integer), 148(Integer)
2023-08-02 16:54:22.132 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 16:54:22.133 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 3
2023-08-02 16:54:22.133 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 16:54:22.134 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 16:54:22.132(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 16:54:22.132(Timestamp)
2023-08-02 16:54:22.137 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in ( ? ) and deleted = 0 
2023-08-02 16:54:22.137 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: null
2023-08-02 16:54:22.145 DEBUG 12736 --- [XNIO-1 task-8] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 16:54:22.147 DEBUG 12736 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : <==      Total: 0
2023-08-02 16:55:15.457 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:55:15.458 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 16:55:15.470 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:55:15.476 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 16:55:15.476 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 16:55:15.486 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 16:55:15.489 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 16:55:15.490 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-08-02 16:55:15.489(Timestamp)
2023-08-02 16:55:15.517 DEBUG 12736 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 16:55:15.714  INFO 12736 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-08-02 16:55:15.717 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-08-02 16:55:15.717 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 16:55:15.727 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 16:55:15.752 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-08-02 16:55:15.753 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-08-02 16:55:15.762 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-08-02 16:55:15.765 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-08-02 16:55:15.767 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 16:55:15.776 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 16:55:15.777 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-08-02 16:55:15.777 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-02 16:55:15.786 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-02 16:55:15.801 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 16:55:15.802 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 16:55:15.813 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.U.selectCountByDate            : <==      Total: 2
2023-08-02 16:55:15.815 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-02 16:55:15.815 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-02 16:55:15.825 DEBUG 12736 --- [XNIO-1 task-13] r.c.m.x.r.E.selectCountByDate            : <==      Total: 1
2023-08-02 16:55:18.994  INFO 12736 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 16:55:19.006 DEBUG 12736 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 16:55:19.006 DEBUG 12736 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 16:55:19.016 DEBUG 12736 --- [XNIO-1 task-14] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 16:55:58.338  INFO 12736 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 16:55:58.384 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 16:55:58.385 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 6(Integer)
2023-08-02 16:55:58.396 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 16:55:58.399 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.taskExamPage   : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 16:55:58.399 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.taskExamPage   : ==> Parameters: 6(Integer), 5(Integer)
2023-08-02 16:55:58.410 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.taskExamPage   : <==      Total: 1
2023-08-02 16:55:58.415 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 16:55:58.415 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 16:55:58.424 DEBUG 12736 --- [XNIO-1 task-15] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 16:58:39.639  INFO 12736 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-02 16:58:39.649 DEBUG 12736 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-02 16:58:39.649 DEBUG 12736 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-02 16:58:39.659 DEBUG 12736 --- [XNIO-1 task-16] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-02 16:58:47.585  INFO 12736 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-08-02 16:58:47.596 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.E.taskExamPage_COUNT           : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id) table_count 
2023-08-02 16:58:47.596 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: 6(Integer)
2023-08-02 16:58:47.606 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-08-02 16:58:47.609 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.taskExamPage   : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department s ON s.exam_paper_id = e.id WHERE e.deleted = 0 AND e.task_exam_id IS NULL AND e.paper_type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-02 16:58:47.609 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.taskExamPage   : ==> Parameters: 6(Integer), 5(Integer)
2023-08-02 16:58:47.621 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.taskExamPage   : <==      Total: 1
2023-08-02 16:58:47.622 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 16:58:47.623 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 16:58:47.631 DEBUG 12736 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 16:59:46.587  INFO 12736 --- [Thread-20] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 16:59:46.599  INFO 12736 --- [Thread-20] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 16:59:46.605  INFO 12736 --- [Thread-20] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 16:59:53.669  INFO 14528 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 14528 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 16:59:53.672  INFO 14528 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 16:59:53.723  INFO 14528 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 16:59:53.723  INFO 14528 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 16:59:55.383  INFO 14528 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$563fb4a3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 16:59:55.769  WARN 14528 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 16:59:55.799  INFO 14528 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 16:59:55.799  INFO 14528 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2076 ms
2023-08-02 16:59:57.327  INFO 14528 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 16:59:57.527  INFO 14528 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@9fb2fb5, org.springframework.security.web.context.SecurityContextPersistenceFilter@3b990129, org.springframework.security.web.header.HeaderWriterFilter@3baa76c8, org.springframework.web.filter.CorsFilter@52a1f087, org.springframework.security.web.authentication.logout.LogoutFilter@47caa0fc, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@3c2d0acf, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@b37407d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1cc58bf, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@71cfc02e, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@53decc80, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@39594ff2, org.springframework.security.web.session.SessionManagementFilter@8d5f040, org.springframework.security.web.access.ExceptionTranslationFilter@52ee19e4, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@35421745]
2023-08-02 16:59:57.552  INFO 14528 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 16:59:57.935  INFO 14528 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 16:59:57.956  INFO 14528 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 16:59:57.997  INFO 14528 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 16:59:58.169  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 16:59:58.205  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 16:59:58.222  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 16:59:58.230  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 16:59:58.234  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 16:59:58.273  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 16:59:58.297  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 16:59:58.299  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 16:59:58.301  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 16:59:58.303  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 16:59:58.318  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 16:59:58.323  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 16:59:58.325  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 16:59:58.335  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 16:59:58.344  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 16:59:58.346  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 16:59:58.350  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 16:59:58.352  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 16:59:58.354  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 16:59:58.356  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 16:59:58.382  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 16:59:58.393  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 16:59:58.404  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 16:59:58.405  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 16:59:58.417  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 16:59:58.427  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 16:59:58.433  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 16:59:58.436  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 16:59:58.438  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 16:59:58.460  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 16:59:58.462  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 16:59:58.465  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 16:59:58.468  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 16:59:58.477  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 16:59:58.479  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 16:59:58.488  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 16:59:58.489  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 16:59:58.492  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 16:59:58.493  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 16:59:58.494  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 16:59:58.495  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 16:59:58.497  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 16:59:58.498  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 16:59:58.509  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 16:59:58.513  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 16:59:58.520  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 16:59:58.526  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 16:59:58.527  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 16:59:58.532  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 16:59:58.538  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 16:59:58.549  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 16:59:58.555  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 16:59:58.558  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 16:59:58.559  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 16:59:58.560  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 16:59:58.561  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 16:59:58.563  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 16:59:58.565  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 16:59:58.567  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 16:59:58.570  INFO 14528 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 16:59:58.667  INFO 14528 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 16:59:58.678  INFO 14528 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 16:59:58.749  INFO 14528 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 16:59:58.753  INFO 14528 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.756 seconds (JVM running for 6.892)
2023-08-02 17:00:05.420  INFO 14528 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 17:00:05.421  INFO 14528 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 17:00:05.429  INFO 14528 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 8 ms
2023-08-02 17:00:05.595  INFO 14528 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/task/edit
2023-08-02 17:00:05.622  INFO 14528 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 17:00:05.826  INFO 14528 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 17:00:05.834 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:00:05.855 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-02 17:00:05.883 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:00:05.950 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-08-02 17:00:05.952 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"examPaperId":148,"examPaperName":"测试任务","itemOrder":null}](String), 2023-08-02 17:00:05.901(Timestamp)
2023-08-02 17:00:05.968 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-08-02 17:00:05.973 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_task_exam ( title, frame_text_content_id, create_user, create_time, deleted, create_user_name ) values ( ?, ?, ?, ?, ?, ? ) 
2023-08-02 17:00:05.975 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : ==> Parameters: 123123(String), 603(Integer), 2(Integer), 2023-08-02 17:00:05.901(Timestamp), false(Boolean), admin(String)
2023-08-02 17:00:05.991 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-08-02 17:00:05.994 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.E.updateTaskPaper              : ==>  Preparing: update t_exam_paper set task_exam_id = ? where id in ( ? ) 
2023-08-02 17:00:05.995 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.E.updateTaskPaper              : ==> Parameters: 4(Integer), 148(Integer)
2023-08-02 17:00:06.012 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.E.updateTaskPaper              : <==    Updates: 1
2023-08-02 17:00:06.048 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name from t_task_exam where id = ? 
2023-08-02 17:00:06.049 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 4(Integer)
2023-08-02 17:00:06.058 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:00:06.060 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:00:06.060 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 603(Integer)
2023-08-02 17:00:06.070 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:00:06.076 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 17:00:06.076 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-02 17:00:06.086 DEBUG 14528 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:00:13.143  INFO 14528 --- [XNIO-1 task-2] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/task/page
2023-08-02 17:00:13.217 DEBUG 14528 --- [XNIO-1 task-2] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_task_exam WHERE deleted = 0 
2023-08-02 17:00:13.217 DEBUG 14528 --- [XNIO-1 task-2] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==> Parameters: 
2023-08-02 17:00:13.227 DEBUG 14528 --- [XNIO-1 task-2] r.c.m.x.r.TaskExamMapper.page_COUNT      : <==      Total: 1
2023-08-02 17:00:13.230 DEBUG 14528 --- [XNIO-1 task-2] r.c.m.x.repository.TaskExamMapper.page   : ==>  Preparing: SELECT id, title, grade_level, frame_text_content_id, create_user, create_time, deleted, create_user_name FROM t_task_exam WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-02 17:00:13.230 DEBUG 14528 --- [XNIO-1 task-2] r.c.m.x.repository.TaskExamMapper.page   : ==> Parameters: 10(Integer)
2023-08-02 17:00:13.240 DEBUG 14528 --- [XNIO-1 task-2] r.c.m.x.repository.TaskExamMapper.page   : <==      Total: 1
2023-08-02 17:00:41.388  INFO 14528 --- [XNIO-1 task-3] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 17:00:41.403 DEBUG 14528 --- [XNIO-1 task-3] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 17:00:41.403 DEBUG 14528 --- [XNIO-1 task-3] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 17:00:41.414 DEBUG 14528 --- [XNIO-1 task-3] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 17:00:41.495  INFO 14528 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:00:41.496  INFO 14528 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 17:00:41.496  INFO 14528 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:00:41.496  INFO 14528 --- [XNIO-1 task-4] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:00:41.502 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:00:41.503 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:00:41.516 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:00:41.516 DEBUG 14528 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:00:41.516 DEBUG 14528 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:00:41.516 DEBUG 14528 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:00:41.516 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:00:41.517 DEBUG 14528 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:00:41.517 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:00:41.530 DEBUG 14528 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:00:41.530 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:00:41.531 DEBUG 14528 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:00:41.532 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:00:41.533 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 17:00:41.533 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1028(Integer)
2023-08-02 17:00:41.534 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 17:00:41.539 DEBUG 14528 --- [XNIO-1 task-4] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:00:41.540 DEBUG 14528 --- [XNIO-1 task-4] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 17:00:41.543 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.E.getByUserId                  : <==      Total: 3
2023-08-02 17:00:41.544 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 17:00:41.546 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? ) and deleted = 0 
2023-08-02 17:00:41.546 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 146(Integer), 147(Integer), 148(Integer)
2023-08-02 17:00:41.547 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 17:00:41.548 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 17:00:41.546(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 17:00:41.546(Timestamp)
2023-08-02 17:00:41.549 DEBUG 14528 --- [XNIO-1 task-4] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:00:41.557 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 3
2023-08-02 17:00:41.560 DEBUG 14528 --- [XNIO-1 task-6] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 17:00:41.560 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in ( ? ) and deleted = 0 
2023-08-02 17:00:41.561 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: 4(Integer)
2023-08-02 17:00:41.570 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.repository.TaskExamMapper.gets   : <==      Total: 1
2023-08-02 17:00:41.571 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByTUid                 : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where create_user=? and task_exam_id in ( ? ) 
2023-08-02 17:00:41.572 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByTUid                 : ==> Parameters: 1028(Integer), 4(Integer)
2023-08-02 17:00:41.580 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByTUid                 : <==      Total: 0
2023-08-02 17:00:41.582 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:00:41.584 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 603(Integer)
2023-08-02 17:00:41.592 DEBUG 14528 --- [XNIO-1 task-7] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.345  INFO 14528 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 17:01:03.354 DEBUG 14528 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 17:01:03.355 DEBUG 14528 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 17:01:03.364 DEBUG 14528 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 17:01:03.390  INFO 14528 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/select/148
2023-08-02 17:01:03.392 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 17:01:03.392 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-02 17:01:03.402 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.406 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:03.406 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 602(Integer)
2023-08-02 17:01:03.415 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.418 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 17:01:03.418 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-02 17:01:03.429 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 17:01:03.439 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:03.439 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 17:01:03.447 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.494 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:03.494 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 17:01:03.503 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.504 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:03.505 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 17:01:03.514 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.515 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:03.516 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 17:01:03.525 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.527 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:03.528 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 17:01:03.536 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:03.537 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:03.539 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:03.548 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 17:01:03.550 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:03.550 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:03.559 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 17:01:03.560 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:03.561 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:03.569 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 17:01:03.570 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 17:01:03.571 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 17:01:03.580 DEBUG 14528 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 17:01:11.571  INFO 14528 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-08-02 17:01:11.581 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:11.581 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:11.591 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:11.596 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 17:01:11.597 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-02 17:01:11.606 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:11.607 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.getByPidUid                  : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where exam_paper_id = ? and create_user=? limit 1 
2023-08-02 17:01:11.607 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.getByPidUid                  : ==> Parameters: 148(Integer), 1028(Integer)
2023-08-02 17:01:11.615 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.getByPidUid                  : <==      Total: 0
2023-08-02 17:01:11.616 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:11.616 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 602(Integer)
2023-08-02 17:01:11.626 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:11.629 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 17:01:11.629 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-02 17:01:11.639 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 17:01:11.665 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.insertSelective              : ==>  Preparing: insert into t_exam_paper_answer ( exam_paper_id, paper_name, paper_type, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-08-02 17:01:11.666 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.insertSelective              : ==> Parameters: 148(Integer), 测试任务(String), 6(Integer), 100(Integer), 100(Integer), 200(Integer), 3(Integer), 5(Integer), 7(Integer), 2(Integer), 1028(Integer), 2023-08-02 17:01:11.596(Timestamp), 4(Integer)
2023-08-02 17:01:11.684 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-08-02 17:01:11.689 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.insertList                   : ==>  Preparing: insert into t_exam_paper_question_customer_answer ( question_id, question_score, subject_id, create_time, create_user, text_content_id, exam_paper_id, question_type, answer, customer_score, exam_paper_answer_id , do_right,question_text_content_id,item_order) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?) 
2023-08-02 17:01:11.690 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.insertList                   : ==> Parameters: 430(Integer), 40(Integer), null, 2023-08-02 17:01:11.596(Timestamp), 1028(Integer), null, 148(Integer), 1(Integer), A(String), 40(Integer), 6195(Integer), true(Boolean), 536(Integer), 1(Integer), 427(Integer), 40(Integer), null, 2023-08-02 17:01:11.596(Timestamp), 1028(Integer), null, 148(Integer), 1(Integer), A(String), 40(Integer), 6195(Integer), true(Boolean), 533(Integer), 2(Integer), 431(Integer), 50(Integer), null, 2023-08-02 17:01:11.596(Timestamp), 1028(Integer), null, 148(Integer), 2(Integer), A(String), 0(Integer), 6195(Integer), false(Boolean), 537(Integer), 3(Integer), 428(Integer), 50(Integer), null, 2023-08-02 17:01:11.596(Timestamp), 1028(Integer), null, 148(Integer), 2(Integer), A(String), 0(Integer), 6195(Integer), false(Boolean), 534(Integer), 4(Integer), 429(Integer), 20(Integer), null, 2023-08-02 17:01:11.596(Timestamp), 1028(Integer), null, 148(Integer), 3(Integer), A(String), 20(Integer), 6195(Integer), true(Boolean), 535(Integer), 5(Integer)
2023-08-02 17:01:11.707 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.E.insertList                   : <==    Updates: 5
2023-08-02 17:01:11.713 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.getByTUid                    : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where task_exam_id = ? and create_user=? limit 1 
2023-08-02 17:01:11.713 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.getByTUid                    : ==> Parameters: 4(Integer), 1028(Integer)
2023-08-02 17:01:11.722 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.getByTUid                    : <==      Total: 0
2023-08-02 17:01:11.724 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-08-02 17:01:11.725 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"examPaperId":148,"examPaperAnswerId":6195,"status":2}](String), 2023-08-02 17:01:11.663(Timestamp)
2023-08-02 17:01:11.741 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-08-02 17:01:11.743 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_task_exam_customer_answer ( task_exam_id, create_user, create_time, text_content_id ) values ( ?, ?, ?, ? ) 
2023-08-02 17:01:11.743 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : ==> Parameters: 4(Integer), 1028(Integer), 2023-08-02 17:01:11.663(Timestamp), 604(Integer)
2023-08-02 17:01:11.759 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-08-02 17:01:11.811 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:01:11.812 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 提交试卷:测试任务 得分:10 耗时:7 秒(String), 2023-08-02 17:01:11.652(Timestamp)
2023-08-02 17:01:11.846 DEBUG 14528 --- [XNIO-1 task-10] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:01:14.318  INFO 14528 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:01:14.328 DEBUG 14528 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:14.330 DEBUG 14528 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:14.345 DEBUG 14528 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:14.346 DEBUG 14528 --- [XNIO-1 task-11] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:01:14.346 DEBUG 14528 --- [XNIO-1 task-11] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 17:01:14.358 DEBUG 14528 --- [XNIO-1 task-11] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:01:14.627  INFO 14528 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:01:14.627 DEBUG 14528 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:14.627 DEBUG 14528 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:14.631  INFO 14528 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/pageList
2023-08-02 17:01:14.638 DEBUG 14528 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:14.639 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:14.639 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:14.651 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:14.654 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-08-02 17:01:14.655 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 1028(Integer)
2023-08-02 17:01:14.663 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-08-02 17:01:14.664 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.studentPage                  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer WHERE create_user = ? order by id desc LIMIT ? 
2023-08-02 17:01:14.665 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.studentPage                  : ==> Parameters: 1028(Integer), 10(Integer)
2023-08-02 17:01:14.674 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.studentPage                  : <==      Total: 3
2023-08-02 17:01:14.677 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-02 17:01:14.677 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6195(Integer)
2023-08-02 17:01:14.685 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-02 17:01:14.686 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:14.686 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:14.694 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 17:01:14.695 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? , ? ) and deleted = 0 
2023-08-02 17:01:14.696 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-02 17:01:14.705 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-08-02 17:01:14.707 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-02 17:01:14.707 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6194(Integer)
2023-08-02 17:01:14.716 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-02 17:01:14.717 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:14.717 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-02 17:01:14.726 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 17:01:14.727 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? , ? ) and deleted = 0 
2023-08-02 17:01:14.727 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-02 17:01:14.736 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-08-02 17:01:14.736 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-02 17:01:14.737 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6193(Integer)
2023-08-02 17:01:14.745 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-02 17:01:14.746 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:14.746 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-02 17:01:14.754 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 17:01:14.755 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? , ? ) and deleted = 0 
2023-08-02 17:01:14.755 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-02 17:01:14.763 DEBUG 14528 --- [XNIO-1 task-13] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-08-02 17:01:18.827  INFO 14528 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 17:01:18.838 DEBUG 14528 --- [XNIO-1 task-14] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 17:01:18.838 DEBUG 14528 --- [XNIO-1 task-14] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 17:01:18.849 DEBUG 14528 --- [XNIO-1 task-14] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 17:01:18.983  INFO 14528 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:01:18.984 DEBUG 14528 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:18.984 DEBUG 14528 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:18.985  INFO 14528 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 17:01:18.985  INFO 14528 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:01:18.985  INFO 14528 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:01:18.993 DEBUG 14528 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:18.993 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:18.993 DEBUG 14528 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:18.993 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:18.994 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:18.995 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:18.995 DEBUG 14528 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:18.995 DEBUG 14528 --- [XNIO-1 task-15] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:01:18.995 DEBUG 14528 --- [XNIO-1 task-15] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 17:01:19.003 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:19.003 DEBUG 14528 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:19.004 DEBUG 14528 --- [XNIO-1 task-15] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:01:19.004 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:19.006 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 17:01:19.006 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:01:19.006 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 17:01:19.006 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1028(Integer)
2023-08-02 17:01:19.015 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 17:01:19.015 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.E.getByUserId                  : <==      Total: 3
2023-08-02 17:01:19.016 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? ) and deleted = 0 
2023-08-02 17:01:19.016 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 146(Integer), 147(Integer), 148(Integer)
2023-08-02 17:01:19.016 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 17:01:19.017 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 17:01:19.015(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 17:01:19.015(Timestamp)
2023-08-02 17:01:19.025 DEBUG 14528 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 17:01:19.026 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 3
2023-08-02 17:01:19.026 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in ( ? ) and deleted = 0 
2023-08-02 17:01:19.027 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: 4(Integer)
2023-08-02 17:01:19.035 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.repository.TaskExamMapper.gets   : <==      Total: 1
2023-08-02 17:01:19.036 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByTUid                 : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where create_user=? and task_exam_id in ( ? ) 
2023-08-02 17:01:19.037 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByTUid                 : ==> Parameters: 1028(Integer), 4(Integer)
2023-08-02 17:01:19.047 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByTUid                 : <==      Total: 1
2023-08-02 17:01:19.048 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:19.048 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 603(Integer)
2023-08-02 17:01:19.057 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:19.058 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:19.058 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 604(Integer)
2023-08-02 17:01:19.067 DEBUG 14528 --- [XNIO-1 task-18] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.619  INFO 14528 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 17:01:24.627 DEBUG 14528 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 17:01:24.627 DEBUG 14528 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 17:01:24.637 DEBUG 14528 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 17:01:24.647  INFO 14528 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/read/6195
2023-08-02 17:01:24.647 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where id = ? 
2023-08-02 17:01:24.647 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6195(Integer)
2023-08-02 17:01:24.657 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.657 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-02 17:01:24.657 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-02 17:01:24.666 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.668 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:24.668 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 602(Integer)
2023-08-02 17:01:24.677 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.678 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-02 17:01:24.678 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-02 17:01:24.689 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-02 17:01:24.691 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:24.691 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-02 17:01:24.700 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.703 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:24.703 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-02 17:01:24.713 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.716 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:24.716 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-02 17:01:24.726 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.727 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:24.727 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-02 17:01:24.744 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.746 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:01:24.746 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-02 17:01:24.754 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.755 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:24.755 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:24.764 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-02 17:01:24.765 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:24.765 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:24.774 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-02 17:01:24.775 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-02 17:01:24.775 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-02 17:01:24.784 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-02 17:01:24.784 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-02 17:01:24.784 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-02 17:01:24.793 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-02 17:01:24.794 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id from t_exam_paper_answer where id = ? 
2023-08-02 17:01:24.794 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6195(Integer)
2023-08-02 17:01:24.803 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:01:24.803 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectListByPaperAnswerId    : ==>  Preparing: select id, question_id, exam_paper_id, exam_paper_answer_id, question_type, subject_id, customer_score, question_score, question_text_content_id, answer, text_content_id, do_right, create_user, create_time, item_order from t_exam_paper_question_customer_answer where exam_paper_answer_id = ? order by item_order 
2023-08-02 17:01:24.803 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectListByPaperAnswerId    : ==> Parameters: 6195(Integer)
2023-08-02 17:01:24.814 DEBUG 14528 --- [XNIO-1 task-20] r.c.m.x.r.E.selectListByPaperAnswerId    : <==      Total: 5
2023-08-02 17:01:49.896 DEBUG 14528 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:49.896 DEBUG 14528 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:01:49.911 DEBUG 14528 --- [XNIO-1 task-21] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:49.911 DEBUG 14528 --- [XNIO-1 task-21] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:01:49.913 DEBUG 14528 --- [XNIO-1 task-21] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登出了学之思开源考试系统(String), 2023-08-02 17:01:49.911(Timestamp)
2023-08-02 17:01:49.958 DEBUG 14528 --- [XNIO-1 task-21] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:01:55.672 DEBUG 14528 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:55.672 DEBUG 14528 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:55.683 DEBUG 14528 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:56.063 DEBUG 14528 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:56.064 DEBUG 14528 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:56.073 DEBUG 14528 --- [XNIO-1 task-22] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:57.656 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:57.656 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:57.667 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:57.684 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:57.684 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:57.695 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:57.696 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:01:57.696 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : ==> Parameters: 10(Integer), student(String), student(String), student 登录了考试系统(String), 2023-08-02 17:01:57.695(Timestamp)
2023-08-02 17:01:57.720 DEBUG 14528 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:01:58.091  INFO 14528 --- [XNIO-1 task-27] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:01:58.091  INFO 14528 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:01:58.091  INFO 14528 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:01:58.092 DEBUG 14528 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:58.092  INFO 14528 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 17:01:58.092 DEBUG 14528 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:58.099 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:58.099 DEBUG 14528 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:58.099 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:01:58.100 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:58.100 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:58.100 DEBUG 14528 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:01:58.101 DEBUG 14528 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:58.110 DEBUG 14528 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:58.110 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-24] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-24] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 10(Integer)
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 17:01:58.111 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer), 1(Integer), 7(Integer)
2023-08-02 17:01:58.119 DEBUG 14528 --- [XNIO-1 task-24] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:01:58.122 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.r.E.getByUserId                  : <==      Total: 42
2023-08-02 17:01:58.122 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-08-02 17:01:58.122 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:01:58.122 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 17:01:58.123 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:01:58.123 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), 2023-08-02 17:01:58.122(Timestamp), 10(Integer), 4(Integer), 2023-08-02 17:01:58.122(Timestamp)
2023-08-02 17:01:58.132 DEBUG 14528 --- [XNIO-1 task-26] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 17:01:58.138 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 17:01:58.138 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in and deleted = 0 
2023-08-02 17:01:58.138 DEBUG 14528 --- [XNIO-1 task-27] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: 
2023-08-02 17:01:58.362 ERROR 14528 --- [XNIO-1 task-27] c.m.x.c.s.exception.ExceptionHandle      : 
### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\TaskExamMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select * from t_task_exam     where id in           and deleted = 0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
 
org.springframework.jdbc.BadSqlGrammarException: 
### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\TaskExamMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select * from t_task_exam     where id in           and deleted = 0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:74)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectList(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223)
    at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy109.gets(Unknown Source)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl.gets(TaskExamServiceImpl.java:128)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl$$FastClassBySpringCGLIB$$37a8c6a9.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl$$EnhancerBySpringCGLIB$$17a87f95.gets(<generated>)
    at com.mindskip.xzs.controller.student.DashboardController.task(DashboardController.java:85)
    at com.mindskip.xzs.controller.student.DashboardController$$FastClassBySpringCGLIB$$4aa96dd8.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
    at com.mindskip.xzs.controller.student.DashboardController$$EnhancerBySpringCGLIB$$d26a72f1.task(<generated>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:665)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:750)
    at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370)
    at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
    at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
    at sun.reflect.GeneratedMethodAccessor64.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
    at com.sun.proxy.$Proxy145.execute(Unknown Source)
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy143.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at sun.reflect.GeneratedMethodAccessor95.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 116 common frames omitted
 
2023-08-02 17:04:30.490  INFO 14528 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 17:04:30.500  INFO 14528 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 17:04:30.502  INFO 14528 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 17:04:38.357  INFO 15252 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 15252 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 17:04:38.360  INFO 15252 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 17:04:38.416  INFO 15252 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 17:04:38.416  INFO 15252 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 17:04:40.039  INFO 15252 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$6a535c4a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 17:04:40.396  WARN 15252 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 17:04:40.425  INFO 15252 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 17:04:40.426  INFO 15252 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2010 ms
2023-08-02 17:04:41.844  INFO 15252 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 17:04:42.006  INFO 15252 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4bc33710, org.springframework.security.web.context.SecurityContextPersistenceFilter@397e50c4, org.springframework.security.web.header.HeaderWriterFilter@78fedc97, org.springframework.web.filter.CorsFilter@3f7269dc, org.springframework.security.web.authentication.logout.LogoutFilter@543fc983, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@179d3052, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@15bf26f2, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@ddc1a1, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2e79eb68, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@21dc9cf0, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4cd89487, org.springframework.security.web.session.SessionManagementFilter@5ac32b1e, org.springframework.security.web.access.ExceptionTranslationFilter@468c2bb, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@243e0570]
2023-08-02 17:04:42.028  INFO 15252 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 17:04:42.417  INFO 15252 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 17:04:42.436  INFO 15252 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 17:04:42.477  INFO 15252 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 17:04:42.637  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 17:04:42.670  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 17:04:42.688  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 17:04:42.696  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 17:04:42.700  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 17:04:42.739  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 17:04:42.761  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 17:04:42.763  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 17:04:42.765  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 17:04:42.766  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 17:04:42.777  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 17:04:42.783  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 17:04:42.786  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 17:04:42.788  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 17:04:42.790  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 17:04:42.796  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 17:04:42.798  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 17:04:42.803  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 17:04:42.804  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 17:04:42.808  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 17:04:42.817  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 17:04:42.823  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 17:04:42.833  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 17:04:42.835  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 17:04:42.842  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 17:04:42.851  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 17:04:42.855  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 17:04:42.857  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 17:04:42.859  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 17:04:42.883  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 17:04:42.885  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 17:04:42.888  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 17:04:42.891  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 17:04:42.898  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 17:04:42.901  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 17:04:42.907  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 17:04:42.907  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 17:04:42.908  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 17:04:42.908  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 17:04:42.909  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 17:04:42.910  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 17:04:42.911  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 17:04:42.911  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 17:04:42.921  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 17:04:42.924  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 17:04:42.931  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 17:04:42.937  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 17:04:42.938  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 17:04:42.942  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 17:04:42.946  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 17:04:42.955  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 17:04:42.959  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 17:04:42.960  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 17:04:42.961  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 17:04:42.965  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 17:04:42.967  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 17:04:42.970  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 17:04:42.971  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 17:04:42.974  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 17:04:42.976  INFO 15252 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 17:04:43.062  INFO 15252 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 17:04:43.072  INFO 15252 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 17:04:43.163  INFO 15252 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 17:04:43.167  INFO 15252 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.476 seconds (JVM running for 6.724)
2023-08-02 17:04:57.913  INFO 15252 --- [XNIO-1 task-2] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 17:04:57.913  INFO 15252 --- [XNIO-1 task-2] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 17:04:57.925  INFO 15252 --- [XNIO-1 task-2] o.s.web.servlet.DispatcherServlet        : Completed initialization in 12 ms
2023-08-02 17:04:57.992  INFO 15252 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:04:57.992  INFO 15252 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 17:04:58.032  INFO 15252 --- [XNIO-1 task-5] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 17:04:58.321  INFO 15252 --- [XNIO-1 task-5] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 17:04:58.331 DEBUG 15252 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 17:04:58.360 DEBUG 15252 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 17:04:58.390 DEBUG 15252 --- [XNIO-1 task-5] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 17:04:58.394 DEBUG 15252 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:04:58.395 DEBUG 15252 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:04:58.408 DEBUG 15252 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:12.229 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:05:12.229 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:05:12.241 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:12.535 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:05:12.535 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:05:12.552 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:12.568 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:05:12.571 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==> Parameters: 10(Integer), student(String), student(String), student 登录了考试系统(String), 2023-08-02 17:05:12.553(Timestamp)
2023-08-02 17:05:12.600 DEBUG 15252 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:05:12.670  INFO 15252 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:05:12.670 DEBUG 15252 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:05:12.671 DEBUG 15252 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:05:12.684 DEBUG 15252 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:12.689 DEBUG 15252 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:05:12.689 DEBUG 15252 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 10(Integer)
2023-08-02 17:05:12.698 DEBUG 15252 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:05:13.044  INFO 15252 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:05:13.044  INFO 15252 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:05:13.044  INFO 15252 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 17:05:13.044 DEBUG 15252 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:05:13.045 DEBUG 15252 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:05:13.055 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:05:13.055 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:05:13.056 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:05:13.056 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:05:13.056 DEBUG 15252 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:13.065 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:13.065 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:05:13.069 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:05:13.069 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-08-02 17:05:13.075 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 17:05:13.075 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer), 1(Integer), 7(Integer)
2023-08-02 17:05:13.083 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : <==      Total: 42
2023-08-02 17:05:13.084 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-08-02 17:05:13.086 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 17:05:13.086 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:05:13.087 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), 2023-08-02 17:05:13.085(Timestamp), 10(Integer), 4(Integer), 2023-08-02 17:05:13.085(Timestamp)
2023-08-02 17:05:13.087 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:05:13.096 DEBUG 15252 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 17:05:13.106 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 17:05:13.112 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in and deleted = 0 
2023-08-02 17:05:13.112 DEBUG 15252 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: 
2023-08-02 17:05:13.169 ERROR 15252 --- [XNIO-1 task-10] c.m.x.c.s.exception.ExceptionHandle      : 
### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\TaskExamMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select * from t_task_exam     where id in           and deleted = 0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
 
org.springframework.jdbc.BadSqlGrammarException: 
### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\TaskExamMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select * from t_task_exam     where id in           and deleted = 0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:74)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectList(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223)
    at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy109.gets(Unknown Source)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl.gets(TaskExamServiceImpl.java:128)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl$$FastClassBySpringCGLIB$$37a8c6a9.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl$$EnhancerBySpringCGLIB$$3815dec.gets(<generated>)
    at com.mindskip.xzs.controller.student.DashboardController.task(DashboardController.java:87)
    at com.mindskip.xzs.controller.student.DashboardController$$FastClassBySpringCGLIB$$4aa96dd8.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
    at com.mindskip.xzs.controller.student.DashboardController$$EnhancerBySpringCGLIB$$3132a178.task(<generated>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:665)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:750)
    at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370)
    at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
    at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
    at com.sun.proxy.$Proxy145.execute(Unknown Source)
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy143.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 116 common frames omitted
 
2023-08-02 17:16:53.347  INFO 15252 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:16:53.359 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:16:53.360 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:16:53.371 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:16:53.372 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:16:53.372 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-08-02 17:16:53.384 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.r.E.getByUserId                  : <==      Total: 42
2023-08-02 17:17:12.948 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:17:12.949 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:17:12.977 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 17:17:46.717 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:17:46.718 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:17:46.735 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 17:17:55.496 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:17:55.497 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:17:55.511 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 17:18:06.159  WARN 15252 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m37s563ms346µs800ns).
2023-08-02 17:18:06.168 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:18:06.168 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:18:06.179 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 17:18:06.180 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in and deleted = 0 
2023-08-02 17:18:06.180 DEBUG 15252 --- [XNIO-1 task-11] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: 
2023-08-02 17:18:06.194 ERROR 15252 --- [XNIO-1 task-11] c.m.x.c.s.exception.ExceptionHandle      : 
### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\TaskExamMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select * from t_task_exam     where id in           and deleted = 0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
 
org.springframework.jdbc.BadSqlGrammarException: 
### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\TaskExamMapper.xml]
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: select * from t_task_exam     where id in           and deleted = 0
### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
    at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:234)
    at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:74)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectList(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223)
    at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy109.gets(Unknown Source)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl.gets(TaskExamServiceImpl.java:128)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl$$FastClassBySpringCGLIB$$37a8c6a9.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.TaskExamServiceImpl$$EnhancerBySpringCGLIB$$3815dec.gets(<generated>)
    at com.mindskip.xzs.controller.student.DashboardController.task(DashboardController.java:87)
    at com.mindskip.xzs.controller.student.DashboardController$$FastClassBySpringCGLIB$$4aa96dd8.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:749)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
    at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:93)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:688)
    at com.mindskip.xzs.controller.student.DashboardController$$EnhancerBySpringCGLIB$$3132a178.task(<generated>)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892)
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039)
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005)
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:665)
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:750)
    at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
    at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:119)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter.doFilter(RememberMeAuthenticationFilter.java:158)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'and deleted = 0' at line 4
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:97)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)
    at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:370)
    at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
    at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
    at sun.reflect.GeneratedMethodAccessor79.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
    at com.sun.proxy.$Proxy145.execute(Unknown Source)
    at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
    at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy143.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 116 common frames omitted
 
2023-08-02 17:19:38.398  INFO 15252 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 17:19:38.446  INFO 15252 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 17:19:38.449  INFO 15252 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-02 17:19:45.268  INFO 18420 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 18420 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-02 17:19:45.271  INFO 18420 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-02 17:19:45.312  INFO 18420 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-02 17:19:45.312  INFO 18420 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-02 17:19:46.811  INFO 18420 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8c56b71] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-02 17:19:47.181  WARN 18420 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-02 17:19:47.205  INFO 18420 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-02 17:19:47.205  INFO 18420 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1893 ms
2023-08-02 17:19:48.758  INFO 18420 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-02 17:19:48.920  INFO 18420 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@35ad330c, org.springframework.security.web.context.SecurityContextPersistenceFilter@6af3672b, org.springframework.security.web.header.HeaderWriterFilter@75473dc1, org.springframework.web.filter.CorsFilter@6dae4c34, org.springframework.security.web.authentication.logout.LogoutFilter@1b963dc5, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@5d5aeafb, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@4a066587, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@34fed3c2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@31ae5021, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@44b5a2e6, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@37a440a6, org.springframework.security.web.session.SessionManagementFilter@7d1b50fa, org.springframework.security.web.access.ExceptionTranslationFilter@6fd58e6, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@e0b6089]
2023-08-02 17:19:48.943  INFO 18420 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-02 17:19:49.334  INFO 18420 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-02 17:19:49.349  INFO 18420 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-02 17:19:49.386  INFO 18420 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-02 17:19:49.527  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-02 17:19:49.562  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-02 17:19:49.581  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-02 17:19:49.588  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-02 17:19:49.593  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-02 17:19:49.634  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-02 17:19:49.657  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-02 17:19:49.657  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-02 17:19:49.661  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-02 17:19:49.663  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-02 17:19:49.674  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-02 17:19:49.682  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-02 17:19:49.684  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-02 17:19:49.689  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-02 17:19:49.690  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-02 17:19:49.692  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-02 17:19:49.694  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-02 17:19:49.701  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-02 17:19:49.702  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-02 17:19:49.706  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-02 17:19:49.715  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-02 17:19:49.723  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-02 17:19:49.731  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-02 17:19:49.732  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-02 17:19:49.738  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-02 17:19:49.746  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-02 17:19:49.749  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-02 17:19:49.752  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-02 17:19:49.752  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-02 17:19:49.773  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-02 17:19:49.776  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-02 17:19:49.778  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-02 17:19:49.782  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-02 17:19:49.787  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-02 17:19:49.791  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-02 17:19:49.797  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-02 17:19:49.797  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-02 17:19:49.798  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-02 17:19:49.799  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-02 17:19:49.799  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-02 17:19:49.800  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-02 17:19:49.801  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-02 17:19:49.801  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-02 17:19:49.823  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-02 17:19:49.832  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-02 17:19:49.839  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-02 17:19:49.841  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-02 17:19:49.845  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-02 17:19:49.853  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-02 17:19:49.860  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-02 17:19:49.862  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-02 17:19:49.867  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-02 17:19:49.869  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-02 17:19:49.870  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-02 17:19:49.873  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-02 17:19:49.875  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-02 17:19:49.877  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-02 17:19:49.878  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-02 17:19:49.881  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-02 17:19:49.883  INFO 18420 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-02 17:19:49.984  INFO 18420 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-02 17:19:49.996  INFO 18420 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-02 17:19:50.076  INFO 18420 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-02 17:19:50.080  INFO 18420 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.406 seconds (JVM running for 6.499)
2023-08-02 17:21:12.094  INFO 18420 --- [XNIO-1 task-3] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-02 17:21:12.094  INFO 18420 --- [XNIO-1 task-3] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-02 17:21:12.111  INFO 18420 --- [XNIO-1 task-3] o.s.web.servlet.DispatcherServlet        : Completed initialization in 17 ms
2023-08-02 17:21:12.177  INFO 18420 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-02 17:21:12.211  INFO 18420 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-02 17:21:12.554  INFO 18420 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-02 17:21:12.563 DEBUG 18420 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-02 17:21:12.594 DEBUG 18420 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-02 17:21:12.635 DEBUG 18420 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-02 17:21:18.934 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:18.935 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:18.949 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:19.239 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:19.239 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:19.253 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:19.267 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:21:19.269 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登录了考试系统(String), 2023-08-02 17:21:19.253(Timestamp)
2023-08-02 17:21:19.302 DEBUG 18420 --- [XNIO-1 task-6] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:21:19.334  INFO 18420 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:21:19.338 DEBUG 18420 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:19.339 DEBUG 18420 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:19.350 DEBUG 18420 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:19.355 DEBUG 18420 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:21:19.355 DEBUG 18420 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 1028(Integer)
2023-08-02 17:21:19.367 DEBUG 18420 --- [XNIO-1 task-7] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:21:19.649  INFO 18420 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:21:19.651  INFO 18420 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 17:21:19.651  INFO 18420 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:21:19.651 DEBUG 18420 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:19.651 DEBUG 18420 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:19.663 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:19.664 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:19.665 DEBUG 18420 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:19.666 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:19.666 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:19.677 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:19.677 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:19.679 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:21:19.680 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 1028(Integer)
2023-08-02 17:21:19.688 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 17:21:19.688 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 18(Integer), 1028(Integer), 1(Integer), 7(Integer)
2023-08-02 17:21:19.689 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.E.getByUserId                  : <==      Total: 3
2023-08-02 17:21:26.356 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 1
2023-08-02 17:21:26.357 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 17:21:26.358 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 18(Integer), 2023-08-02 17:21:26.357(Timestamp), 1028(Integer), 4(Integer), 2023-08-02 17:21:26.357(Timestamp)
2023-08-02 17:21:26.365 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? ) and deleted = 0 
2023-08-02 17:21:26.366 DEBUG 18420 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 17:21:26.366 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 146(Integer), 147(Integer), 148(Integer)
2023-08-02 17:21:26.376 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 3
2023-08-02 17:21:26.378 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : ==>  Preparing: select * from t_task_exam where id in ( ? ) and deleted = 0 
2023-08-02 17:21:26.378 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : ==> Parameters: 4(Integer)
2023-08-02 17:21:26.388 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.repository.TaskExamMapper.gets   : <==      Total: 1
2023-08-02 17:21:26.389 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByTUid                 : ==>  Preparing: select id, task_exam_id, create_user, create_time, text_content_id from t_task_exam_customer_answer where create_user=? and task_exam_id in ( ? ) 
2023-08-02 17:21:26.390 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByTUid                 : ==> Parameters: 1028(Integer), 4(Integer)
2023-08-02 17:21:26.399 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByTUid                 : <==      Total: 1
2023-08-02 17:21:26.402 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:21:26.402 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 603(Integer)
2023-08-02 17:21:26.413 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:21:26.433 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-02 17:21:26.434 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 604(Integer)
2023-08-02 17:21:26.443 DEBUG 18420 --- [XNIO-1 task-10] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-02 17:21:33.177 DEBUG 18420 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:33.177 DEBUG 18420 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: ppppp(String)
2023-08-02 17:21:33.190 DEBUG 18420 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:33.191 DEBUG 18420 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:21:33.192 DEBUG 18420 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : ==> Parameters: 1028(Integer), ppppp(String), oppo(String), ppppp 登出了学之思开源考试系统(String), 2023-08-02 17:21:33.19(Timestamp)
2023-08-02 17:21:33.225 DEBUG 18420 --- [XNIO-1 task-11] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:21:41.027 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:41.027 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:21:41.038 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:41.042 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:41.043 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:21:41.054 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:41.054 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-02 17:21:41.054 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : ==> Parameters: 10(Integer), student(String), student(String), student 登录了考试系统(String), 2023-08-02 17:21:41.054(Timestamp)
2023-08-02 17:21:41.080 DEBUG 18420 --- [XNIO-1 task-12] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-02 17:21:41.448  INFO 18420 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-08-02 17:21:41.448  INFO 18420 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-08-02 17:21:41.448  INFO 18420 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-08-02 17:21:41.448  INFO 18420 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-08-02 17:21:41.448 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:41.450 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:21:41.458 DEBUG 18420 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:41.458 DEBUG 18420 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:41.458 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-02 17:21:41.458 DEBUG 18420 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:21:41.458 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:21:41.458 DEBUG 18420 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-08-02 17:21:41.464 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:41.465 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? , ? ) and d.department_id=? ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? , ? ) ORDER BY e.id desc ) t 
2023-08-02 17:21:41.466 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer), 1(Integer), 7(Integer)
2023-08-02 17:21:41.468 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:41.468 DEBUG 18420 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:41.468 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-08-02 17:21:41.468 DEBUG 18420 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-02 17:21:41.468 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-08-02 17:21:41.468 DEBUG 18420 --- [XNIO-1 task-14] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-08-02 17:21:41.469 DEBUG 18420 --- [XNIO-1 task-14] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 10(Integer)
2023-08-02 17:21:41.476 DEBUG 18420 --- [XNIO-1 task-14] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-08-02 17:21:41.477 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-08-02 17:21:41.478 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==>  Preparing: select * from( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_department d on d.exam_paper_id = e.id WHERE e.deleted=0 and d.deleted = 0 and e.type = 0 and e.paper_type in ( ? ) and d.department_id=? and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t union all select * from ( SELECT e.id,e.name,e.limit_start_time,e.limit_end_time FROM t_exam_paper e LEFT JOIN t_exam_paper_user u on u.exam_paper_id = e.id WHERE e.deleted=0 and u.deleted = 0 and e.type = 0 and u.user_id = ? and e.paper_type in ( ? ) and ? between e.limit_start_time and e.limit_end_time ORDER BY e.id desc ) t 
2023-08-02 17:21:41.479 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), 2023-08-02 17:21:41.477(Timestamp), 10(Integer), 4(Integer), 2023-08-02 17:21:41.477(Timestamp)
2023-08-02 17:21:41.480 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.r.E.getByUserId                  : <==      Total: 42
2023-08-02 17:21:41.483 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-08-02 17:21:41.483 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.gets  : ==> Parameters: 93(Integer), 91(Integer), 96(Integer), 97(Integer), 98(Integer), 99(Integer), 100(Integer), 101(Integer), 102(Integer), 103(Integer), 104(Integer), 105(Integer), 106(Integer), 107(Integer), 108(Integer), 109(Integer), 110(Integer), 119(Integer), 120(Integer), 121(Integer), 122(Integer), 123(Integer), 124(Integer), 125(Integer), 126(Integer), 127(Integer), 128(Integer), 129(Integer), 130(Integer), 131(Integer), 132(Integer), 133(Integer), 134(Integer), 135(Integer), 136(Integer), 137(Integer), 138(Integer), 139(Integer), 140(Integer), 141(Integer), 142(Integer), 145(Integer)
2023-08-02 17:21:41.490 DEBUG 18420 --- [XNIO-1 task-15] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-08-02 17:21:41.499 DEBUG 18420 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-08-02 18:01:31.452  INFO 18420 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-02 18:01:31.468  INFO 18420 --- [Thread-18] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-02 18:01:31.471  INFO 18420 --- [Thread-18] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'