龚焕茏
2024-05-14 b19d7869a20efec118e6e2b3384b43b53e3ffb27
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
2023-07-31 09:21:40.073  INFO 6552 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 6552 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-07-31 09:21:40.077  INFO 6552 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-07-31 09:21:40.147  INFO 6552 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-07-31 09:21:40.148  INFO 6552 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-07-31 09:21:44.001  INFO 6552 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8f8c9b66] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-07-31 09:21:44.520  WARN 6552 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-07-31 09:21:44.559  INFO 6552 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-07-31 09:21:44.559  INFO 6552 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 4411 ms
2023-07-31 09:21:46.409  INFO 6552 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-07-31 09:21:46.584  INFO 6552 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5ab1c357, org.springframework.security.web.context.SecurityContextPersistenceFilter@582ebb85, org.springframework.security.web.header.HeaderWriterFilter@6380e234, org.springframework.web.filter.CorsFilter@3b95ad97, org.springframework.security.web.authentication.logout.LogoutFilter@3252fbb1, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@275a79a9, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@3a77ef62, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@20105dde, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@273a072e, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@1d9a818a, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3b2eff52, org.springframework.security.web.session.SessionManagementFilter@64dcdda5, org.springframework.security.web.access.ExceptionTranslationFilter@4a995cc5, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@730862ec]
2023-07-31 09:21:46.609  INFO 6552 --- [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-07-31 09:21:47.047  INFO 6552 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-07-31 09:21:47.066  INFO 6552 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-07-31 09:21:47.102  INFO 6552 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-07-31 09:21:47.258  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-07-31 09:21:47.300  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-07-31 09:21:47.318  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-07-31 09:21:47.327  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-07-31 09:21:47.332  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-07-31 09:21:47.375  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-07-31 09:21:47.411  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-07-31 09:21:47.413  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-07-31 09:21:47.415  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-07-31 09:21:47.418  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-07-31 09:21:47.421  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-07-31 09:21:47.432  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-07-31 09:21:47.440  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-07-31 09:21:47.442  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-07-31 09:21:47.446  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-07-31 09:21:47.452  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-07-31 09:21:47.454  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-07-31 09:21:47.459  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-07-31 09:21:47.461  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-07-31 09:21:47.465  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-07-31 09:21:47.476  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-07-31 09:21:47.485  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-07-31 09:21:47.494  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-07-31 09:21:47.495  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-07-31 09:21:47.502  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-07-31 09:21:47.511  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-07-31 09:21:47.515  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-07-31 09:21:47.518  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-07-31 09:21:47.519  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-07-31 09:21:47.539  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-07-31 09:21:47.541  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-07-31 09:21:47.544  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-07-31 09:21:47.547  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-07-31 09:21:47.551  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-07-31 09:21:47.554  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-07-31 09:21:47.561  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-07-31 09:21:47.562  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-07-31 09:21:47.562  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-07-31 09:21:47.562  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-07-31 09:21:47.563  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-07-31 09:21:47.563  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-07-31 09:21:47.564  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-07-31 09:21:47.564  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-07-31 09:21:47.579  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-07-31 09:21:47.583  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-07-31 09:21:47.586  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-07-31 09:21:47.587  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-07-31 09:21:47.588  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-07-31 09:21:47.589  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-07-31 09:21:47.590  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-07-31 09:21:47.592  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-07-31 09:21:47.593  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-07-31 09:21:47.597  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-07-31 09:21:47.597  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-07-31 09:21:47.600  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-07-31 09:21:47.606  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-07-31 09:21:47.610  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-07-31 09:21:47.611  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-07-31 09:21:47.616  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-07-31 09:21:47.617  INFO 6552 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-07-31 09:21:47.729  INFO 6552 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-07-31 09:21:47.746  INFO 6552 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-07-31 09:21:47.825  INFO 6552 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-07-31 09:21:47.828  INFO 6552 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 8.506 seconds (JVM running for 10.707)
2023-07-31 09:25:55.088  INFO 6552 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-31 09:25:55.088  INFO 6552 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-07-31 09:25:55.113  INFO 6552 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 25 ms
2023-07-31 09:25:55.213  INFO 6552 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 09:25:55.267  INFO 6552 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-07-31 09:25:55.745  INFO 6552 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-07-31 09:25:55.765 DEBUG 6552 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 09:25:55.819 DEBUG 6552 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 09:25:55.877 DEBUG 6552 --- [XNIO-1 task-1] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 09:26:14.038  INFO 6552 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 09:26:14.049 DEBUG 6552 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 09:26:14.049 DEBUG 6552 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 09:26:14.061 DEBUG 6552 --- [XNIO-1 task-8] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 09:29:26.207 DEBUG 6552 --- [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-07-31 09:29:26.209 DEBUG 6552 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 09:29:26.226 DEBUG 6552 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 09:29:26.866 DEBUG 6552 --- [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-07-31 09:29:26.867 DEBUG 6552 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 09:29:26.878 DEBUG 6552 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 09:29:26.917 DEBUG 6552 --- [XNIO-1 task-9] 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-07-31 09:29:26.923 DEBUG 6552 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-07-31 09:29:26.879(Timestamp)
2023-07-31 09:29:26.951 DEBUG 6552 --- [XNIO-1 task-9] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-07-31 09:29:27.053  INFO 6552 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-07-31 09:29:27.074 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-07-31 09:29:27.075 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 09:29:27.088 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 09:29:27.095 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-07-31 09:29:27.095 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-07-31 09:29:27.105 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-07-31 09:29:27.114 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-07-31 09:29:27.115 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 09:29:27.125 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 09:29:27.126 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-07-31 09:29:27.126 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 09:29:27.136 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 09:29:27.142 DEBUG 6552 --- [XNIO-1 task-10] 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-07-31 09:29:27.142 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 09:29:27.153 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.U.selectCountByDate            : <==      Total: 14
2023-07-31 09:29:27.159 DEBUG 6552 --- [XNIO-1 task-10] 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-07-31 09:29:27.159 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 09:29:27.170 DEBUG 6552 --- [XNIO-1 task-10] r.c.m.x.r.E.selectCountByDate            : <==      Total: 6
2023-07-31 11:09:16.990 ERROR 6552 --- [XNIO-1 task-13] io.undertow.request                      : UT005023: Exception handling request to /api/user/logout
 
java.lang.NullPointerException: null
    at com.mindskip.xzs.configuration.spring.security.RestLogoutSuccessHandler.onLogoutSuccess(RestLogoutSuccessHandler.java:45)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:111)
    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)
 
2023-07-31 11:09:17.114  INFO 6552 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/error
2023-07-31 11:20:27.811 DEBUG 6552 --- [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-07-31 11:20:27.824 DEBUG 6552 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 11:20:27.851 DEBUG 6552 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 11:20:27.872 DEBUG 6552 --- [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-07-31 11:20:27.872 DEBUG 6552 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 11:20:27.891 DEBUG 6552 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 11:20:27.897 DEBUG 6552 --- [XNIO-1 task-16] 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-07-31 11:20:27.899 DEBUG 6552 --- [XNIO-1 task-16] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-07-31 11:20:27.891(Timestamp)
2023-07-31 11:20:27.934 DEBUG 6552 --- [XNIO-1 task-16] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-07-31 11:20:28.067  INFO 6552 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-07-31 11:20:28.074 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-07-31 11:20:28.075 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 11:20:28.086 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 11:20:28.089 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-07-31 11:20:28.090 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-07-31 11:20:28.103 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-07-31 11:20:28.106 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-07-31 11:20:28.106 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 11:20:28.115 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 11:20:28.117 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-07-31 11:20:28.118 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 11:20:28.135 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 11:20:28.140 DEBUG 6552 --- [XNIO-1 task-17] 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-07-31 11:20:28.148 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 11:20:28.161 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.U.selectCountByDate            : <==      Total: 14
2023-07-31 11:20:28.164 DEBUG 6552 --- [XNIO-1 task-17] 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-07-31 11:20:28.164 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 11:20:28.175 DEBUG 6552 --- [XNIO-1 task-17] r.c.m.x.r.E.selectCountByDate            : <==      Total: 6
2023-07-31 11:43:59.254  INFO 6552 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/page
2023-07-31 11:43:59.360 DEBUG 6552 --- [XNIO-1 task-18] r.c.m.x.r.SubjectMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_subject WHERE deleted = 0 
2023-07-31 11:43:59.361 DEBUG 6552 --- [XNIO-1 task-18] r.c.m.x.r.SubjectMapper.page_COUNT       : ==> Parameters: 
2023-07-31 11:43:59.376 DEBUG 6552 --- [XNIO-1 task-18] r.c.m.x.r.SubjectMapper.page_COUNT       : <==      Total: 1
2023-07-31 11:43:59.383 DEBUG 6552 --- [XNIO-1 task-18] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted = 0 order by id desc LIMIT ? 
2023-07-31 11:43:59.384 DEBUG 6552 --- [XNIO-1 task-18] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 10(Integer)
2023-07-31 11:43:59.393 DEBUG 6552 --- [XNIO-1 task-18] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 2
2023-07-31 11:51:02.479  INFO 6552 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 11:51:02.494 DEBUG 6552 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 11:51:02.495 DEBUG 6552 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 11:51:02.535 DEBUG 6552 --- [XNIO-1 task-21] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 11:51:02.604  INFO 6552 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-07-31 11:51:02.628 DEBUG 6552 --- [XNIO-1 task-20] 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 GROUP BY q.id) table_count 
2023-07-31 11:51:02.629 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-07-31 11:51:02.671 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-07-31 11:51:02.674 DEBUG 6552 --- [XNIO-1 task-20] 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 GROUP BY q.id order by id desc LIMIT ? 
2023-07-31 11:51:02.675 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-07-31 11:51:02.705 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 9
2023-07-31 11:51:02.734 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:02.735 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 538(Integer)
2023-07-31 11:51:02.774 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:02.819 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:02.819 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 432(Integer)
2023-07-31 11:51:02.829 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:51:02.830 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:02.832 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:02.841 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:02.841 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:02.842 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:51:02.861 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:02.862 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:02.862 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-07-31 11:51:02.897 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:02.898 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:02.898 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-07-31 11:51:02.907 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:51:02.908 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:02.908 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:02.953 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:02.953 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:02.954 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:51:02.980 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:02.981 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:02.981 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-07-31 11:51:03.010 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.011 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.011 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-07-31 11:51:03.021 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:51:03.022 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.022 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.069 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.072 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:03.072 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-07-31 11:51:03.082 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.083 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.083 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-07-31 11:51:03.107 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:51:03.108 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.108 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.136 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.136 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.137 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:51:03.148 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.149 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:03.149 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-07-31 11:51:03.176 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.178 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.179 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-07-31 11:51:03.202 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:51:03.203 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.203 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.238 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.239 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.239 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:51:03.250 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.250 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:03.251 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 11:51:03.261 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.262 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.262 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 11:51:03.271 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:51:03.272 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.272 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.303 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.304 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:03.305 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 11:51:03.320 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.321 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.321 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-07-31 11:51:03.331 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:51:03.332 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.332 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.342 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.343 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.343 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:51:03.355 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.355 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:03.356 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 11:51:03.378 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.379 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.380 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 11:51:03.407 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:51:03.407 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.409 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.456 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.459 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.460 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:51:03.469 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:51:03.469 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:51:03.470 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 11:51:03.478 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:51:03.479 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.479 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-07-31 11:51:03.517 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:51:03.519 DEBUG 6552 --- [XNIO-1 task-20] 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-07-31 11:51:03.519 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:51:03.538 DEBUG 6552 --- [XNIO-1 task-20] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:53:51.604  INFO 6552 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 11:53:51.611  INFO 6552 --- [XNIO-1 task-23] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-07-31 11:53:51.612 DEBUG 6552 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 11:53:51.612 DEBUG 6552 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 11:53:51.622 DEBUG 6552 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 11:53:51.630 DEBUG 6552 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-07-31 11:53:51.630 DEBUG 6552 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-07-31 11:53:51.639 DEBUG 6552 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-07-31 11:53:51.641 DEBUG 6552 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-07-31 11:53:51.641 DEBUG 6552 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-07-31 11:53:51.651 DEBUG 6552 --- [XNIO-1 task-23] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 3
2023-07-31 11:54:26.720  INFO 6552 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 11:54:26.721  INFO 6552 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-07-31 11:54:26.729 DEBUG 6552 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 11:54:26.729 DEBUG 6552 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 11:54:26.730 DEBUG 6552 --- [XNIO-1 task-25] 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 GROUP BY q.id) table_count 
2023-07-31 11:54:26.731 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-07-31 11:54:26.746 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-07-31 11:54:26.746 DEBUG 6552 --- [XNIO-1 task-24] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 11:54:26.751 DEBUG 6552 --- [XNIO-1 task-25] 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 GROUP BY q.id order by id desc LIMIT ? 
2023-07-31 11:54:26.751 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-07-31 11:54:26.823 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 9
2023-07-31 11:54:26.825 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:26.826 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 538(Integer)
2023-07-31 11:54:26.835 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:26.836 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:26.836 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 432(Integer)
2023-07-31 11:54:26.860 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:26.860 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:26.861 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:26.882 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:26.883 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:26.883 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:26.910 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:26.912 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:26.912 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-07-31 11:54:26.928 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:26.928 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:26.928 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-07-31 11:54:26.940 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:26.941 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:26.941 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:26.961 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:26.962 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:26.962 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:26.991 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:26.991 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:26.993 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-07-31 11:54:27.015 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.016 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.016 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-07-31 11:54:27.041 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:54:27.042 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.042 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.065 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.066 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:27.066 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-07-31 11:54:27.088 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.089 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.090 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-07-31 11:54:27.099 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:27.100 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.100 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.115 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.116 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.116 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:27.143 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.144 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:27.144 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-07-31 11:54:27.154 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.155 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.156 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-07-31 11:54:27.188 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:27.189 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.189 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.207 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.208 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.208 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:27.241 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.242 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:27.242 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 11:54:27.253 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.253 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.254 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 11:54:27.285 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:54:27.287 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.287 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.301 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.307 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:27.307 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 11:54:27.342 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.344 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.344 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-07-31 11:54:27.375 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:27.376 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.376 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.388 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.389 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.389 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:27.406 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.407 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:27.407 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 11:54:27.440 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.440 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.442 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 11:54:27.462 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:27.463 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.463 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.493 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.493 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.493 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:27.513 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:27.514 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:27.514 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 11:54:27.541 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:27.542 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.542 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-07-31 11:54:27.558 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:54:27.558 DEBUG 6552 --- [XNIO-1 task-25] 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-07-31 11:54:27.559 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:27.595 DEBUG 6552 --- [XNIO-1 task-25] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:30.596  INFO 6552 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/432
2023-07-31 11:54:30.616 DEBUG 6552 --- [XNIO-1 task-26] 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-07-31 11:54:30.616 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 432(Integer)
2023-07-31 11:54:30.629 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:30.630 DEBUG 6552 --- [XNIO-1 task-26] 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-07-31 11:54:30.632 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 432(Integer)
2023-07-31 11:54:30.670 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:30.673 DEBUG 6552 --- [XNIO-1 task-26] 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-07-31 11:54:30.673 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:30.681 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:30.682 DEBUG 6552 --- [XNIO-1 task-26] 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-07-31 11:54:30.682 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:30.693 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:30.693 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:30.694 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 538(Integer)
2023-07-31 11:54:30.716 DEBUG 6552 --- [XNIO-1 task-26] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:34.922  INFO 6552 --- [XNIO-1 task-27] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/delete/432
2023-07-31 11:54:35.046 DEBUG 6552 --- [XNIO-1 task-27] 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-07-31 11:54:35.047 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 432(Integer)
2023-07-31 11:54:35.071 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:35.074 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==>  Preparing: update t_question SET question_type = ?, score = ?, difficult = ?, correct = ?, info_text_content_id = ?, create_user = ?, status = ?, create_time = ?, deleted = ? where id = ? 
2023-07-31 11:54:35.078 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.updateByPrimaryKeySelective  : ==> Parameters: 3(Integer), 20(Integer), 4(Integer), A(String), 538(Integer), 2(Integer), 1(Integer), 2023-07-13 16:52:42.0(Timestamp), true(Boolean), 432(Integer)
2023-07-31 11:54:35.115 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.updateByPrimaryKeySelective  : <==    Updates: 1
2023-07-31 11:54:35.116 DEBUG 6552 --- [XNIO-1 task-27] 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-07-31 11:54:35.116 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 432(Integer)
2023-07-31 11:54:35.134 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:35.145 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.QuestionSubjectMapper.removes  : ==>  Preparing: delete from t_question_subject where id in ( ? , ? ) 
2023-07-31 11:54:35.145 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.QuestionSubjectMapper.removes  : ==> Parameters: 494(Integer), 495(Integer)
2023-07-31 11:54:35.210 DEBUG 6552 --- [XNIO-1 task-27] r.c.m.x.r.QuestionSubjectMapper.removes  : <==    Updates: 2
2023-07-31 11:54:35.575  INFO 6552 --- [XNIO-1 task-28] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-07-31 11:54:35.576 DEBUG 6552 --- [XNIO-1 task-28] 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 GROUP BY q.id) table_count 
2023-07-31 11:54:35.577 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-07-31 11:54:35.611 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-07-31 11:54:35.613 DEBUG 6552 --- [XNIO-1 task-28] 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 GROUP BY q.id order by id desc LIMIT ? 
2023-07-31 11:54:35.613 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-07-31 11:54:35.623 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-07-31 11:54:35.624 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:35.624 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-07-31 11:54:35.633 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:35.633 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.633 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-07-31 11:54:35.643 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:35.644 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.644 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:35.652 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.653 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.653 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:35.672 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.672 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:35.674 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-07-31 11:54:35.701 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:35.701 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.701 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-07-31 11:54:35.735 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:54:35.735 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.736 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:35.747 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.748 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:35.748 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-07-31 11:54:35.757 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:35.759 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.759 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-07-31 11:54:35.776 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:35.777 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.777 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:35.811 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.811 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.811 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:35.846 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.849 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:35.849 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-07-31 11:54:35.887 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:35.887 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.887 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-07-31 11:54:35.915 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:35.916 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.916 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:35.943 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.944 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.944 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:35.959 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:35.960 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:35.960 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 11:54:35.993 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:35.994 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:35.994 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 11:54:36.022 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:54:36.023 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.023 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:36.039 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:36.040 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:36.040 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 11:54:36.064 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:36.066 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.066 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-07-31 11:54:36.086 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:36.087 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.087 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:36.107 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:36.108 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.109 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:36.136 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:36.137 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:36.137 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 11:54:36.148 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:36.148 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.149 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 11:54:36.182 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 11:54:36.183 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.183 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:36.221 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:36.222 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.222 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 11:54:36.248 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:36.249 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 11:54:36.249 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 11:54:36.277 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 11:54:36.279 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.279 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-07-31 11:54:36.312 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 11:54:36.313 DEBUG 6552 --- [XNIO-1 task-28] 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-07-31 11:54:36.313 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 11:54:36.323 DEBUG 6552 --- [XNIO-1 task-28] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 11:54:52.879  INFO 6552 --- [XNIO-1 task-29] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 11:54:52.882  INFO 6552 --- [XNIO-1 task-30] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-07-31 11:54:52.898 DEBUG 6552 --- [XNIO-1 task-29] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 11:54:52.898 DEBUG 6552 --- [XNIO-1 task-29] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 11:54:52.907 DEBUG 6552 --- [XNIO-1 task-29] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 11:54:52.931 DEBUG 6552 --- [XNIO-1 task-30] 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-07-31 11:54:52.931 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-07-31 11:54:52.960 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-07-31 11:54:52.963 DEBUG 6552 --- [XNIO-1 task-30] 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-07-31 11:54:52.963 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-07-31 11:54:52.998 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 5
2023-07-31 11:54:53.003 DEBUG 6552 --- [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-07-31 11:54:53.003 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-07-31 11:54:53.025 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 11:54:53.028 DEBUG 6552 --- [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-07-31 11:54:53.028 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-07-31 11:54:53.052 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 11:54:53.052 DEBUG 6552 --- [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-07-31 11:54:53.052 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 11:54:53.063 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 11:54:53.063 DEBUG 6552 --- [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-07-31 11:54:53.064 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-07-31 11:54:53.072 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 11:54:53.073 DEBUG 6552 --- [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-07-31 11:54:53.073 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 11:54:53.083 DEBUG 6552 --- [XNIO-1 task-30] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 13:33:02.667 DEBUG 6552 --- [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-07-31 13:33:02.667 DEBUG 6552 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 13:33:02.683 DEBUG 6552 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 13:33:02.699 DEBUG 6552 --- [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-07-31 13:33:02.699 DEBUG 6552 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 13:33:02.707 DEBUG 6552 --- [XNIO-1 task-35] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 13:33:02.715 DEBUG 6552 --- [XNIO-1 task-35] 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-07-31 13:33:02.729 DEBUG 6552 --- [XNIO-1 task-35] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-07-31 13:33:02.707(Timestamp)
2023-07-31 13:33:02.755 DEBUG 6552 --- [XNIO-1 task-35] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-07-31 13:33:02.973  INFO 6552 --- [XNIO-1 task-36] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-07-31 13:33:02.981 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-07-31 13:33:02.981 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 13:33:02.989 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 13:33:02.997 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-07-31 13:33:02.997 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-07-31 13:33:03.013 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-07-31 13:33:03.013 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-07-31 13:33:03.013 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 13:33:03.021 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 13:33:03.029 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-07-31 13:33:03.029 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 13:33:03.037 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 13:33:03.037 DEBUG 6552 --- [XNIO-1 task-36] 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-07-31 13:33:03.037 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 13:33:03.053 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.U.selectCountByDate            : <==      Total: 14
2023-07-31 13:33:03.053 DEBUG 6552 --- [XNIO-1 task-36] 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-07-31 13:33:03.061 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 13:33:03.069 DEBUG 6552 --- [XNIO-1 task-36] r.c.m.x.r.E.selectCountByDate            : <==      Total: 6
2023-07-31 13:33:06.607  INFO 6552 --- [XNIO-1 task-37] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:33:06.623 DEBUG 6552 --- [XNIO-1 task-37] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 13:33:06.623 DEBUG 6552 --- [XNIO-1 task-37] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:33:06.623  INFO 6552 --- [XNIO-1 task-38] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-07-31 13:33:06.638 DEBUG 6552 --- [XNIO-1 task-37] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:33:06.642 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 13:33:06.669 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 13:33:06.681 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 13:33:06.701 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:33:06.701 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-07-31 13:33:06.706 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-07-31 13:33:06.714 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:33:06.714 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-07-31 13:33:06.756 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-07-31 13:33:06.756 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:33:06.756 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-07-31 13:33:06.768 DEBUG 6552 --- [XNIO-1 task-38] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-07-31 13:34:37.953  INFO 6552 --- [XNIO-1 task-39] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/list
2023-07-31 13:34:38.057 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 13:34:38.057 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 
2023-07-31 13:34:38.068 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 13:34:38.073 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 13:34:38.073 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer)
2023-07-31 13:34:38.081 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.E.list                         : <==      Total: 4
2023-07-31 13:34:38.081 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:34:38.081 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 13:34:38.097 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:34:38.097 DEBUG 6552 --- [XNIO-1 task-39] 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-07-31 13:34:38.097 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-07-31 13:34:38.113 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:34:38.113 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:34:38.113 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 13:34:38.121 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:34:38.121 DEBUG 6552 --- [XNIO-1 task-39] 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-07-31 13:34:38.121 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-07-31 13:34:38.129 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:34:38.129 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:34:38.129 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 13:34:38.145 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:34:38.145 DEBUG 6552 --- [XNIO-1 task-39] 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-07-31 13:34:38.145 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-07-31 13:34:38.156 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:34:38.156 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:34:38.156 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 13:34:38.164 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:34:38.167 DEBUG 6552 --- [XNIO-1 task-39] 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-07-31 13:34:38.167 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-07-31 13:34:38.178 DEBUG 6552 --- [XNIO-1 task-39] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:34:40.051  INFO 6552 --- [XNIO-1 task-40] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:34:40.063 DEBUG 6552 --- [XNIO-1 task-40] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 13:34:40.063 DEBUG 6552 --- [XNIO-1 task-40] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:34:40.086 DEBUG 6552 --- [XNIO-1 task-40] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:34:40.134  INFO 6552 --- [XNIO-1 task-41] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-07-31 13:34:40.158 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates 
2023-07-31 13:34:40.158 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-07-31 13:34:40.166 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-07-31 13:34:40.171 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT id, name, paper_type, suggest_time, title_name, ctime FROM t_exam_templates order by id desc LIMIT ? 
2023-07-31 13:34:40.171 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-07-31 13:34:40.174 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-07-31 13:34:40.182 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.182 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 28(Integer)
2023-07-31 13:34:40.234 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 13:34:40.234 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.234 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 27(Integer)
2023-07-31 13:34:40.242 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 13:34:40.242 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.242 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 26(Integer)
2023-07-31 13:34:40.292 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:34:40.292 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.292 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 25(Integer)
2023-07-31 13:34:40.300 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:34:40.300 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.300 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 23(Integer)
2023-07-31 13:34:40.316 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:34:40.318 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.318 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 22(Integer)
2023-07-31 13:34:40.363 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 13:34:40.363 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.366 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 18(Integer)
2023-07-31 13:34:40.375 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:34:40.377 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.377 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 17(Integer)
2023-07-31 13:34:40.385 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:34:40.386 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.386 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 16(Integer)
2023-07-31 13:34:40.434 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:34:40.434 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:34:40.434 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 15(Integer)
2023-07-31 13:34:40.442 DEBUG 6552 --- [XNIO-1 task-41] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:37:43.837  INFO 6552 --- [XNIO-1 task-43] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:37:43.837  INFO 6552 --- [XNIO-1 task-42] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:37:43.853 DEBUG 6552 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 13:37:43.853 DEBUG 6552 --- [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-07-31 13:37:43.853 DEBUG 6552 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:37:43.853 DEBUG 6552 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:37:43.861 DEBUG 6552 --- [XNIO-1 task-43] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:37:43.861 DEBUG 6552 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:37:44.125  INFO 6552 --- [XNIO-1 task-44] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-07-31 13:37:44.125 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 13:37:44.125 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 13:37:44.134 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 13:37:44.134 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:37:44.134 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-07-31 13:37:44.142 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-07-31 13:37:44.150 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:37:44.150 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-07-31 13:37:44.174 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-07-31 13:37:44.182 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:37:44.182 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-07-31 13:37:44.190 DEBUG 6552 --- [XNIO-1 task-44] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-07-31 13:40:12.408  INFO 6552 --- [XNIO-1 task-45] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:40:12.408  INFO 6552 --- [XNIO-1 task-46] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-07-31 13:40:12.416 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates 
2023-07-31 13:40:12.416 DEBUG 6552 --- [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-07-31 13:40:12.416 DEBUG 6552 --- [XNIO-1 task-45] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:40:12.416 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-07-31 13:40:12.424 DEBUG 6552 --- [XNIO-1 task-45] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:40:12.424 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-07-31 13:40:12.432 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.ExamTemplatesMapper.gets       : ==>  Preparing: SELECT id, name, paper_type, suggest_time, title_name, ctime FROM t_exam_templates order by id desc LIMIT ? 
2023-07-31 13:40:12.432 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-07-31 13:40:12.440 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-07-31 13:40:12.440 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.440 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 28(Integer)
2023-07-31 13:40:12.456 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 13:40:12.456 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.456 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 27(Integer)
2023-07-31 13:40:12.464 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 13:40:12.464 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.464 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 26(Integer)
2023-07-31 13:40:12.472 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:12.472 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.472 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 25(Integer)
2023-07-31 13:40:12.480 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:12.488 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.488 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 23(Integer)
2023-07-31 13:40:12.496 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:12.496 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.496 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 22(Integer)
2023-07-31 13:40:12.504 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 13:40:12.504 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.504 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 18(Integer)
2023-07-31 13:40:12.512 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:12.520 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.520 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 17(Integer)
2023-07-31 13:40:12.529 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:12.529 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.529 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 16(Integer)
2023-07-31 13:40:12.540 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:12.542 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 13:40:12.542 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 15(Integer)
2023-07-31 13:40:12.549 DEBUG 6552 --- [XNIO-1 task-46] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-07-31 13:40:47.447  INFO 6552 --- [XNIO-1 task-47] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:40:47.447  INFO 6552 --- [XNIO-1 task-48] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-07-31 13:40:47.458 DEBUG 6552 --- [XNIO-1 task-47] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 13:40:47.458 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 13:40:47.458 DEBUG 6552 --- [XNIO-1 task-47] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:40:47.458 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 13:40:47.458  INFO 6552 --- [XNIO-1 task-49] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:40:47.465 DEBUG 6552 --- [XNIO-1 task-47] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:40:47.465 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 13:40:47.465 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:40:47.473 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-07-31 13:40:47.473 DEBUG 6552 --- [XNIO-1 task-49] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 13:40:47.473 DEBUG 6552 --- [XNIO-1 task-49] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:40:47.490 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-07-31 13:40:47.490 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:40:47.490 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-07-31 13:40:47.496 DEBUG 6552 --- [XNIO-1 task-49] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:40:47.543 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-07-31 13:40:47.547 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-07-31 13:40:47.547 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-07-31 13:40:47.555 DEBUG 6552 --- [XNIO-1 task-48] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-07-31 13:45:06.834  INFO 6552 --- [XNIO-1 task-50] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/list
2023-07-31 13:45:06.850 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 13:45:06.850 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 
2023-07-31 13:45:06.858 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 13:45:06.866 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 13:45:06.866 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer)
2023-07-31 13:45:06.874 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.E.list                         : <==      Total: 4
2023-07-31 13:45:06.874 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:45:06.874 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 13:45:06.882 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:45:06.882 DEBUG 6552 --- [XNIO-1 task-50] 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-07-31 13:45:06.882 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-07-31 13:45:06.898 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:45:06.898 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:45:06.898 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 13:45:06.906 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:45:06.906 DEBUG 6552 --- [XNIO-1 task-50] 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-07-31 13:45:06.906 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-07-31 13:45:06.922 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:45:06.922 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:45:06.922 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 13:45:06.930 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:45:06.930 DEBUG 6552 --- [XNIO-1 task-50] 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-07-31 13:45:06.930 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-07-31 13:45:06.946 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:45:06.946 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 13:45:06.946 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 13:45:06.954 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 13:45:06.954 DEBUG 6552 --- [XNIO-1 task-50] 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-07-31 13:45:06.954 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-07-31 13:45:06.970 DEBUG 6552 --- [XNIO-1 task-50] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 13:49:30.531  INFO 6552 --- [XNIO-1 task-51] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/sourceList
2023-07-31 13:49:30.538 DEBUG 6552 --- [XNIO-1 task-51] r.c.m.x.r.E.getByUserIdAndTemplatesId    : ==>  Preparing: select * from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-07-31 13:49:30.538 DEBUG 6552 --- [XNIO-1 task-51] r.c.m.x.r.E.getByUserIdAndTemplatesId    : ==> Parameters: 10(Integer), 28(Integer)
2023-07-31 13:49:30.556 DEBUG 6552 --- [XNIO-1 task-51] r.c.m.x.r.E.getByUserIdAndTemplatesId    : <==      Total: 1
2023-07-31 13:49:30.692 DEBUG 6552 --- [XNIO-1 task-51] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : ==>  Preparing: select count(0) from (select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as 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,create_user) in ( (?,?) )) tmp_count 
2023-07-31 13:49:30.692 DEBUG 6552 --- [XNIO-1 task-51] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : ==> Parameters: 142(Integer), 10(Integer)
2023-07-31 13:49:30.700 DEBUG 6552 --- [XNIO-1 task-51] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : <==      Total: 1
2023-07-31 13:49:30.708  WARN 6552 --- [XNIO-1 task-51] c.g.pagehelper.parser.OrderByParser      : 处理排序失败: net.sf.jsqlparser.JSQLParserException,降级为直接拼接 order by 参数
2023-07-31 13:49:30.708 DEBUG 6552 --- [XNIO-1 task-51] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as 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,create_user) in ( (?,?) ) order by id desc LIMIT ? 
2023-07-31 13:49:30.708 DEBUG 6552 --- [XNIO-1 task-51] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 142(Integer), 10(Integer), 10(Integer)
2023-07-31 13:49:30.724 DEBUG 6552 --- [XNIO-1 task-51] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-07-31 13:49:58.012  INFO 6552 --- [XNIO-1 task-52] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/task/page
2023-07-31 13:49:58.042 DEBUG 6552 --- [XNIO-1 task-52] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_task_exam WHERE deleted = 0 
2023-07-31 13:49:58.042 DEBUG 6552 --- [XNIO-1 task-52] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==> Parameters: 
2023-07-31 13:49:58.050 DEBUG 6552 --- [XNIO-1 task-52] r.c.m.x.r.TaskExamMapper.page_COUNT      : <==      Total: 1
2023-07-31 13:53:20.481  INFO 6552 --- [XNIO-1 task-53] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 13:53:20.497 DEBUG 6552 --- [XNIO-1 task-53] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 13:53:20.497 DEBUG 6552 --- [XNIO-1 task-53] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 13:53:20.505 DEBUG 6552 --- [XNIO-1 task-53] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 13:55:30.575  INFO 6552 --- [XNIO-1 task-54] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/taskExamPage
2023-07-31 13:55:30.631 DEBUG 6552 --- [XNIO-1 task-54] 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-07-31 13:55:30.639 DEBUG 6552 --- [XNIO-1 task-54] r.c.m.x.r.E.taskExamPage_COUNT           : ==> Parameters: null, 6(Integer)
2023-07-31 13:55:30.647 DEBUG 6552 --- [XNIO-1 task-54] r.c.m.x.r.E.taskExamPage_COUNT           : <==      Total: 1
2023-07-31 13:56:47.890  INFO 6552 --- [XNIO-1 task-55] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/task/page
2023-07-31 13:56:47.905 DEBUG 6552 --- [XNIO-1 task-55] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM t_task_exam WHERE deleted = 0 
2023-07-31 13:56:47.905 DEBUG 6552 --- [XNIO-1 task-55] r.c.m.x.r.TaskExamMapper.page_COUNT      : ==> Parameters: 
2023-07-31 13:56:47.915 DEBUG 6552 --- [XNIO-1 task-55] r.c.m.x.r.TaskExamMapper.page_COUNT      : <==      Total: 1
2023-07-31 14:01:00.098  INFO 6552 --- [XNIO-1 task-56] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 14:01:00.106  INFO 6552 --- [XNIO-1 task-57] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/examPaperAnswer/page
2023-07-31 14:01:00.114 DEBUG 6552 --- [XNIO-1 task-56] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 14:01:00.114 DEBUG 6552 --- [XNIO-1 task-56] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 14:01:00.122 DEBUG 6552 --- [XNIO-1 task-56] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 14:01:00.122 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.adminPage_COUNT              : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer 
2023-07-31 14:01:00.130 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.adminPage_COUNT              : ==> Parameters: 
2023-07-31 14:01:00.138 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.adminPage_COUNT              : <==      Total: 1
2023-07-31 14:01:00.138 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.adminPage                    : ==>  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 order by user_score desc LIMIT ? 
2023-07-31 14:01:00.138 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.adminPage                    : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.146 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.adminPage                    : <==      Total: 10
2023-07-31 14:01:00.163 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.163 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.171 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.171 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.171 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6188(Integer)
2023-07-31 14:01:00.187 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.187 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.187 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 110(Integer)
2023-07-31 14:01:00.195 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.198 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.198 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.211 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.211 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.211 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-07-31 14:01:00.227 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.227 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.227 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6191(Integer)
2023-07-31 14:01:00.235 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.235 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.235 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 14:01:00.244 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.244 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.244 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.260 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.260 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.260 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.268 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.268 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.268 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6185(Integer)
2023-07-31 14:01:00.276 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.284 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.284 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:00.292 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.292 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.292 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.300 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.300 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.300 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-07-31 14:01:00.308 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.308 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.308 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6190(Integer)
2023-07-31 14:01:00.324 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.324 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.324 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 14:01:00.332 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.332 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.332 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.340 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.340 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.340 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.356 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.356 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.356 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6179(Integer)
2023-07-31 14:01:00.364 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.372 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.372 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 14:01:00.380 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.380 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.380 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.388 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.388 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.388 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.399 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.404 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.404 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6181(Integer)
2023-07-31 14:01:00.412 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.412 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.412 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:00.424 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.426 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.426 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.430 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.437 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.437 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.446 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.446 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.446 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6184(Integer)
2023-07-31 14:01:00.459 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.459 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.459 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:00.465 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.465 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.471 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.480 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.480 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.480 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.494 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.494 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.494 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6186(Integer)
2023-07-31 14:01:00.499 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.504 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.504 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:00.513 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.513 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.515 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.524 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.527 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.527 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.530 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.538 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.539 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6180(Integer)
2023-07-31 14:01:00.547 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.547 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.547 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:00.558 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.560 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.560 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.565 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:00.565 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:00.565 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:00.579 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:00.579 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.579 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6182(Integer)
2023-07-31 14:01:00.589 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:00.589 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:00.589 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:00.599 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:00.599 DEBUG 6552 --- [XNIO-1 task-57] 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-07-31 14:01:00.599 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:00.609 DEBUG 6552 --- [XNIO-1 task-57] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:09.356  INFO 6552 --- [XNIO-1 task-58] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/examPaperAnswer/paperStatistics
2023-07-31 14:01:10.161 DEBUG 6552 --- [XNIO-1 task-58] r.c.m.x.r.E.selectByPaperName            : ==>  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 
2023-07-31 14:01:10.165 DEBUG 6552 --- [XNIO-1 task-58] r.c.m.x.r.E.selectByPaperName            : ==> Parameters: 
2023-07-31 14:01:10.174 DEBUG 6552 --- [XNIO-1 task-58] r.c.m.x.r.E.selectByPaperName            : <==      Total: 13
2023-07-31 14:01:21.824  INFO 6552 --- [XNIO-1 task-59] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 14:01:21.842 DEBUG 6552 --- [XNIO-1 task-59] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 14:01:21.842 DEBUG 6552 --- [XNIO-1 task-59] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 14:01:21.850 DEBUG 6552 --- [XNIO-1 task-59] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 14:01:22.158  INFO 6552 --- [XNIO-1 task-60] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/examPaperAnswer/page
2023-07-31 14:01:22.158 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.adminPage_COUNT              : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer 
2023-07-31 14:01:22.158 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.adminPage_COUNT              : ==> Parameters: 
2023-07-31 14:01:22.175 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.adminPage_COUNT              : <==      Total: 1
2023-07-31 14:01:22.175 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.adminPage                    : ==>  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 order by user_score desc LIMIT ? 
2023-07-31 14:01:22.175 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.adminPage                    : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.182 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.adminPage                    : <==      Total: 10
2023-07-31 14:01:22.182 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.191 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.198 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.198 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.198 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6188(Integer)
2023-07-31 14:01:22.206 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.206 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.206 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 110(Integer)
2023-07-31 14:01:22.222 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.222 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.222 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.231 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.236 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.236 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-07-31 14:01:22.239 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.239 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.239 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6191(Integer)
2023-07-31 14:01:22.255 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.255 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.255 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 14:01:22.263 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.263 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.263 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.271 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.271 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.271 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.287 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.287 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.287 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6185(Integer)
2023-07-31 14:01:22.295 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.295 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.295 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:22.303 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.303 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.311 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.319 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.319 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.319 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-07-31 14:01:22.327 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.336 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.336 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6190(Integer)
2023-07-31 14:01:22.344 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.346 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.346 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 14:01:22.356 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.357 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.357 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.360 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.368 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.368 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.376 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.376 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.376 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6179(Integer)
2023-07-31 14:01:22.384 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.384 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.392 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 14:01:22.400 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.400 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.400 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.408 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.408 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.416 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.424 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.424 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.424 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6181(Integer)
2023-07-31 14:01:22.436 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.436 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.436 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:22.440 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.440 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.440 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.456 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.456 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.456 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.464 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.464 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.464 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6184(Integer)
2023-07-31 14:01:22.480 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.480 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.480 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:22.488 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.488 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.488 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.496 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.496 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.496 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.512 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.512 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.512 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6186(Integer)
2023-07-31 14:01:22.520 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.520 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.520 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:22.528 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.536 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.536 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.544 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.544 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.544 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.552 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.552 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.552 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6180(Integer)
2023-07-31 14:01:22.560 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.560 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.560 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:22.577 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.577 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.578 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.587 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:01:22.587 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==>  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 id = ? 
2023-07-31 14:01:22.587 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-07-31 14:01:22.592 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-07-31 14:01:22.592 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.592 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6182(Integer)
2023-07-31 14:01:22.616 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 14:01:22.616 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:01:22.616 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:01:22.624 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:01:22.624 DEBUG 6552 --- [XNIO-1 task-60] 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-07-31 14:01:22.624 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 14:01:22.637 DEBUG 6552 --- [XNIO-1 task-60] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 14:02:44.105  INFO 6552 --- [XNIO-1 task-61] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/examPaperAnswer/paperStatistics
2023-07-31 14:02:44.114 DEBUG 6552 --- [XNIO-1 task-61] r.c.m.x.r.E.selectByPaperName            : ==>  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 
2023-07-31 14:02:44.114 DEBUG 6552 --- [XNIO-1 task-61] r.c.m.x.r.E.selectByPaperName            : ==> Parameters: 
2023-07-31 14:02:44.131 DEBUG 6552 --- [XNIO-1 task-61] r.c.m.x.r.E.selectByPaperName            : <==      Total: 13
2023-07-31 14:03:53.043  INFO 6552 --- [XNIO-1 task-63] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/message/page
2023-07-31 14:03:53.092 DEBUG 6552 --- [XNIO-1 task-63] r.c.m.x.r.MessageMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_message 
2023-07-31 14:03:53.092 DEBUG 6552 --- [XNIO-1 task-63] r.c.m.x.r.MessageMapper.page_COUNT       : ==> Parameters: 
2023-07-31 14:03:53.100 DEBUG 6552 --- [XNIO-1 task-63] r.c.m.x.r.MessageMapper.page_COUNT       : <==      Total: 1
2023-07-31 14:04:16.311  INFO 6552 --- [XNIO-1 task-64] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/selectByUserName
2023-07-31 14:04:16.336 DEBUG 6552 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.selectByUserName    : ==>  Preparing: SELECT id as value,user_name as name from t_user where deleted=0 and user_name like concat('%',?,'%') limit 5 
2023-07-31 14:04:16.336 DEBUG 6552 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.selectByUserName    : ==> Parameters: stu(String)
2023-07-31 14:04:16.344 DEBUG 6552 --- [XNIO-1 task-64] r.c.m.x.r.UserMapper.selectByUserName    : <==      Total: 1
2023-07-31 14:04:36.365  INFO 6552 --- [XNIO-1 task-65] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/message/send
2023-07-31 14:04:36.373 DEBUG 6552 --- [XNIO-1 task-65] 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-07-31 14:04:36.378 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 14:04:36.384 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:04:36.390 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.selectByIds         : ==>  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 in ( ? ) 
2023-07-31 14:04:36.390 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.selectByIds         : ==> Parameters: 10(Integer)
2023-07-31 14:04:36.399 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.UserMapper.selectByIds         : <==      Total: 1
2023-07-31 14:04:36.409 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.MessageMapper.insertSelective  : ==>  Preparing: insert into t_message ( title, content, create_time, send_user_id, send_user_name, send_real_name, receive_user_count, read_count ) values ( ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-07-31 14:04:36.409 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.MessageMapper.insertSelective  : ==> Parameters: 好消息(String), 1111(String), 2023-07-31 14:04:36.399(Timestamp), 2(Integer), admin(String), 管理员(String), 1(Integer), 0(Integer)
2023-07-31 14:04:36.431 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.MessageMapper.insertSelective  : <==    Updates: 1
2023-07-31 14:04:36.431 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.MessageUserMapper.inserts      : ==>  Preparing: insert into t_message_user (message_id, receive_user_id, receive_user_name, receive_real_name, readed, create_time) values (?, ?, ?, ?, ?, ?) 
2023-07-31 14:04:36.431 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.MessageUserMapper.inserts      : ==> Parameters: 3(Integer), 10(Integer), student(String), student(String), false(Boolean), 2023-07-31 14:04:36.399(Timestamp)
2023-07-31 14:04:36.447 DEBUG 6552 --- [XNIO-1 task-65] r.c.m.x.r.MessageUserMapper.inserts      : <==    Updates: 1
2023-07-31 14:04:37.154  INFO 6552 --- [XNIO-1 task-66] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/message/page
2023-07-31 14:04:37.170 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.x.r.MessageMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_message 
2023-07-31 14:04:37.170 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.x.r.MessageMapper.page_COUNT       : ==> Parameters: 
2023-07-31 14:04:37.178 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.x.r.MessageMapper.page_COUNT       : <==      Total: 1
2023-07-31 14:04:37.178 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.xzs.repository.MessageMapper.page  : ==>  Preparing: SELECT id, title, content, create_time, send_user_id, send_user_name, send_real_name, receive_user_count, read_count FROM t_message order by id desc LIMIT ? 
2023-07-31 14:04:37.178 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.xzs.repository.MessageMapper.page  : ==> Parameters: 10(Integer)
2023-07-31 14:04:37.186 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.xzs.repository.MessageMapper.page  : <==      Total: 1
2023-07-31 14:04:37.186 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.x.r.M.selectByMessageIds           : ==>  Preparing: select id, message_id, receive_user_id, receive_user_name, receive_real_name, readed, create_time, read_time from t_message_user where message_id in ( ? ) 
2023-07-31 14:04:37.186 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.x.r.M.selectByMessageIds           : ==> Parameters: 3(Integer)
2023-07-31 14:04:37.194 DEBUG 6552 --- [XNIO-1 task-66] r.c.m.x.r.M.selectByMessageIds           : <==      Total: 1
2023-07-31 14:18:05.844  INFO 6552 --- [XNIO-1 task-67] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/message/page
2023-07-31 14:18:05.859 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.x.r.MessageMapper.page_COUNT       : ==>  Preparing: SELECT count(0) FROM t_message 
2023-07-31 14:18:05.861 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.x.r.MessageMapper.page_COUNT       : ==> Parameters: 
2023-07-31 14:18:05.868 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.x.r.MessageMapper.page_COUNT       : <==      Total: 1
2023-07-31 14:18:05.868 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.xzs.repository.MessageMapper.page  : ==>  Preparing: SELECT id, title, content, create_time, send_user_id, send_user_name, send_real_name, receive_user_count, read_count FROM t_message order by id desc LIMIT ? 
2023-07-31 14:18:05.868 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.xzs.repository.MessageMapper.page  : ==> Parameters: 10(Integer)
2023-07-31 14:18:05.880 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.xzs.repository.MessageMapper.page  : <==      Total: 1
2023-07-31 14:18:05.881 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.x.r.M.selectByMessageIds           : ==>  Preparing: select id, message_id, receive_user_id, receive_user_name, receive_real_name, readed, create_time, read_time from t_message_user where message_id in ( ? ) 
2023-07-31 14:18:05.881 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.x.r.M.selectByMessageIds           : ==> Parameters: 3(Integer)
2023-07-31 14:18:05.891 DEBUG 6552 --- [XNIO-1 task-67] r.c.m.x.r.M.selectByMessageIds           : <==      Total: 1
2023-07-31 14:20:50.501  INFO 6552 --- [XNIO-1 task-68] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:20:50.522 DEBUG 6552 --- [XNIO-1 task-68] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-07-31 14:20:50.522 DEBUG 6552 --- [XNIO-1 task-68] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-07-31 14:20:50.528 DEBUG 6552 --- [XNIO-1 task-68] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:20:50.534 DEBUG 6552 --- [XNIO-1 task-68] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ? 
2023-07-31 14:20:50.534 DEBUG 6552 --- [XNIO-1 task-68] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer)
2023-07-31 14:20:50.545 DEBUG 6552 --- [XNIO-1 task-68] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:22:06.701  INFO 6552 --- [XNIO-1 task-69] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:22:06.717 DEBUG 6552 --- [XNIO-1 task-69] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-07-31 14:22:06.717 DEBUG 6552 --- [XNIO-1 task-69] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-07-31 14:22:06.727 DEBUG 6552 --- [XNIO-1 task-69] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:22:06.729 DEBUG 6552 --- [XNIO-1 task-69] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ?, ? 
2023-07-31 14:22:06.729 DEBUG 6552 --- [XNIO-1 task-69] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 14:22:06.741 DEBUG 6552 --- [XNIO-1 task-69] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:22:08.666  INFO 6552 --- [XNIO-1 task-70] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:22:08.683 DEBUG 6552 --- [XNIO-1 task-70] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-07-31 14:22:08.683 DEBUG 6552 --- [XNIO-1 task-70] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-07-31 14:22:08.699 DEBUG 6552 --- [XNIO-1 task-70] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:22:08.699 DEBUG 6552 --- [XNIO-1 task-70] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ?, ? 
2023-07-31 14:22:08.699 DEBUG 6552 --- [XNIO-1 task-70] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 20(Integer), 10(Integer)
2023-07-31 14:22:08.707 DEBUG 6552 --- [XNIO-1 task-70] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:22:10.028  INFO 6552 --- [XNIO-1 task-71] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:22:10.044 DEBUG 6552 --- [XNIO-1 task-71] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-07-31 14:22:10.044 DEBUG 6552 --- [XNIO-1 task-71] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-07-31 14:22:10.052 DEBUG 6552 --- [XNIO-1 task-71] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:22:10.052 DEBUG 6552 --- [XNIO-1 task-71] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ?, ? 
2023-07-31 14:22:10.052 DEBUG 6552 --- [XNIO-1 task-71] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 30(Integer), 10(Integer)
2023-07-31 14:22:10.060 DEBUG 6552 --- [XNIO-1 task-71] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:22:10.964  INFO 6552 --- [XNIO-1 task-72] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:22:10.976 DEBUG 6552 --- [XNIO-1 task-72] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-07-31 14:22:10.976 DEBUG 6552 --- [XNIO-1 task-72] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-07-31 14:22:10.984 DEBUG 6552 --- [XNIO-1 task-72] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:22:10.984 DEBUG 6552 --- [XNIO-1 task-72] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ?, ? 
2023-07-31 14:22:10.984 DEBUG 6552 --- [XNIO-1 task-72] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 14:22:10.996 DEBUG 6552 --- [XNIO-1 task-72] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:24:26.204  INFO 6552 --- [XNIO-1 task-74] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 14:24:26.204  INFO 6552 --- [XNIO-1 task-73] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-07-31 14:24:26.212 DEBUG 6552 --- [XNIO-1 task-74] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 14:24:26.212 DEBUG 6552 --- [XNIO-1 task-73] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-07-31 14:24:26.220 DEBUG 6552 --- [XNIO-1 task-74] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 14:24:26.220 DEBUG 6552 --- [XNIO-1 task-73] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-07-31 14:24:26.228 DEBUG 6552 --- [XNIO-1 task-73] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-07-31 14:24:26.228 DEBUG 6552 --- [XNIO-1 task-74] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 14:24:26.228 DEBUG 6552 --- [XNIO-1 task-73] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-07-31 14:24:26.228 DEBUG 6552 --- [XNIO-1 task-73] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-07-31 14:24:26.237 DEBUG 6552 --- [XNIO-1 task-73] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 3
2023-07-31 14:24:27.125  INFO 6552 --- [XNIO-1 task-75] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:24:27.138 DEBUG 6552 --- [XNIO-1 task-75] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log 
2023-07-31 14:24:27.141 DEBUG 6552 --- [XNIO-1 task-75] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 
2023-07-31 14:24:27.149 DEBUG 6552 --- [XNIO-1 task-75] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:24:27.149 DEBUG 6552 --- [XNIO-1 task-75] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log order by id desc LIMIT ? 
2023-07-31 14:24:27.149 DEBUG 6552 --- [XNIO-1 task-75] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 10(Integer)
2023-07-31 14:24:27.157 DEBUG 6552 --- [XNIO-1 task-75] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:24:39.245  INFO 6552 --- [XNIO-1 task-76] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-07-31 14:24:39.253 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-07-31 14:24:39.253 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 14:24:39.261 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 14:24:39.261 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-07-31 14:24:39.261 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-07-31 14:24:39.278 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-07-31 14:24:39.278 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-07-31 14:24:39.278 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 14:24:39.286 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 14:24:39.286 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-07-31 14:24:39.286 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 14:24:39.294 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 14:24:39.294 DEBUG 6552 --- [XNIO-1 task-76] 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-07-31 14:24:39.302 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 14:24:39.310 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.U.selectCountByDate            : <==      Total: 14
2023-07-31 14:24:39.310 DEBUG 6552 --- [XNIO-1 task-76] 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-07-31 14:24:39.310 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 14:24:39.318 DEBUG 6552 --- [XNIO-1 task-76] r.c.m.x.r.E.selectCountByDate            : <==      Total: 6
2023-07-31 14:26:38.511  INFO 6552 --- [XNIO-1 task-77] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/page/list
2023-07-31 14:26:38.527 DEBUG 6552 --- [XNIO-1 task-77] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-07-31 14:26:38.527 DEBUG 6552 --- [XNIO-1 task-77] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-07-31 14:26:38.540 DEBUG 6552 --- [XNIO-1 task-77] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-07-31 14:26:38.540 DEBUG 6552 --- [XNIO-1 task-77] r.c.m.x.repository.UserMapper.userPage   : ==>  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 role = ? order by id desc LIMIT ? 
2023-07-31 14:26:38.540 DEBUG 6552 --- [XNIO-1 task-77] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-07-31 14:26:38.554 DEBUG 6552 --- [XNIO-1 task-77] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 10
2023-07-31 14:27:12.381  INFO 6552 --- [XNIO-1 task-78] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 14:27:12.397 DEBUG 6552 --- [XNIO-1 task-78] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log WHERE user_id = ? 
2023-07-31 14:27:12.397 DEBUG 6552 --- [XNIO-1 task-78] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 1027(Integer)
2023-07-31 14:27:12.405 DEBUG 6552 --- [XNIO-1 task-78] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 14:27:12.405 DEBUG 6552 --- [XNIO-1 task-78] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log WHERE user_id = ? order by id desc LIMIT ? 
2023-07-31 14:27:12.405 DEBUG 6552 --- [XNIO-1 task-78] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 1027(Integer), 10(Integer)
2023-07-31 14:27:12.413 DEBUG 6552 --- [XNIO-1 task-78] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 14:27:16.517  INFO 6552 --- [XNIO-1 task-79] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/page/list
2023-07-31 14:27:16.533 DEBUG 6552 --- [XNIO-1 task-79] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-07-31 14:27:16.533 DEBUG 6552 --- [XNIO-1 task-79] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-07-31 14:27:16.541 DEBUG 6552 --- [XNIO-1 task-79] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-07-31 14:27:16.541 DEBUG 6552 --- [XNIO-1 task-79] r.c.m.x.repository.UserMapper.userPage   : ==>  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 role = ? order by id desc LIMIT ? 
2023-07-31 14:27:16.541 DEBUG 6552 --- [XNIO-1 task-79] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-07-31 14:27:16.549 DEBUG 6552 --- [XNIO-1 task-79] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 10
2023-07-31 14:28:02.433  INFO 6552 --- [XNIO-1 task-80] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/page/list
2023-07-31 14:28:02.450 DEBUG 6552 --- [XNIO-1 task-80] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-07-31 14:28:02.450 DEBUG 6552 --- [XNIO-1 task-80] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-07-31 14:28:02.458 DEBUG 6552 --- [XNIO-1 task-80] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-07-31 14:28:02.458 DEBUG 6552 --- [XNIO-1 task-80] r.c.m.x.repository.UserMapper.userPage   : ==>  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 role = ? order by id desc LIMIT ? 
2023-07-31 14:28:02.458 DEBUG 6552 --- [XNIO-1 task-80] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-07-31 14:28:02.474 DEBUG 6552 --- [XNIO-1 task-80] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 10
2023-07-31 14:34:05.947  INFO 6552 --- [XNIO-1 task-82] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 14:34:05.959 DEBUG 6552 --- [XNIO-1 task-82] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 14:34:05.959 DEBUG 6552 --- [XNIO-1 task-82] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 14:34:05.969 DEBUG 6552 --- [XNIO-1 task-82] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 14:34:41.449  INFO 6552 --- [XNIO-1 task-87] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-07-31 14:34:41.457 DEBUG 6552 --- [XNIO-1 task-87] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-07-31 14:34:41.457 DEBUG 6552 --- [XNIO-1 task-87] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-07-31 14:34:41.469 DEBUG 6552 --- [XNIO-1 task-87] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-07-31 14:34:41.469 DEBUG 6552 --- [XNIO-1 task-87] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-07-31 14:34:41.469 DEBUG 6552 --- [XNIO-1 task-87] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-07-31 14:34:41.477 DEBUG 6552 --- [XNIO-1 task-87] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 3
2023-07-31 14:34:41.645  INFO 6552 --- [XNIO-1 task-88] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-07-31 14:34:41.645 DEBUG 6552 --- [XNIO-1 task-88] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 14:34:41.645 DEBUG 6552 --- [XNIO-1 task-88] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 14:34:41.653  INFO 6552 --- [XNIO-1 task-89] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-07-31 14:34:41.657 DEBUG 6552 --- [XNIO-1 task-88] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 14:34:41.666 DEBUG 6552 --- [XNIO-1 task-89] 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-07-31 14:34:41.670 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-07-31 14:34:41.686 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-07-31 14:34:41.690 DEBUG 6552 --- [XNIO-1 task-89] 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-07-31 14:34:41.690 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-07-31 14:34:41.702 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 5
2023-07-31 14:34:41.706 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:34:41.706 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-07-31 14:34:41.718 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:34:41.722 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:34:41.722 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-07-31 14:34:41.731 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:34:41.731 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:34:41.731 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 14:34:41.739 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:34:41.743 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:34:41.743 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-07-31 14:34:41.751 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:34:41.751 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:34:41.751 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 14:34:41.759 DEBUG 6552 --- [XNIO-1 task-89] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:34:46.601  INFO 6552 --- [XNIO-1 task-90] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/page/list
2023-07-31 14:34:46.622 DEBUG 6552 --- [XNIO-1 task-90] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-07-31 14:34:46.622 DEBUG 6552 --- [XNIO-1 task-90] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 3(Integer)
2023-07-31 14:34:46.629 DEBUG 6552 --- [XNIO-1 task-90] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-07-31 14:34:46.629 DEBUG 6552 --- [XNIO-1 task-90] r.c.m.x.repository.UserMapper.userPage   : ==>  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 role = ? order by id desc LIMIT ? 
2023-07-31 14:34:46.629 DEBUG 6552 --- [XNIO-1 task-90] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 3(Integer), 10(Integer)
2023-07-31 14:34:46.643 DEBUG 6552 --- [XNIO-1 task-90] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 2
2023-07-31 14:51:00.961  INFO 6552 --- [XNIO-1 task-91] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 14:51:00.973 DEBUG 6552 --- [XNIO-1 task-91] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 14:51:00.973 DEBUG 6552 --- [XNIO-1 task-91] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 14:51:00.997 DEBUG 6552 --- [XNIO-1 task-91] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 14:53:21.295  INFO 6552 --- [XNIO-1 task-96] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 14:53:21.315 DEBUG 6552 --- [XNIO-1 task-96] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 14:53:21.316 DEBUG 6552 --- [XNIO-1 task-96] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 14:53:21.328 DEBUG 6552 --- [XNIO-1 task-96] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 14:57:31.444 DEBUG 6552 --- [XNIO-1 task-97] 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-07-31 14:57:31.448 DEBUG 6552 --- [XNIO-1 task-97] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:57:31.524 DEBUG 6552 --- [XNIO-1 task-97] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:57:31.552 DEBUG 6552 --- [XNIO-1 task-97] 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-07-31 14:57:31.556 DEBUG 6552 --- [XNIO-1 task-97] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:57:31.628 DEBUG 6552 --- [XNIO-1 task-97] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:57:31.636 DEBUG 6552 --- [XNIO-1 task-97] 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-07-31 14:57:31.640 DEBUG 6552 --- [XNIO-1 task-97] r.c.m.x.r.U.insertSelective              : ==> Parameters: 10(Integer), student(String), student(String), student 登录了考试系统(String), 2023-07-31 14:57:31.632(Timestamp)
2023-07-31 14:57:31.794 DEBUG 6552 --- [XNIO-1 task-97] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-07-31 14:57:31.913  INFO 6552 --- [XNIO-1 task-98] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-07-31 14:57:31.953 DEBUG 6552 --- [XNIO-1 task-98] 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-07-31 14:57:31.953 DEBUG 6552 --- [XNIO-1 task-98] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:57:32.021 DEBUG 6552 --- [XNIO-1 task-98] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:57:32.030 DEBUG 6552 --- [XNIO-1 task-98] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-07-31 14:57:32.030 DEBUG 6552 --- [XNIO-1 task-98] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 10(Integer)
2023-07-31 14:57:32.103 DEBUG 6552 --- [XNIO-1 task-98] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-07-31 14:57:32.185  INFO 6552 --- [XNIO-1 task-99] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-07-31 14:57:32.185 DEBUG 6552 --- [XNIO-1 task-99] 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-07-31 14:57:32.185 DEBUG 6552 --- [XNIO-1 task-99] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:57:32.189  INFO 6552 --- [XNIO-1 task-100] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-07-31 14:57:32.189  INFO 6552 --- [XNIO-1 task-101] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-07-31 14:57:32.211 DEBUG 6552 --- [XNIO-1 task-101] 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-07-31 14:57:32.211 DEBUG 6552 --- [XNIO-1 task-100] 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-07-31 14:57:32.211 DEBUG 6552 --- [XNIO-1 task-101] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:57:32.211 DEBUG 6552 --- [XNIO-1 task-100] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:57:32.257 DEBUG 6552 --- [XNIO-1 task-99] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:57:32.281 DEBUG 6552 --- [XNIO-1 task-101] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:57:32.281 DEBUG 6552 --- [XNIO-1 task-100] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:57:32.281 DEBUG 6552 --- [XNIO-1 task-100] 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-07-31 14:57:32.281 DEBUG 6552 --- [XNIO-1 task-100] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 17(Integer)
2023-07-31 14:57:32.356 DEBUG 6552 --- [XNIO-1 task-100] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-07-31 14:57:32.384 DEBUG 6552 --- [XNIO-1 task-101] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 14:57:32.388 DEBUG 6552 --- [XNIO-1 task-101] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer)
2023-07-31 14:57:32.453 DEBUG 6552 --- [XNIO-1 task-101] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-07-31 14:57:32.453 DEBUG 6552 --- [XNIO-1 task-101] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 14:57:32.458 DEBUG 6552 --- [XNIO-1 task-101] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), null
2023-07-31 14:57:32.529 DEBUG 6552 --- [XNIO-1 task-101] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-07-31 14:59:20.893  INFO 6552 --- [XNIO-1 task-103] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/count/list
2023-07-31 14:59:20.917 DEBUG 6552 --- [XNIO-1 task-103] 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-07-31 14:59:20.917 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:59:20.945 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:59:20.949 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 14:59:20.953 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 10(Integer)
2023-07-31 14:59:20.966 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 14:59:20.966 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 14:59:20.966 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 14:59:20.985 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.E.list                         : <==      Total: 2
2023-07-31 14:59:20.989 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 14:59:20.989 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 14:59:21.017 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 14:59:21.017 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 14:59:21.017 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 14:59:21.029 DEBUG 6552 --- [XNIO-1 task-103] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 14:59:27.174  INFO 6552 --- [XNIO-1 task-104] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-07-31 14:59:27.182 DEBUG 6552 --- [XNIO-1 task-104] 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-07-31 14:59:27.186 DEBUG 6552 --- [XNIO-1 task-104] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:59:27.195 DEBUG 6552 --- [XNIO-1 task-104] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:59:27.199 DEBUG 6552 --- [XNIO-1 task-104] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 14:59:27.199 DEBUG 6552 --- [XNIO-1 task-104] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer)
2023-07-31 14:59:27.211 DEBUG 6552 --- [XNIO-1 task-104] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-07-31 14:59:27.215 DEBUG 6552 --- [XNIO-1 task-104] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 14:59:27.215 DEBUG 6552 --- [XNIO-1 task-104] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), null
2023-07-31 14:59:27.224 DEBUG 6552 --- [XNIO-1 task-104] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-07-31 14:59:27.469  INFO 6552 --- [XNIO-1 task-105] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-07-31 14:59:27.469 DEBUG 6552 --- [XNIO-1 task-105] 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-07-31 14:59:27.471 DEBUG 6552 --- [XNIO-1 task-105] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 14:59:27.484 DEBUG 6552 --- [XNIO-1 task-105] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 14:59:27.484 DEBUG 6552 --- [XNIO-1 task-105] 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-07-31 14:59:27.485 DEBUG 6552 --- [XNIO-1 task-105] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 17(Integer)
2023-07-31 14:59:27.493 DEBUG 6552 --- [XNIO-1 task-105] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-07-31 14:59:34.030  INFO 6552 --- [XNIO-1 task-106] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 14:59:34.041 DEBUG 6552 --- [XNIO-1 task-106] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 14:59:34.041 DEBUG 6552 --- [XNIO-1 task-106] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 14:59:34.048 DEBUG 6552 --- [XNIO-1 task-106] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 14:59:34.077  INFO 6552 --- [XNIO-1 task-107] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/select/83
2023-07-31 14:59:34.086 DEBUG 6552 --- [XNIO-1 task-107] 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-07-31 14:59:34.090 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 83(Integer)
2023-07-31 14:59:34.098 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 14:59:34.107 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 14:59:34.107 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 531(Integer)
2023-07-31 14:59:34.117 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 14:59:34.136 DEBUG 6552 --- [XNIO-1 task-107] 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-07-31 14:59:34.136 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 426(Integer), 425(Integer)
2023-07-31 14:59:34.147 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-07-31 14:59:34.216 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 14:59:34.216 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 14:59:34.227 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 14:59:34.231 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 14:59:34.231 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 14:59:34.241 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 14:59:34.242 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 14:59:34.242 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 14:59:34.251 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 14:59:34.253 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 14:59:34.253 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 14:59:34.261 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:59:34.263 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 14:59:34.263 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 14:59:34.271 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 14:59:34.276 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 14:59:34.276 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 14:59:34.284 DEBUG 6552 --- [XNIO-1 task-107] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:00:13.240  INFO 6552 --- [XNIO-1 task-108] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/answerSubmit
2023-07-31 15:00:13.256 DEBUG 6552 --- [XNIO-1 task-108] 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-07-31 15:00:13.256 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:00:13.266 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:00:13.268 DEBUG 6552 --- [XNIO-1 task-108] 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-07-31 15:00:13.268 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 83(Integer)
2023-07-31 15:00:13.277 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:00:13.277 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:00:13.277 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 531(Integer)
2023-07-31 15:00:13.292 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:00:13.293 DEBUG 6552 --- [XNIO-1 task-108] 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-07-31 15:00:13.293 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 426(Integer), 425(Integer)
2023-07-31 15:00:13.305 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-07-31 15:00:13.409 DEBUG 6552 --- [XNIO-1 task-108] 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 ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-07-31 15:00:13.410 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.E.insertSelective              : ==> Parameters: 83(Integer), 测试1111(String), 1(Integer), 20(Integer), 20(Integer), 110(Integer), 1(Integer), 3(Integer), 38(Integer), 2(Integer), 10(Integer), 2023-07-31 15:00:13.268(Timestamp)
2023-07-31 15:00:13.468 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-07-31 15:00:13.473 DEBUG 6552 --- [XNIO-1 task-108] 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-07-31 15:00:13.475 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.E.insertList                   : ==> Parameters: 424(Integer), 40(Integer), null, 2023-07-31 15:00:13.268(Timestamp), 10(Integer), null, 83(Integer), 1(Integer), B(String), 0(Integer), 6192(Integer), false(Boolean), 528(Integer), 1(Integer), 426(Integer), 20(Integer), null, 2023-07-31 15:00:13.268(Timestamp), 10(Integer), null, 83(Integer), 3(Integer), A(String), 20(Integer), 6192(Integer), true(Boolean), 530(Integer), 2(Integer), 425(Integer), 50(Integer), null, 2023-07-31 15:00:13.268(Timestamp), 10(Integer), null, 83(Integer), 2(Integer), B(String), 0(Integer), 6192(Integer), false(Boolean), 529(Integer), 3(Integer)
2023-07-31 15:00:13.605 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.E.insertList                   : <==    Updates: 3
2023-07-31 15:00:13.768 DEBUG 6552 --- [XNIO-1 task-108] 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-07-31 15:00:13.768 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.U.insertSelective              : ==> Parameters: 10(Integer), student(String), student(String), student 提交试卷:测试1111 得分:2 耗时:38 秒(String), 2023-07-31 15:00:13.365(Timestamp)
2023-07-31 15:00:13.796 DEBUG 6552 --- [XNIO-1 task-108] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-07-31 15:00:15.999  INFO 6552 --- [XNIO-1 task-109] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-07-31 15:00:16.011 DEBUG 6552 --- [XNIO-1 task-109] 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-07-31 15:00:16.011 DEBUG 6552 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:00:16.027 DEBUG 6552 --- [XNIO-1 task-109] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:00:16.029 DEBUG 6552 --- [XNIO-1 task-109] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-07-31 15:00:16.029 DEBUG 6552 --- [XNIO-1 task-109] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 10(Integer)
2023-07-31 15:00:16.038 DEBUG 6552 --- [XNIO-1 task-109] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-07-31 15:00:16.278  INFO 6552 --- [XNIO-1 task-110] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-07-31 15:00:16.279 DEBUG 6552 --- [XNIO-1 task-110] 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-07-31 15:00:16.279 DEBUG 6552 --- [XNIO-1 task-110] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:00:16.285  INFO 6552 --- [XNIO-1 task-111] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/pageList
2023-07-31 15:00:16.294 DEBUG 6552 --- [XNIO-1 task-110] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:00:16.295 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.295 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:00:16.310 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:00:16.318 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-07-31 15:00:16.318 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 10(Integer)
2023-07-31 15:00:16.347 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:00:16.347 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.347 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.studentPage                  : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:00:16.367 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.studentPage                  : <==      Total: 10
2023-07-31 15:00:16.369 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.369 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6192(Integer)
2023-07-31 15:00:16.391 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.391 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.391 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:00:16.405 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.405 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.405 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.426 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.426 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.426 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6189(Integer)
2023-07-31 15:00:16.446 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.448 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.448 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:00:16.463 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.463 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.465 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.479 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.481 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.481 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6188(Integer)
2023-07-31 15:00:16.491 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.492 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.492 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 110(Integer)
2023-07-31 15:00:16.517 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.520 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.520 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.554 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.556 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.556 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6187(Integer)
2023-07-31 15:00:16.599 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.599 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.599 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 91(Integer)
2023-07-31 15:00:16.608 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:00:16.612 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.614 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6186(Integer)
2023-07-31 15:00:16.620 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.620 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.620 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:00:16.632 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.632 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.632 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.642 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.642 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.642 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6185(Integer)
2023-07-31 15:00:16.651 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.651 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.651 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:00:16.663 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.664 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.664 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.674 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.674 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.674 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6184(Integer)
2023-07-31 15:00:16.684 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.685 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.685 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:00:16.698 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.699 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.699 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.707 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.707 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.707 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6183(Integer)
2023-07-31 15:00:16.718 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.718 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.718 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:00:16.726 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.726 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.726 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.738 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.738 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.738 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6182(Integer)
2023-07-31 15:00:16.750 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.754 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.754 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:00:16.763 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.764 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.764 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.773 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:00:16.774 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.774 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6181(Integer)
2023-07-31 15:00:16.784 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:00:16.784 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:00:16.784 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:00:16.798 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:00:16.798 DEBUG 6552 --- [XNIO-1 task-111] 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-07-31 15:00:16.800 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:00:16.808 DEBUG 6552 --- [XNIO-1 task-111] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:01:55.826  INFO 6552 --- [XNIO-1 task-112] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/count/list
2023-07-31 15:01:55.841 DEBUG 6552 --- [XNIO-1 task-112] 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-07-31 15:01:55.841 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:01:55.969 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:01:55.993 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 15:01:55.993 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 10(Integer)
2023-07-31 15:01:56.078 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 15:01:56.079 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 15:01:56.079 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:01:56.281 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.E.list                         : <==      Total: 2
2023-07-31 15:01:56.284 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:01:56.284 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 15:01:56.487 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:01:56.492 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:01:56.492 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 15:01:56.690 DEBUG 6552 --- [XNIO-1 task-112] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:04:03.229  INFO 6552 --- [XNIO-1 task-113] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/count/sourceList
2023-07-31 15:04:03.270 DEBUG 6552 --- [XNIO-1 task-113] r.c.m.x.r.E.getByUserIdAndTemplatesId    : ==>  Preparing: select * from t_exam_templates_user_count where user_id = ? and exam_templates_id = ? 
2023-07-31 15:04:03.271 DEBUG 6552 --- [XNIO-1 task-113] r.c.m.x.r.E.getByUserIdAndTemplatesId    : ==> Parameters: 10(Integer), 28(Integer)
2023-07-31 15:04:03.467 DEBUG 6552 --- [XNIO-1 task-113] r.c.m.x.r.E.getByUserIdAndTemplatesId    : <==      Total: 1
2023-07-31 15:04:03.481 DEBUG 6552 --- [XNIO-1 task-113] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : ==>  Preparing: select count(0) from (select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as 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,create_user) in ( (?,?) )) tmp_count 
2023-07-31 15:04:03.481 DEBUG 6552 --- [XNIO-1 task-113] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : ==> Parameters: 142(Integer), 10(Integer)
2023-07-31 15:04:03.586 DEBUG 6552 --- [XNIO-1 task-113] .m.x.r.E.getByExamPaperIdAndUserId_COUNT : <==      Total: 1
2023-07-31 15:04:03.590  WARN 6552 --- [XNIO-1 task-113] c.g.pagehelper.parser.OrderByParser      : 处理排序失败: net.sf.jsqlparser.JSQLParserException,降级为直接拼接 order by 参数
2023-07-31 15:04:03.590 DEBUG 6552 --- [XNIO-1 task-113] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==>  Preparing: select id, exam_paper_id, paper_name, paper_type, subject_id, system_score, TRUNCATE(user_score/10,0) as user_score, TRUNCATE(paper_score/10,0) as 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,create_user) in ( (?,?) ) order by id desc LIMIT ? 
2023-07-31 15:04:03.590 DEBUG 6552 --- [XNIO-1 task-113] r.c.m.x.r.E.getByExamPaperIdAndUserId    : ==> Parameters: 142(Integer), 10(Integer), 10(Integer)
2023-07-31 15:04:03.703 DEBUG 6552 --- [XNIO-1 task-113] r.c.m.x.r.E.getByExamPaperIdAndUserId    : <==      Total: 1
2023-07-31 15:05:55.448  INFO 6552 --- [XNIO-1 task-114] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/education/subject/list
2023-07-31 15:05:55.460 DEBUG 6552 --- [XNIO-1 task-114] 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-07-31 15:05:55.465 DEBUG 6552 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:05:55.573 DEBUG 6552 --- [XNIO-1 task-114] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:05:55.574 DEBUG 6552 --- [XNIO-1 task-114] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 15:05:55.574 DEBUG 6552 --- [XNIO-1 task-114] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 15:05:55.804 DEBUG 6552 --- [XNIO-1 task-114] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 15:05:55.910  INFO 6552 --- [XNIO-1 task-115] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/pageList
2023-07-31 15:05:55.931 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id) table_count 
2023-07-31 15:05:55.931 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 20(Integer)
2023-07-31 15:05:56.100 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:05:56.104 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.ExamPaperMapper.studentPage    : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id order by id desc LIMIT ? 
2023-07-31 15:05:56.104 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.ExamPaperMapper.studentPage    : ==> Parameters: 20(Integer), 10(Integer)
2023-07-31 15:05:56.346 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.ExamPaperMapper.studentPage    : <==      Total: 10
2023-07-31 15:05:56.346 DEBUG 6552 --- [XNIO-1 task-115] 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-07-31 15:05:56.346 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:05:56.517 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:05:56.517 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:56.521 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:05:56.621 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:56.621 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:56.621 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:05:56.848 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:56.852 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:56.852 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:05:56.933  INFO 6552 --- [XNIO-1 task-116] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/count/list
2023-07-31 15:05:56.949 DEBUG 6552 --- [XNIO-1 task-116] 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-07-31 15:05:56.949 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:05:56.957 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:56.957 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:56.961 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:05:57.131 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:57.131 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:05:57.131 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.131 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:05:57.135 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 15:05:57.135 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 10(Integer)
2023-07-31 15:05:57.331 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 15:05:57.331 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:57.332 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.332 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:05:57.332 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 15:05:57.333 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:05:57.442 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:57.442 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.E.list                         : <==      Total: 2
2023-07-31 15:05:57.442 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:05:57.442 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 15:05:57.446 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.446 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:05:57.551 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:05:57.551 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:05:57.551 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 15:05:57.559 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:57.559 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.559 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:05:57.663 DEBUG 6552 --- [XNIO-1 task-116] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:05:57.669 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:57.672 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.672 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:05:57.767 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:57.767 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.771 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:05:57.951 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:57.951 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:57.951 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:05:58.026 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:58.026 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.026 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:05:58.090 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:58.090 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.090 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:05:58.163 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:58.163 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.163 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:05:58.237 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:58.237 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.237 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:05:58.312 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:58.312 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.312 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:05:58.382 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:58.382 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.382 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:05:58.449 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:58.449 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.451 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:05:58.518 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:58.551 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.551 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 135(Integer)
2023-07-31 15:05:58.621 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:05:58.621 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:05:58.621 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 135(Integer)
2023-07-31 15:05:58.667 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:05:58.667 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-07-31 15:05:58.667 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-07-31 15:05:58.704 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.r.E.getByUserId                  : <==      Total: 41
2023-07-31 15:05:58.709 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-07-31 15:05:58.709 DEBUG 6552 --- [XNIO-1 task-115] 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)
2023-07-31 15:05:58.745 DEBUG 6552 --- [XNIO-1 task-115] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 40
2023-07-31 15:07:03.860  INFO 6552 --- [XNIO-1 task-117] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/education/subject/list
2023-07-31 15:07:03.981 DEBUG 6552 --- [XNIO-1 task-117] 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-07-31 15:07:03.981 DEBUG 6552 --- [XNIO-1 task-117] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:07:04.209 DEBUG 6552 --- [XNIO-1 task-117] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:07:04.209 DEBUG 6552 --- [XNIO-1 task-117] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 15:07:04.209 DEBUG 6552 --- [XNIO-1 task-117] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 15:07:04.406 DEBUG 6552 --- [XNIO-1 task-117] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 15:07:04.456  INFO 6552 --- [XNIO-1 task-118] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/pageList
2023-07-31 15:07:04.460 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id) table_count 
2023-07-31 15:07:04.460 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 20(Integer)
2023-07-31 15:07:04.709 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:07:04.714 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.ExamPaperMapper.studentPage    : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id order by id desc LIMIT ? 
2023-07-31 15:07:04.715 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.ExamPaperMapper.studentPage    : ==> Parameters: 20(Integer), 10(Integer)
2023-07-31 15:07:05.334 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.ExamPaperMapper.studentPage    : <==      Total: 10
2023-07-31 15:07:05.334 DEBUG 6552 --- [XNIO-1 task-118] 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-07-31 15:07:05.334 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:07:05.535 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:07:05.537 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:05.537 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:07:05.694 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:05.694 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:05.694 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:07:05.829 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:05.829 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:05.829 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:07:05.977 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:05.978 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:05.978 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:07:06.079 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:06.079 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:06.079 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:07:06.251 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:06.253 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:06.253 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:07:06.455 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:06.456 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:06.456 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:07:06.604 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:06.604 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:06.604 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:07:06.760 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:06.760 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:06.760 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:07:06.879 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:06.905 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:06.905 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:07:07.044 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:07.044 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:07.044 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:07:07.188 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:07.189 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:07.189 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:07:07.339 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:07.339 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:07.339 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:07:07.582 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:07.582 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:07.582 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:07:07.782 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:07.782 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:07.782 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:07:08.095 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:08.095 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:08.095 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:07:08.297 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:08.299 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:08.299 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:07:08.502 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:08.502 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:08.502 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:07:08.638 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:08.640 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:08.640 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 135(Integer)
2023-07-31 15:07:08.812 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:08.814 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:08.814 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 135(Integer)
2023-07-31 15:07:08.893 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:08.909 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-07-31 15:07:08.909 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-07-31 15:07:08.988 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.r.E.getByUserId                  : <==      Total: 41
2023-07-31 15:07:08.988 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-07-31 15:07:08.991 DEBUG 6552 --- [XNIO-1 task-118] 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)
2023-07-31 15:07:09.077 DEBUG 6552 --- [XNIO-1 task-118] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 40
2023-07-31 15:07:14.699  INFO 6552 --- [XNIO-1 task-119] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/pageList
2023-07-31 15:07:14.751 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type = ? GROUP BY e.id) table_count 
2023-07-31 15:07:14.751 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 20(Integer), 4(Integer)
2023-07-31 15:07:14.791 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:07:14.793 DEBUG 6552 --- [XNIO-1 task-119] 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-07-31 15:07:14.793 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:07:14.843 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:07:14.843 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-07-31 15:07:14.843 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-07-31 15:07:14.890 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.r.E.getByUserId                  : <==      Total: 41
2023-07-31 15:07:14.890 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-07-31 15:07:14.893 DEBUG 6552 --- [XNIO-1 task-119] 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)
2023-07-31 15:07:14.948 DEBUG 6552 --- [XNIO-1 task-119] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 40
2023-07-31 15:07:16.142  INFO 6552 --- [XNIO-1 task-120] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/pageList
2023-07-31 15:07:16.199 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id) table_count 
2023-07-31 15:07:16.199 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 20(Integer)
2023-07-31 15:07:16.257 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:07:16.278 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.ExamPaperMapper.studentPage    : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id order by id desc LIMIT ? 
2023-07-31 15:07:16.278 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.ExamPaperMapper.studentPage    : ==> Parameters: 20(Integer), 10(Integer)
2023-07-31 15:07:16.343 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.ExamPaperMapper.studentPage    : <==      Total: 10
2023-07-31 15:07:16.343 DEBUG 6552 --- [XNIO-1 task-120] 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-07-31 15:07:16.343 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:07:16.404 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:07:16.408 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.408 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:07:16.471 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:16.471 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.471 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:07:16.524 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:16.526 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.526 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:07:16.579 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:16.579 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.579 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:07:16.632 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:16.632 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.632 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:07:16.684 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:16.684 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.684 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:07:16.751 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:16.751 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.751 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:07:16.819 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:16.819 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.819 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:07:16.892 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:16.892 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.896 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:07:16.968 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:16.968 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:16.968 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:07:17.059 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:17.063 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:17.063 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:07:17.150 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:17.150 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:17.150 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:07:17.305 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:17.307 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:17.307 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:07:17.512 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:17.512 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:17.512 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:07:17.713 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:17.717 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:17.717 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:07:17.921 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:17.921 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:17.921 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:07:18.043 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:18.047 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:18.047 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:07:18.232 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:18.233 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:18.233 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:07:18.354 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:18.354 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:18.354 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 135(Integer)
2023-07-31 15:07:18.476 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:07:18.476 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:07:18.476 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 135(Integer)
2023-07-31 15:07:18.599 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:07:18.600 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByUserId                  : ==>  Preparing: select * from t_exam_paper_user where user_id = ? and deleted = 0 
2023-07-31 15:07:18.600 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-07-31 15:07:18.743 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.r.E.getByUserId                  : <==      Total: 41
2023-07-31 15:07:18.743 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-07-31 15:07:18.743 DEBUG 6552 --- [XNIO-1 task-120] 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)
2023-07-31 15:07:18.948 DEBUG 6552 --- [XNIO-1 task-120] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 40
2023-07-31 15:12:10.449  INFO 6552 --- [XNIO-1 task-121] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/pageList
2023-07-31 15:12:10.457 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.457 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:12:10.465 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:12:10.473 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-07-31 15:12:10.473 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 10(Integer)
2023-07-31 15:12:10.481 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:12:10.481 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.481 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.studentPage                  : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:12:10.489 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.studentPage                  : <==      Total: 10
2023-07-31 15:12:10.489 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.489 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6192(Integer)
2023-07-31 15:12:10.497 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.497 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.497 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:12:10.513 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.513 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.513 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.529 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.529 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.529 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6189(Integer)
2023-07-31 15:12:10.538 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.538 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.538 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:12:10.550 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.550 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.550 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.556 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.556 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.556 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6188(Integer)
2023-07-31 15:12:10.569 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.569 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.569 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 110(Integer)
2023-07-31 15:12:10.579 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.579 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.579 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.588 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.588 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.588 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6187(Integer)
2023-07-31 15:12:10.598 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.599 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.599 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 91(Integer)
2023-07-31 15:12:10.606 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:12:10.606 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.606 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6186(Integer)
2023-07-31 15:12:10.619 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.619 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.619 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:12:10.627 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.627 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.627 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.637 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.638 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.638 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6185(Integer)
2023-07-31 15:12:10.647 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.647 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.649 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:12:10.656 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.656 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.656 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.667 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.669 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.669 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6184(Integer)
2023-07-31 15:12:10.677 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.679 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.679 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:12:10.686 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.686 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.686 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.696 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.697 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.697 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6183(Integer)
2023-07-31 15:12:10.706 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.706 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.706 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:12:10.711 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.717 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.717 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.719 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.719 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.719 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6182(Integer)
2023-07-31 15:12:10.735 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.735 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.735 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:12:10.745 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.745 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.745 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.754 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:12:10.755 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.755 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6181(Integer)
2023-07-31 15:12:10.764 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:12:10.764 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:12:10.764 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:12:10.770 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:12:10.770 DEBUG 6552 --- [XNIO-1 task-121] 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-07-31 15:12:10.770 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:12:10.784 DEBUG 6552 --- [XNIO-1 task-121] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:13:32.730  INFO 6552 --- [XNIO-1 task-122] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 15:13:32.746 DEBUG 6552 --- [XNIO-1 task-122] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 15:13:32.746 DEBUG 6552 --- [XNIO-1 task-122] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 15:13:32.754 DEBUG 6552 --- [XNIO-1 task-122] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 15:13:32.762  INFO 6552 --- [XNIO-1 task-123] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/read/6192
2023-07-31 15:13:32.762 DEBUG 6552 --- [XNIO-1 task-123] 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-07-31 15:13:32.762 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6192(Integer)
2023-07-31 15:13:32.770 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.770 DEBUG 6552 --- [XNIO-1 task-123] 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-07-31 15:13:32.770 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 83(Integer)
2023-07-31 15:13:32.786 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.786 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:13:32.786 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 531(Integer)
2023-07-31 15:13:32.794 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.794 DEBUG 6552 --- [XNIO-1 task-123] 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-07-31 15:13:32.794 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 426(Integer), 425(Integer)
2023-07-31 15:13:32.810 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-07-31 15:13:32.810 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:13:32.810 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 15:13:32.818 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.826 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:13:32.826 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 15:13:32.834 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.834 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:13:32.834 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:13:32.842 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.850 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:13:32.850 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:13:32.858 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:13:32.858 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:13:32.858 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:13:32.866 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:13:32.866 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:13:32.866 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:13:32.874 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:13:32.874 DEBUG 6552 --- [XNIO-1 task-123] 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-07-31 15:13:32.874 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6192(Integer)
2023-07-31 15:13:32.890 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:13:32.890 DEBUG 6552 --- [XNIO-1 task-123] 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-07-31 15:13:32.890 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectListByPaperAnswerId    : ==> Parameters: 6192(Integer)
2023-07-31 15:13:32.904 DEBUG 6552 --- [XNIO-1 task-123] r.c.m.x.r.E.selectListByPaperAnswerId    : <==      Total: 3
2023-07-31 15:15:08.129  INFO 6552 --- [XNIO-1 task-124] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/page
2023-07-31 15:15:08.145 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.145 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:15:08.161 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:15:08.161 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_question_customer_answer WHERE do_right = FALSE AND create_user = ? 
2023-07-31 15:15:08.161 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 10(Integer)
2023-07-31 15:15:08.169 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:15:08.177 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.E.studentPage                  : ==>  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 do_right = FALSE AND create_user = ? order by id desc LIMIT ? 
2023-07-31 15:15:08.177 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.E.studentPage                  : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:15:08.185 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.E.studentPage                  : <==      Total: 10
2023-07-31 15:15:08.185 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.185 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 15:15:08.202 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:15:08.205 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.205 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-07-31 15:15:08.210 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-07-31 15:15:08.218 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.218 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:15:08.226 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.226 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.226 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-07-31 15:15:08.234 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:15:08.234 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.234 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:15:08.242 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:15:08.242 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.242 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 15:15:08.250 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.250 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.258 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-07-31 15:15:08.266 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:15:08.266 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.266 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:15:08.274 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:15:08.274 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.274 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-07-31 15:15:08.282 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.282 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.282 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-07-31 15:15:08.290 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:15:08.290 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.290 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-07-31 15:15:08.306 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-07-31 15:15:08.306 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.306 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-07-31 15:15:08.315 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.315 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.315 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 15:15:08.325 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:15:08.325 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.327 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:15:08.333 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:15:08.333 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.333 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:15:08.340 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.340 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.340 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-07-31 15:15:08.356 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:15:08.356 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.356 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-07-31 15:15:08.364 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-07-31 15:15:08.364 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.364 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 15:15:08.380 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.380 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.380 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 15:15:08.388 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:15:08.388 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.388 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-07-31 15:15:08.396 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-07-31 15:15:08.396 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.404 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:15:08.407 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.414 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.414 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 15:15:08.422 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:15:08.422 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.422 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:15:08.430 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:15:08.430 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.430 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:15:08.446 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.446 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.446 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 15:15:08.457 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:15:08.457 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.457 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-07-31 15:15:08.467 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-07-31 15:15:08.468 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.468 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:15:08.470 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.470 DEBUG 6552 --- [XNIO-1 task-124] 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-07-31 15:15:08.478 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 432(Integer)
2023-07-31 15:15:08.486 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.Q.getQuestion                  : <==      Total: 0
2023-07-31 15:15:08.486 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.486 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 538(Integer)
2023-07-31 15:15:08.494 DEBUG 6552 --- [XNIO-1 task-124] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.542  INFO 6552 --- [XNIO-1 task-125] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/select/142373
2023-07-31 15:15:08.542 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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 id = ? 
2023-07-31 15:15:08.542 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 142373(Integer)
2023-07-31 15:15:08.550 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.558 DEBUG 6552 --- [XNIO-1 task-125] 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-07-31 15:15:08.558 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 425(Integer)
2023-07-31 15:15:08.566 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:15:08.566 DEBUG 6552 --- [XNIO-1 task-125] 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-07-31 15:15:08.566 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-07-31 15:15:08.583 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:15:08.583 DEBUG 6552 --- [XNIO-1 task-125] 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-07-31 15:15:08.583 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 15:15:08.591 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:15:08.591 DEBUG 6552 --- [XNIO-1 task-125] 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-07-31 15:15:08.591 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 15:15:08.599 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:15:08.599 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:15:08.606 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:15:08.607 DEBUG 6552 --- [XNIO-1 task-125] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:22.690  INFO 6552 --- [XNIO-1 task-126] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/select/142359
2023-07-31 15:16:22.698 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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 id = ? 
2023-07-31 15:16:22.706 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 142359(Integer)
2023-07-31 15:16:22.714 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:22.714 DEBUG 6552 --- [XNIO-1 task-126] 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-07-31 15:16:22.714 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 428(Integer)
2023-07-31 15:16:22.722 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:22.722 DEBUG 6552 --- [XNIO-1 task-126] 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-07-31 15:16:22.722 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-07-31 15:16:22.730 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:16:22.730 DEBUG 6552 --- [XNIO-1 task-126] 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-07-31 15:16:22.730 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 15:16:22.746 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:22.746 DEBUG 6552 --- [XNIO-1 task-126] 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-07-31 15:16:22.749 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 15:16:22.754 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:22.754 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:16:22.754 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-07-31 15:16:22.770 DEBUG 6552 --- [XNIO-1 task-126] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:24.112  INFO 6552 --- [XNIO-1 task-127] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/select/142358
2023-07-31 15:16:24.119 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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 id = ? 
2023-07-31 15:16:24.119 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 142358(Integer)
2023-07-31 15:16:24.135 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:24.135 DEBUG 6552 --- [XNIO-1 task-127] 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-07-31 15:16:24.135 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 427(Integer)
2023-07-31 15:16:24.152 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:24.152 DEBUG 6552 --- [XNIO-1 task-127] 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-07-31 15:16:24.152 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 15:16:24.160 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:16:24.160 DEBUG 6552 --- [XNIO-1 task-127] 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-07-31 15:16:24.160 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 15:16:24.168 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:24.168 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:16:24.168 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:16:24.176 DEBUG 6552 --- [XNIO-1 task-127] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:25.677  INFO 6552 --- [XNIO-1 task-128] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/select/142358
2023-07-31 15:16:25.688 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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 id = ? 
2023-07-31 15:16:25.688 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 142358(Integer)
2023-07-31 15:16:25.698 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:25.729 DEBUG 6552 --- [XNIO-1 task-128] 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-07-31 15:16:25.729 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 427(Integer)
2023-07-31 15:16:25.738 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:25.738 DEBUG 6552 --- [XNIO-1 task-128] 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-07-31 15:16:25.738 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 15:16:25.749 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:16:25.749 DEBUG 6552 --- [XNIO-1 task-128] 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-07-31 15:16:25.749 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 15:16:25.758 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:25.758 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:16:25.758 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:16:25.766 DEBUG 6552 --- [XNIO-1 task-128] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:26.765  INFO 6552 --- [XNIO-1 task-129] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/select/142358
2023-07-31 15:16:26.773 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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 id = ? 
2023-07-31 15:16:26.773 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 142358(Integer)
2023-07-31 15:16:26.781 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:26.781 DEBUG 6552 --- [XNIO-1 task-129] 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-07-31 15:16:26.781 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 427(Integer)
2023-07-31 15:16:26.790 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:26.790 DEBUG 6552 --- [XNIO-1 task-129] 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-07-31 15:16:26.798 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-07-31 15:16:26.806 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-07-31 15:16:26.806 DEBUG 6552 --- [XNIO-1 task-129] 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-07-31 15:16:26.806 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 15:16:26.814 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:26.814 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:16:26.814 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:16:26.822 DEBUG 6552 --- [XNIO-1 task-129] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:28.096  INFO 6552 --- [XNIO-1 task-130] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/question/answer/select/142357
2023-07-31 15:16:28.108 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.E.selectByPrimaryKey           : ==>  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 id = ? 
2023-07-31 15:16:28.108 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 142357(Integer)
2023-07-31 15:16:28.113 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:28.113 DEBUG 6552 --- [XNIO-1 task-130] 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-07-31 15:16:28.113 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 426(Integer)
2023-07-31 15:16:28.120 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:28.128 DEBUG 6552 --- [XNIO-1 task-130] 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-07-31 15:16:28.128 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-07-31 15:16:28.136 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-07-31 15:16:28.136 DEBUG 6552 --- [XNIO-1 task-130] 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-07-31 15:16:28.136 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-07-31 15:16:28.144 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:28.144 DEBUG 6552 --- [XNIO-1 task-130] 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-07-31 15:16:28.144 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-07-31 15:16:28.158 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-07-31 15:16:28.158 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:16:28.158 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 15:16:28.169 DEBUG 6552 --- [XNIO-1 task-130] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:16:36.002  INFO 6552 --- [XNIO-1 task-131] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/log
2023-07-31 15:16:36.010 DEBUG 6552 --- [XNIO-1 task-131] 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-07-31 15:16:36.010 DEBUG 6552 --- [XNIO-1 task-131] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:16:36.018 DEBUG 6552 --- [XNIO-1 task-131] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:16:36.018 DEBUG 6552 --- [XNIO-1 task-131] r.c.m.x.r.U.getUserEventLogByUserId      : ==>  Preparing: select id, user_id, user_name, real_name, content, create_time from t_user_event_log where user_id=? order by id desc limit 10 
2023-07-31 15:16:36.018 DEBUG 6552 --- [XNIO-1 task-131] r.c.m.x.r.U.getUserEventLogByUserId      : ==> Parameters: 10(Integer)
2023-07-31 15:16:36.034 DEBUG 6552 --- [XNIO-1 task-131] r.c.m.x.r.U.getUserEventLogByUserId      : <==      Total: 10
2023-07-31 15:16:36.274  INFO 6552 --- [XNIO-1 task-132] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-07-31 15:16:36.274 DEBUG 6552 --- [XNIO-1 task-132] 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-07-31 15:16:36.277 DEBUG 6552 --- [XNIO-1 task-132] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:16:36.287 DEBUG 6552 --- [XNIO-1 task-132] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:21:04.133  INFO 6552 --- [XNIO-1 task-133] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/page
2023-07-31 15:21:04.143 DEBUG 6552 --- [XNIO-1 task-133] 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-07-31 15:21:04.143 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:21:04.151 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:21:04.159 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.M.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_message_user WHERE receive_user_id = ? 
2023-07-31 15:21:04.159 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.M.studentPage_COUNT            : ==> Parameters: 10(Integer)
2023-07-31 15:21:04.168 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.M.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:21:04.168 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.MessageUserMapper.studentPage  : ==>  Preparing: SELECT id, message_id, receive_user_id, receive_user_name, receive_real_name, readed, create_time, read_time FROM t_message_user WHERE receive_user_id = ? order by id desc LIMIT ? 
2023-07-31 15:21:04.168 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.MessageUserMapper.studentPage  : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:21:04.175 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.MessageUserMapper.studentPage  : <==      Total: 1
2023-07-31 15:21:04.175 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.MessageMapper.selectByIds      : ==>  Preparing: select id, title, content, create_time, send_user_id, send_user_name, send_real_name, receive_user_count, read_count from t_message where id in ( ? ) 
2023-07-31 15:21:04.175 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.MessageMapper.selectByIds      : ==> Parameters: 3(Integer)
2023-07-31 15:21:04.191 DEBUG 6552 --- [XNIO-1 task-133] r.c.m.x.r.MessageMapper.selectByIds      : <==      Total: 1
2023-07-31 15:21:55.192  INFO 6552 --- [XNIO-1 task-134] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/read/3
2023-07-31 15:21:55.208 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.M.selectByPrimaryKey           : ==>  Preparing: select id, message_id, receive_user_id, receive_user_name, receive_real_name, readed, create_time, read_time from t_message_user where id = ? 
2023-07-31 15:21:55.208 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.M.selectByPrimaryKey           : ==> Parameters: 3(Integer)
2023-07-31 15:21:55.216 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.M.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:21:55.224 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.M.updateByPrimaryKeySelective  : ==>  Preparing: update t_message_user SET message_id = ?, receive_user_id = ?, receive_user_name = ?, receive_real_name = ?, readed = ?, create_time = ?, read_time = ? where id = ? 
2023-07-31 15:21:55.224 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.M.updateByPrimaryKeySelective  : ==> Parameters: 3(Integer), 10(Integer), student(String), student(String), true(Boolean), 2023-07-31 14:04:36.0(Timestamp), 2023-07-31 15:21:55.216(Timestamp), 3(Integer)
2023-07-31 15:21:55.240 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.M.updateByPrimaryKeySelective  : <==    Updates: 1
2023-07-31 15:21:55.240 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.MessageMapper.readAdd          : ==>  Preparing: UPDATE t_message SET read_count = read_count + 1 WHERE id= ? and read_count = (SELECT m.read_count from ( SELECT read_count FROM t_message WHERE id = ? ) m) 
2023-07-31 15:21:55.240 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.MessageMapper.readAdd          : ==> Parameters: 3(Integer), 3(Integer)
2023-07-31 15:21:55.288 DEBUG 6552 --- [XNIO-1 task-134] r.c.m.x.r.MessageMapper.readAdd          : <==    Updates: 1
2023-07-31 15:32:49.636  INFO 6552 --- [Thread-25] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-07-31 15:32:49.944  INFO 6552 --- [Thread-25] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-07-31 15:32:50.018  INFO 6552 --- [Thread-25] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-07-31 15:39:09.509  INFO 8316 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 8316 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-07-31 15:39:09.512  INFO 8316 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-07-31 15:39:09.569  INFO 8316 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-07-31 15:39:09.570  INFO 8316 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-07-31 15:39:13.425  INFO 8316 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$48eb8e25] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-07-31 15:39:13.957  WARN 8316 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-07-31 15:39:14.001  INFO 8316 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-07-31 15:39:14.001  INFO 8316 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 4431 ms
2023-07-31 15:39:16.314  INFO 8316 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-07-31 15:39:16.609  INFO 8316 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4a7ec99f, org.springframework.security.web.context.SecurityContextPersistenceFilter@19a20592, org.springframework.security.web.header.HeaderWriterFilter@7c1f5bca, org.springframework.web.filter.CorsFilter@39f8fdae, org.springframework.security.web.authentication.logout.LogoutFilter@5fb42a07, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@f4fa0d3, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@40dda65a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@d47edb2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1bb2c4f5, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@27c2caa6, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@741884ff, org.springframework.security.web.session.SessionManagementFilter@4e108346, org.springframework.security.web.access.ExceptionTranslationFilter@2a85fc54, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@16c8ba55]
2023-07-31 15:39:16.646  INFO 8316 --- [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-07-31 15:39:17.441  INFO 8316 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-07-31 15:39:17.469  INFO 8316 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-07-31 15:39:17.534  INFO 8316 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-07-31 15:39:17.780  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-07-31 15:39:17.846  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-07-31 15:39:17.889  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-07-31 15:39:17.908  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-07-31 15:39:17.914  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-07-31 15:39:18.026  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-07-31 15:39:18.068  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-07-31 15:39:18.071  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-07-31 15:39:18.075  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-07-31 15:39:18.077  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-07-31 15:39:18.083  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-07-31 15:39:18.102  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-07-31 15:39:18.112  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-07-31 15:39:18.114  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-07-31 15:39:18.128  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-07-31 15:39:18.131  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-07-31 15:39:18.136  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-07-31 15:39:18.140  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-07-31 15:39:18.142  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-07-31 15:39:18.144  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-07-31 15:39:18.159  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-07-31 15:39:18.170  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-07-31 15:39:18.185  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-07-31 15:39:18.187  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-07-31 15:39:18.196  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-07-31 15:39:18.206  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-07-31 15:39:18.211  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-07-31 15:39:18.214  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-07-31 15:39:18.216  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-07-31 15:39:18.251  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-07-31 15:39:18.255  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-07-31 15:39:18.259  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-07-31 15:39:18.264  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-07-31 15:39:18.276  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-07-31 15:39:18.279  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-07-31 15:39:18.295  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-07-31 15:39:18.297  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-07-31 15:39:18.298  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-07-31 15:39:18.299  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-07-31 15:39:18.300  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-07-31 15:39:18.301  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-07-31 15:39:18.302  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-07-31 15:39:18.303  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-07-31 15:39:18.326  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-07-31 15:39:18.333  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-07-31 15:39:18.342  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-07-31 15:39:18.343  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-07-31 15:39:18.349  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-07-31 15:39:18.360  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-07-31 15:39:18.367  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-07-31 15:39:18.370  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-07-31 15:39:18.375  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-07-31 15:39:18.378  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-07-31 15:39:18.379  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-07-31 15:39:18.385  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-07-31 15:39:18.387  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-07-31 15:39:18.392  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-07-31 15:39:18.394  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-07-31 15:39:18.398  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-07-31 15:39:18.402  INFO 8316 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-07-31 15:39:18.552  INFO 8316 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-07-31 15:39:18.575  INFO 8316 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-07-31 15:39:18.683  INFO 8316 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-07-31 15:39:18.689  INFO 8316 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 9.853 seconds (JVM running for 11.269)
2023-07-31 15:39:56.286  INFO 8316 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-07-31 15:39:56.286  INFO 8316 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-07-31 15:39:56.306  INFO 8316 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 20 ms
2023-07-31 15:39:56.391  INFO 8316 --- [XNIO-1 task-2] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 15:39:56.396  INFO 8316 --- [XNIO-1 task-1] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/read/6192
2023-07-31 15:39:56.433  INFO 8316 --- [XNIO-1 task-2] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-07-31 15:40:03.000  INFO 8316 --- [XNIO-1 task-2] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-07-31 15:40:03.016 DEBUG 8316 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 15:40:03.058 DEBUG 8316 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 15:40:03.076 DEBUG 8316 --- [XNIO-1 task-1] 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-07-31 15:40:03.076 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6192(Integer)
2023-07-31 15:40:03.104 DEBUG 8316 --- [XNIO-1 task-2] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 15:40:03.106 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.123 DEBUG 8316 --- [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-07-31 15:40:03.123 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 83(Integer)
2023-07-31 15:40:03.140 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.263 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:03.263 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 531(Integer)
2023-07-31 15:40:03.275 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.357 DEBUG 8316 --- [XNIO-1 task-1] 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-07-31 15:40:03.362 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 426(Integer), 425(Integer)
2023-07-31 15:40:03.373 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 3
2023-07-31 15:40:03.386 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:03.386 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 15:40:03.394 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.410 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:03.410 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-07-31 15:40:03.418 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.426 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:03.428 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:40:03.434 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.434 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:40:03.434 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:40:03.450 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:40:03.450 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:40:03.450 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:40:03.463 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:40:03.464 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:40:03.464 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:40:03.475 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:40:03.478 DEBUG 8316 --- [XNIO-1 task-1] 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-07-31 15:40:03.478 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 6192(Integer)
2023-07-31 15:40:03.490 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:03.491 DEBUG 8316 --- [XNIO-1 task-1] 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-07-31 15:40:03.491 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectListByPaperAnswerId    : ==> Parameters: 6192(Integer)
2023-07-31 15:40:03.506 DEBUG 8316 --- [XNIO-1 task-1] r.c.m.x.r.E.selectListByPaperAnswerId    : <==      Total: 3
2023-07-31 15:40:16.290  INFO 8316 --- [XNIO-1 task-3] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 15:40:16.308 DEBUG 8316 --- [XNIO-1 task-3] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 15:40:16.308 DEBUG 8316 --- [XNIO-1 task-3] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 15:40:16.321 DEBUG 8316 --- [XNIO-1 task-3] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 15:40:16.775  INFO 8316 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-07-31 15:40:16.775  INFO 8316 --- [XNIO-1 task-4] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/current
2023-07-31 15:40:16.775  INFO 8316 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-07-31 15:40:16.775  INFO 8316 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/user/message/unreadCount
2023-07-31 15:40:16.791 DEBUG 8316 --- [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-07-31 15:40:16.793 DEBUG 8316 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:40:16.800 DEBUG 8316 --- [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-07-31 15:40:16.800 DEBUG 8316 --- [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-07-31 15:40:16.800 DEBUG 8316 --- [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-07-31 15:40:16.800 DEBUG 8316 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:40:16.800 DEBUG 8316 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:40:16.800 DEBUG 8316 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:40:16.804 DEBUG 8316 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:40:16.809 DEBUG 8316 --- [XNIO-1 task-6] 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-07-31 15:40:16.809 DEBUG 8316 --- [XNIO-1 task-6] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 17(Integer)
2023-07-31 15:40:16.809 DEBUG 8316 --- [XNIO-1 task-5] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:40:16.814 DEBUG 8316 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:40:16.815 DEBUG 8316 --- [XNIO-1 task-4] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:40:16.822 DEBUG 8316 --- [XNIO-1 task-6] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-07-31 15:40:16.822 DEBUG 8316 --- [XNIO-1 task-5] r.c.m.x.r.MessageUserMapper.unReadCount  : ==>  Preparing: select count(*) from t_message_user where readed='f' and receive_user_id = ? 
2023-07-31 15:40:16.822 DEBUG 8316 --- [XNIO-1 task-5] r.c.m.x.r.MessageUserMapper.unReadCount  : ==> Parameters: 10(Integer)
2023-07-31 15:40:16.827 DEBUG 8316 --- [XNIO-1 task-7] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 15:40:16.833 DEBUG 8316 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer)
2023-07-31 15:40:16.833 DEBUG 8316 --- [XNIO-1 task-5] r.c.m.x.r.MessageUserMapper.unReadCount  : <==      Total: 1
2023-07-31 15:40:16.844 DEBUG 8316 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-07-31 15:40:16.846 DEBUG 8316 --- [XNIO-1 task-7] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 15:40:16.846 DEBUG 8316 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), null
2023-07-31 15:40:16.852 DEBUG 8316 --- [XNIO-1 task-7] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-07-31 15:40:20.331  INFO 8316 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/count/list
2023-07-31 15:40:20.349 DEBUG 8316 --- [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-07-31 15:40:20.349 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:40:20.357 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:40:20.430 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 15:40:20.432 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 10(Integer)
2023-07-31 15:40:20.442 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 15:40:20.447 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 15:40:20.447 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:40:20.461 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.E.list                         : <==      Total: 2
2023-07-31 15:40:20.463 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:40:20.465 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 15:40:20.475 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:40:20.475 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:40:20.475 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 15:40:20.480 DEBUG 8316 --- [XNIO-1 task-8] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:40:50.205  INFO 8316 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/templates/add
2023-07-31 15:40:50.221 DEBUG 8316 --- [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-07-31 15:40:50.221 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:40:50.229 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:40:50.238 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.getTime    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates order by ctime desc limit 1 
2023-07-31 15:40:50.238 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.getTime    : ==> Parameters: 
2023-07-31 15:40:50.254 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.getTime    : <==      Total: 1
2023-07-31 15:40:50.254 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:40:50.254 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 15:40:50.263 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:40:50.308 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-07-31 15:40:50.308 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 28(Integer)
2023-07-31 15:40:50.316 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-07-31 15:40:50.316 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByTemplatesId             : ==>  Preparing: select id, label, multiple_choice, single_choice, true_false, templates_id, subject_id from t_exam_templates_question where templates_id = ? 
2023-07-31 15:40:50.324 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByTemplatesId             : ==> Parameters: 28(Integer)
2023-07-31 15:40:50.340 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByTemplatesId             : <==      Total: 1
2023-07-31 15:40:50.372 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.Q.getSubject                   : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where subject_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-07-31 15:40:50.372 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.Q.getSubject                   : ==> Parameters: 20(Integer)
2023-07-31 15:40:50.380 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.Q.getSubject                   : <==      Total: 8
2023-07-31 15:40:50.388 DEBUG 8316 --- [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-07-31 15:40:50.388 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 425(Integer), 426(Integer), 427(Integer), 428(Integer), 429(Integer), 430(Integer), 431(Integer)
2023-07-31 15:40:50.396 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 8
2023-07-31 15:40:50.420 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.insertSelective              : ==>  Preparing: insert into t_text_content ( content, create_time ) values ( ?, ? ) 
2023-07-31 15:40:50.420 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.insertSelective              : ==> Parameters: [{"name":"0725测试","questionItems":[{"id":424,"itemOrder":0},{"id":425,"itemOrder":1},{"id":427,"itemOrder":2},{"id":429,"itemOrder":3},{"id":431,"itemOrder":4}]}](String), 2023-07-31 15:40:50.356(Timestamp)
2023-07-31 15:40:50.453 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.insertSelective              : <==    Updates: 1
2023-07-31 15:40:50.461 DEBUG 8316 --- [XNIO-1 task-9] 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, type ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) 
2023-07-31 15:40:50.469 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.insertSelective              : ==> Parameters: 0725测试(String), 7(Integer), 200(Integer), 5(Integer), 12(Integer), 599(Integer), 10(Integer), 2023-07-31 15:40:50.356(Timestamp), false(Boolean), 1(String)
2023-07-31 15:40:50.485 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.insertSelective              : <==    Updates: 1
2023-07-31 15:40:50.485 DEBUG 8316 --- [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-07-31 15:40:50.485 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:50.501 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:40:50.501 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperUserMapper.saves      : ==>  Preparing: insert into t_exam_paper_user(id, exam_paper_id, user_id, deleted) values (?,?,?,?) 
2023-07-31 15:40:50.509 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperUserMapper.saves      : ==> Parameters: null, 145(Integer), 10(Integer), 0(String)
2023-07-31 15:40:50.525 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperUserMapper.saves      : <==    Updates: 1
2023-07-31 15:40:50.541 DEBUG 8316 --- [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-07-31 15:40:50.541 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:50.549 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:40:50.549 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==>  Preparing: insert into t_exam_paper_subject(id,subject_id,exam_paper_id,deleted) values (?,?,?,?) 
2023-07-31 15:40:50.549 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperSubjectMapper.saves   : ==> Parameters: null, 20(Integer), 145(Integer), 0(String)
2023-07-31 15:40:50.565 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.ExamPaperSubjectMapper.saves   : <==    Updates: 1
2023-07-31 15:40:50.605 DEBUG 8316 --- [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-07-31 15:40:50.605 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 145(Integer)
2023-07-31 15:40:50.613 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.613 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:50.622 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 599(Integer)
2023-07-31 15:40:50.629 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.629 DEBUG 8316 --- [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-07-31 15:40:50.629 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 425(Integer), 427(Integer), 429(Integer), 431(Integer)
2023-07-31 15:40:50.646 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-07-31 15:40:50.646 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:50.654 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 15:40:50.662 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.662 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:50.662 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:40:50.678 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.678 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:50.678 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:40:50.694 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.694 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:50.694 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-07-31 15:40:50.702 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.702 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:50.702 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-07-31 15:40:50.718 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:50.718 DEBUG 8316 --- [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-07-31 15:40:50.718 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:50.734 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:40:50.734 DEBUG 8316 --- [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-07-31 15:40:50.734 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:50.746 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:40:50.746 DEBUG 8316 --- [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-07-31 15:40:50.746 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:50.758 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:40:50.758 DEBUG 8316 --- [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-07-31 15:40:50.758 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-07-31 15:40:50.766 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 15:40:50.766 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.add                          : ==>  Preparing: insert into t_exam_templates_user_count (exam_paper_id, user_id, exam_templates_id) values (?, ?, ?) 
2023-07-31 15:40:50.766 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.add                          : ==> Parameters: 145(Integer), 10(Integer), 28(Integer)
2023-07-31 15:40:50.790 DEBUG 8316 --- [XNIO-1 task-9] r.c.m.x.r.E.add                          : <==    Updates: 1
2023-07-31 15:40:51.505  INFO 8316 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-07-31 15:40:51.510  INFO 8316 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/select/145
2023-07-31 15:40:51.515 DEBUG 8316 --- [XNIO-1 task-10] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-07-31 15:40:51.515 DEBUG 8316 --- [XNIO-1 task-10] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-07-31 15:40:51.523 DEBUG 8316 --- [XNIO-1 task-11] 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-07-31 15:40:51.523 DEBUG 8316 --- [XNIO-1 task-10] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 3
2023-07-31 15:40:51.523 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 145(Integer)
2023-07-31 15:40:51.537 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.538 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:51.538 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 599(Integer)
2023-07-31 15:40:51.547 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.549 DEBUG 8316 --- [XNIO-1 task-11] 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-07-31 15:40:51.549 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 424(Integer), 425(Integer), 427(Integer), 429(Integer), 431(Integer)
2023-07-31 15:40:51.560 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-07-31 15:40:51.563 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:51.563 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-07-31 15:40:51.572 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.572 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:51.572 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-07-31 15:40:51.588 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.590 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:51.590 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-07-31 15:40:51.597 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.597 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:51.597 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-07-31 15:40:51.613 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.613 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-07-31 15:40:51.613 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-07-31 15:40:51.621 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-07-31 15:40:51.631 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-07-31 15:40:51.631 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:51.640 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:40:51.640 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:40:51.640 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:51.647 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:40:51.647 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:40:51.647 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:40:51.653 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:40:51.662 DEBUG 8316 --- [XNIO-1 task-11] 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-07-31 15:40:51.662 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-07-31 15:40:51.670 DEBUG 8316 --- [XNIO-1 task-11] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-07-31 15:41:41.650  INFO 8316 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-07-31 15:41:41.650  INFO 8316 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-07-31 15:41:41.658 DEBUG 8316 --- [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-07-31 15:41:41.658 DEBUG 8316 --- [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-07-31 15:41:41.658 DEBUG 8316 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:41.658 DEBUG 8316 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:41.666 DEBUG 8316 --- [XNIO-1 task-13] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:41.666 DEBUG 8316 --- [XNIO-1 task-12] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:41.674 DEBUG 8316 --- [XNIO-1 task-13] 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-07-31 15:41:41.674 DEBUG 8316 --- [XNIO-1 task-12] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 15:41:41.674 DEBUG 8316 --- [XNIO-1 task-13] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 17(Integer)
2023-07-31 15:41:41.674 DEBUG 8316 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer)
2023-07-31 15:41:41.682 DEBUG 8316 --- [XNIO-1 task-13] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-07-31 15:41:41.682 DEBUG 8316 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-07-31 15:41:41.682 DEBUG 8316 --- [XNIO-1 task-12] 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 = ? ORDER BY e.id desc ) t 
2023-07-31 15:41:41.682 DEBUG 8316 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), null
2023-07-31 15:41:41.690 DEBUG 8316 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-07-31 15:41:47.425  INFO 8316 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/count/list
2023-07-31 15:41:47.433 DEBUG 8316 --- [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-07-31 15:41:47.433 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:47.449 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:47.449 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.E.list_COUNT                   : ==>  Preparing: SELECT count(0) FROM (SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id) table_count 
2023-07-31 15:41:47.449 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 10(Integer)
2023-07-31 15:41:47.465 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-07-31 15:41:47.465 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.E.list                         : ==>  Preparing: SELECT exam_templates_id AS id, count(*) AS count, user_id AS userId FROM `t_exam_templates_user_count` WHERE user_id = ? GROUP BY exam_templates_id, user_id order by id desc LIMIT ? 
2023-07-31 15:41:47.465 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:41:47.473 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.E.list                         : <==      Total: 2
2023-07-31 15:41:47.473 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:41:47.481 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-07-31 15:41:47.489 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:41:47.489 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.getById    : ==>  Preparing: select id , name, paper_type, suggest_time, title_name, ctime from t_exam_templates where id = ? 
2023-07-31 15:41:47.489 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-07-31 15:41:47.497 DEBUG 8316 --- [XNIO-1 task-14] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-07-31 15:41:48.236  INFO 8316 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/education/subject/list
2023-07-31 15:41:48.261 DEBUG 8316 --- [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-07-31 15:41:48.261 DEBUG 8316 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:48.270 DEBUG 8316 --- [XNIO-1 task-15] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:48.270 DEBUG 8316 --- [XNIO-1 task-15] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-07-31 15:41:48.270 DEBUG 8316 --- [XNIO-1 task-15] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-07-31 15:41:48.285 DEBUG 8316 --- [XNIO-1 task-15] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-07-31 15:41:48.847  INFO 8316 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exam/paper/pageList
2023-07-31 15:41:48.875 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id) table_count 
2023-07-31 15:41:48.875 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 20(Integer)
2023-07-31 15:41:48.886 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:41:48.888 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperMapper.studentPage    : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND s.deleted = 0 AND s.subject_id = ? AND e.paper_type IN (1, 7) GROUP BY e.id order by id desc LIMIT ? 
2023-07-31 15:41:48.888 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperMapper.studentPage    : ==> Parameters: 20(Integer), 10(Integer)
2023-07-31 15:41:48.903 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.ExamPaperMapper.studentPage    : <==      Total: 10
2023-07-31 15:41:48.903 DEBUG 8316 --- [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-07-31 15:41:48.903 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:48.913 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:48.918 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.918 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:41:48.928 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:48.932 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.934 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 145(Integer)
2023-07-31 15:41:48.944 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:48.946 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.946 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:41:48.956 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:48.956 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.956 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-07-31 15:41:48.967 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:48.967 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.969 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:41:48.977 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:48.980 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.980 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-07-31 15:41:48.985 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:48.985 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:48.985 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:41:48.994 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.002 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.002 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:41:49.010 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.010 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.010 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:41:49.019 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.019 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.019 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 141(Integer)
2023-07-31 15:41:49.026 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.034 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.034 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:41:49.043 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.046 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.046 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 140(Integer)
2023-07-31 15:41:49.051 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.051 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.051 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:41:49.067 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.067 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.067 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 139(Integer)
2023-07-31 15:41:49.075 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.075 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.075 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:41:49.083 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.083 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.091 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 138(Integer)
2023-07-31 15:41:49.099 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.099 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.099 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:41:49.107 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.107 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.107 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 137(Integer)
2023-07-31 15:41:49.123 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.123 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.123 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:41:49.133 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:49.135 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-07-31 15:41:49.135 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 136(Integer)
2023-07-31 15:41:49.144 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:49.146 DEBUG 8316 --- [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-07-31 15:41:49.146 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByUserId                  : ==> Parameters: 10(Integer)
2023-07-31 15:41:49.161 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.r.E.getByUserId                  : <==      Total: 42
2023-07-31 15:41:49.164 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.gets  : ==>  Preparing: select * from t_exam_paper where id in ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? ) and deleted = 0 
2023-07-31 15:41:49.164 DEBUG 8316 --- [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-07-31 15:41:49.183 DEBUG 8316 --- [XNIO-1 task-16] r.c.m.x.repository.ExamPaperMapper.gets  : <==      Total: 41
2023-07-31 15:41:50.402  INFO 8316 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/exampaper/answer/pageList
2023-07-31 15:41:50.412 DEBUG 8316 --- [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-07-31 15:41:50.414 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:50.421 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:50.435 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.studentPage_COUNT            : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer WHERE create_user = ? 
2023-07-31 15:41:50.464 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.studentPage_COUNT            : ==> Parameters: 10(Integer)
2023-07-31 15:41:50.470 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.studentPage_COUNT            : <==      Total: 1
2023-07-31 15:41:50.476 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.476 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.studentPage                  : ==> Parameters: 10(Integer), 10(Integer)
2023-07-31 15:41:50.487 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.studentPage                  : <==      Total: 10
2023-07-31 15:41:50.492 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.492 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6192(Integer)
2023-07-31 15:41:50.502 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.504 DEBUG 8316 --- [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-07-31 15:41:50.504 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:41:50.508 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.516 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.516 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.525 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.525 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.525 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6189(Integer)
2023-07-31 15:41:50.540 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.540 DEBUG 8316 --- [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-07-31 15:41:50.540 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 142(Integer)
2023-07-31 15:41:50.549 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.549 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.549 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.557 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.557 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.557 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6188(Integer)
2023-07-31 15:41:50.573 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.573 DEBUG 8316 --- [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-07-31 15:41:50.573 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 110(Integer)
2023-07-31 15:41:50.581 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.581 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.581 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.589 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.597 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.597 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6187(Integer)
2023-07-31 15:41:50.613 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.613 DEBUG 8316 --- [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-07-31 15:41:50.613 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 91(Integer)
2023-07-31 15:41:50.621 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-07-31 15:41:50.621 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.621 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6186(Integer)
2023-07-31 15:41:50.629 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.629 DEBUG 8316 --- [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-07-31 15:41:50.629 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:41:50.647 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.647 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.647 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.653 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.653 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.653 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6185(Integer)
2023-07-31 15:41:50.677 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.677 DEBUG 8316 --- [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-07-31 15:41:50.677 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:41:50.685 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.685 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.685 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.693 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.701 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.701 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6184(Integer)
2023-07-31 15:41:50.709 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.709 DEBUG 8316 --- [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-07-31 15:41:50.709 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:41:50.725 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.725 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.725 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.733 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.733 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.733 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6183(Integer)
2023-07-31 15:41:50.747 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.749 DEBUG 8316 --- [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-07-31 15:41:50.749 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-07-31 15:41:50.757 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.757 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.757 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.765 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.765 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.765 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6182(Integer)
2023-07-31 15:41:50.781 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.781 DEBUG 8316 --- [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-07-31 15:41:50.781 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:41:50.789 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.797 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.797 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.805 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:50.805 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.805 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6181(Integer)
2023-07-31 15:41:50.813 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-07-31 15:41:50.813 DEBUG 8316 --- [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-07-31 15:41:50.821 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-07-31 15:41:50.829 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-07-31 15:41:50.829 DEBUG 8316 --- [XNIO-1 task-17] 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-07-31 15:41:50.829 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-07-31 15:41:50.837 DEBUG 8316 --- [XNIO-1 task-17] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-07-31 15:41:52.680  INFO 8316 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/index
2023-07-31 15:41:52.680  INFO 8316 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/student/dashboard/task
2023-07-31 15:41:52.688 DEBUG 8316 --- [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-07-31 15:41:52.688 DEBUG 8316 --- [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-07-31 15:41:52.688 DEBUG 8316 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:52.688 DEBUG 8316 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: student(String)
2023-07-31 15:41:52.698 DEBUG 8316 --- [XNIO-1 task-19] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:52.705 DEBUG 8316 --- [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 = ? ORDER BY e.id desc ) t 
2023-07-31 15:41:52.705 DEBUG 8316 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 1(Integer), 7(Integer), 17(Integer), 10(Integer)
2023-07-31 15:41:52.705 DEBUG 8316 --- [XNIO-1 task-18] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:41:52.705 DEBUG 8316 --- [XNIO-1 task-18] 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-07-31 15:41:52.705 DEBUG 8316 --- [XNIO-1 task-18] r.c.m.x.r.T.getByGradeLevel              : ==> Parameters: 17(Integer)
2023-07-31 15:41:52.713 DEBUG 8316 --- [XNIO-1 task-18] r.c.m.x.r.T.getByGradeLevel              : <==      Total: 0
2023-07-31 15:41:52.713 DEBUG 8316 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 4
2023-07-31 15:41:52.713 DEBUG 8316 --- [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 = ? ORDER BY e.id desc ) t 
2023-07-31 15:41:52.713 DEBUG 8316 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : ==> Parameters: 4(Integer), 17(Integer), null
2023-07-31 15:41:52.729 DEBUG 8316 --- [XNIO-1 task-19] r.c.m.x.r.ExamPaperMapper.indexPaper     : <==      Total: 0
2023-07-31 15:42:54.392 DEBUG 8316 --- [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-07-31 15:42:54.392 DEBUG 8316 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 15:42:54.408 DEBUG 8316 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:42:55.111 DEBUG 8316 --- [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-07-31 15:42:55.111 DEBUG 8316 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-07-31 15:42:55.121 DEBUG 8316 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-07-31 15:42:55.126 DEBUG 8316 --- [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-07-31 15:42:55.130 DEBUG 8316 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-07-31 15:42:55.121(Timestamp)
2023-07-31 15:42:55.152 DEBUG 8316 --- [XNIO-1 task-23] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-07-31 15:42:55.327  INFO 8316 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-07-31 15:42:55.338 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-07-31 15:42:55.338 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 15:42:55.349 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 15:42:55.352 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-07-31 15:42:55.352 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-07-31 15:42:55.362 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-07-31 15:42:55.363 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-07-31 15:42:55.363 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 15:42:55.372 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 15:42:55.375 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-07-31 15:42:55.375 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-07-31 15:42:55.379 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-07-31 15:42:55.426 DEBUG 8316 --- [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-07-31 15:42:55.426 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 15:42:55.434 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.U.selectCountByDate            : <==      Total: 14
2023-07-31 15:42:55.442 DEBUG 8316 --- [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-07-31 15:42:55.442 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-07-01 00:00:00.0(Timestamp), 2023-07-31 23:59:59.0(Timestamp)
2023-07-31 15:42:55.450 DEBUG 8316 --- [XNIO-1 task-24] r.c.m.x.r.E.selectCountByDate            : <==      Total: 7
2023-07-31 15:43:02.819  INFO 8316 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/page/list
2023-07-31 15:43:02.847 DEBUG 8316 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.userPage_COUNT      : ==>  Preparing: SELECT count(0) FROM t_user WHERE deleted = 0 AND role = ? 
2023-07-31 15:43:02.865 DEBUG 8316 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.userPage_COUNT      : ==> Parameters: 1(Integer)
2023-07-31 15:43:02.875 DEBUG 8316 --- [XNIO-1 task-25] r.c.m.x.r.UserMapper.userPage_COUNT      : <==      Total: 1
2023-07-31 15:43:02.875 DEBUG 8316 --- [XNIO-1 task-25] r.c.m.x.repository.UserMapper.userPage   : ==>  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 role = ? order by id desc LIMIT ? 
2023-07-31 15:43:02.875 DEBUG 8316 --- [XNIO-1 task-25] r.c.m.x.repository.UserMapper.userPage   : ==> Parameters: 1(Integer), 10(Integer)
2023-07-31 15:43:02.888 DEBUG 8316 --- [XNIO-1 task-25] r.c.m.x.repository.UserMapper.userPage   : <==      Total: 10
2023-07-31 15:43:49.933  INFO 8316 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/user/event/page/list
2023-07-31 15:43:49.951 DEBUG 8316 --- [XNIO-1 task-26] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==>  Preparing: SELECT count(0) FROM t_user_event_log WHERE user_id = ? 
2023-07-31 15:43:49.951 DEBUG 8316 --- [XNIO-1 task-26] r.c.m.x.r.UserEventLogMapper.page_COUNT  : ==> Parameters: 1027(Integer)
2023-07-31 15:43:49.957 DEBUG 8316 --- [XNIO-1 task-26] r.c.m.x.r.UserEventLogMapper.page_COUNT  : <==      Total: 1
2023-07-31 15:43:49.965 DEBUG 8316 --- [XNIO-1 task-26] r.c.m.x.r.UserEventLogMapper.page        : ==>  Preparing: SELECT id, user_id, user_name, real_name, content, create_time FROM t_user_event_log WHERE user_id = ? order by id desc LIMIT ? 
2023-07-31 15:43:49.965 DEBUG 8316 --- [XNIO-1 task-26] r.c.m.x.r.UserEventLogMapper.page        : ==> Parameters: 1027(Integer), 10(Integer)
2023-07-31 15:43:49.975 DEBUG 8316 --- [XNIO-1 task-26] r.c.m.x.r.UserEventLogMapper.page        : <==      Total: 10
2023-07-31 18:05:02.381  INFO 8316 --- [Thread-28] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-07-31 18:05:02.751  INFO 8316 --- [Thread-28] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-07-31 18:05:02.777  INFO 8316 --- [Thread-28] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'