xiangpei
2024-05-14 decf7856a39ff88488285cac45d3298f2844d614
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
2023-08-17 14:54:06.171  INFO 21940 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 21940 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-17 14:54:06.174  INFO 21940 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-17 14:54:06.250  INFO 21940 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-17 14:54:06.250  INFO 21940 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-17 14:54:11.234  INFO 21940 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$dbb552c9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-17 14:54:11.828  WARN 21940 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-17 14:54:11.860  INFO 21940 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-17 14:54:11.860  INFO 21940 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 5610 ms
2023-08-17 14:54:14.366  INFO 21940 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-17 14:54:14.627  INFO 21940 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4ba831ed, org.springframework.security.web.context.SecurityContextPersistenceFilter@39f436a0, org.springframework.security.web.header.HeaderWriterFilter@30ff5e98, org.springframework.web.filter.CorsFilter@2ac16cd2, org.springframework.security.web.authentication.logout.LogoutFilter@109b9101, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@d604bac, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@4370536, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@20d4e405, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@575c6262, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@33ab91b6, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@40eb53f7, org.springframework.security.web.session.SessionManagementFilter@7df3bad9, org.springframework.security.web.access.ExceptionTranslationFilter@51d15c5, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4818aede]
2023-08-17 14:54:14.655  INFO 21940 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-17 14:54:15.375  INFO 21940 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-17 14:54:15.400  INFO 21940 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-17 14:54:15.452  INFO 21940 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-17 14:54:15.689  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-17 14:54:15.740  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-17 14:54:15.766  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-17 14:54:15.778  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-17 14:54:15.784  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-17 14:54:15.836  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-17 14:54:15.851  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-17 14:54:15.896  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-17 14:54:15.904  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-17 14:54:15.907  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-17 14:54:15.913  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-17 14:54:15.932  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-17 14:54:15.943  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-17 14:54:15.947  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-17 14:54:15.954  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-17 14:54:15.965  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-17 14:54:15.968  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-17 14:54:15.977  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-17 14:54:15.981  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-17 14:54:15.984  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-17 14:54:16.002  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-17 14:54:16.022  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-17 14:54:16.041  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-17 14:54:16.043  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-17 14:54:16.053  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-17 14:54:16.066  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-17 14:54:16.071  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-17 14:54:16.075  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-17 14:54:16.077  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-17 14:54:16.108  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-17 14:54:16.110  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-17 14:54:16.114  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-17 14:54:16.118  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-17 14:54:16.126  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-17 14:54:16.129  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-17 14:54:16.145  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-17 14:54:16.145  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-17 14:54:16.146  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-17 14:54:16.147  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-17 14:54:16.149  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-17 14:54:16.150  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-17 14:54:16.151  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-17 14:54:16.152  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-17 14:54:16.169  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-17 14:54:16.176  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-17 14:54:16.183  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-17 14:54:16.184  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-17 14:54:16.191  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-17 14:54:16.201  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-17 14:54:16.207  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-17 14:54:16.208  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-17 14:54:16.213  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-17 14:54:16.215  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-17 14:54:16.217  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-17 14:54:16.224  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-17 14:54:16.225  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-17 14:54:16.229  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-17 14:54:16.231  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-17 14:54:16.235  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-17 14:54:16.238  INFO 21940 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-17 14:54:16.328  INFO 21940 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-17 14:54:16.342  INFO 21940 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-17 14:54:16.477  INFO 21940 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8085 (http) with context path ''
2023-08-17 14:54:16.481  INFO 21940 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 11.421 seconds (JVM running for 15.226)
2023-08-17 14:55:16.846  INFO 16648 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 16648 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-17 14:55:16.849  INFO 16648 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-17 14:55:16.911  INFO 16648 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-17 14:55:16.911  INFO 16648 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-17 14:55:18.816  INFO 16648 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$17d5dabc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-17 14:55:19.296  WARN 16648 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-17 14:55:19.338  INFO 16648 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-17 14:55:19.338  INFO 16648 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2427 ms
2023-08-17 14:55:21.293  INFO 16648 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-17 14:55:21.555  INFO 16648 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@346ed842, org.springframework.security.web.context.SecurityContextPersistenceFilter@758b2d32, org.springframework.security.web.header.HeaderWriterFilter@5e696bfe, org.springframework.web.filter.CorsFilter@1757b070, org.springframework.security.web.authentication.logout.LogoutFilter@3611c62a, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@632f052, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@3bf1a3f8, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@391827de, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@702a3c3d, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@6c1a2112, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@5d568463, org.springframework.security.web.session.SessionManagementFilter@447fcfbb, org.springframework.security.web.access.ExceptionTranslationFilter@382a588d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6a7e3c6a]
2023-08-17 14:55:21.583  INFO 16648 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-17 14:55:22.051  INFO 16648 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-17 14:55:22.070  INFO 16648 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-17 14:55:22.109  INFO 16648 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-17 14:55:22.267  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-17 14:55:22.304  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-17 14:55:22.321  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-17 14:55:22.329  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-17 14:55:22.332  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-17 14:55:22.378  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-17 14:55:22.413  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-17 14:55:22.414  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-17 14:55:22.417  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-17 14:55:22.419  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-17 14:55:22.428  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-17 14:55:22.431  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-17 14:55:22.442  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-17 14:55:22.444  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-17 14:55:22.446  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-17 14:55:22.448  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-17 14:55:22.450  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-17 14:55:22.457  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-17 14:55:22.459  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-17 14:55:22.479  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-17 14:55:22.490  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-17 14:55:22.496  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-17 14:55:22.507  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-17 14:55:22.508  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-17 14:55:22.520  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-17 14:55:22.530  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-17 14:55:22.534  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-17 14:55:22.537  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-17 14:55:22.539  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-17 14:55:22.564  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-17 14:55:22.566  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-17 14:55:22.569  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-17 14:55:22.572  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-17 14:55:22.577  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-17 14:55:22.580  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-17 14:55:22.585  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-17 14:55:22.585  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-17 14:55:22.586  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-17 14:55:22.586  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-17 14:55:22.587  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-17 14:55:22.587  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-17 14:55:22.588  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-17 14:55:22.588  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-17 14:55:22.609  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-17 14:55:22.616  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-17 14:55:22.621  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-17 14:55:22.622  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-17 14:55:22.625  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-17 14:55:22.632  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-17 14:55:22.638  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-17 14:55:22.639  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-17 14:55:22.643  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-17 14:55:22.645  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-17 14:55:22.646  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-17 14:55:22.647  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-17 14:55:22.649  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-17 14:55:22.651  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-17 14:55:22.652  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-17 14:55:22.653  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-17 14:55:22.657  INFO 16648 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-17 14:55:22.731  INFO 16648 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-17 14:55:22.748  INFO 16648 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-17 14:55:22.834  INFO 16648 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-17 14:55:22.838  INFO 16648 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 6.622 seconds (JVM running for 8.362)
2023-08-17 14:56:56.776  INFO 16648 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-17 14:56:56.776  INFO 16648 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-17 14:56:56.791  INFO 16648 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 15 ms
2023-08-17 14:57:05.965  INFO 16648 --- [XNIO-1 task-3] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-17 14:57:09.155 ERROR 16648 --- [XNIO-1 task-3] com.zaxxer.hikari.pool.HikariPool        : HikariPool-1 - Exception during pool initialization.
 
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:827)
    at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:447)
    at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:237)
    at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199)
    at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136)
    at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
    at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198)
    at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467)
    at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541)
    at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
    at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
    at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78)
    at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80)
    at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67)
    at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:336)
    at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:85)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy143.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    at com.sun.proxy.$Proxy83.selectOne(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:159)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy84.getUserByUserName(Unknown Source)
    at com.mindskip.xzs.service.impl.UserServiceImpl.getUserByUserName(UserServiceImpl.java:48)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$FastClassBySpringCGLIB$$921573c2.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$EnhancerBySpringCGLIB$$e1e22b9c.getUserByUserName(<generated>)
    at com.mindskip.xzs.configuration.spring.security.RestAuthenticationProvider.authenticate(RestAuthenticationProvider.java:57)
    at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:175)
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter$AuthenticationManagerDelegator.authenticate(WebSecurityConfigurerAdapter.java:513)
    at com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter.attemptAuthentication(RestLoginAuthenticationFilter.java:49)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:212)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
    at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
    at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91)
    at com.mysql.cj.NativeSession.connect(NativeSession.java:150)
    at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:947)
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:817)
    ... 100 common frames omitted
Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
    at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81)
    at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476)
    at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218)
    at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394)
    at java.net.Socket.connect(Socket.java:606)
    at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155)
    at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65)
    ... 103 common frames omitted
 
2023-08-17 14:57:09.164 ERROR 16648 --- [XNIO-1 task-3] io.undertow.request                      : UT005023: Exception handling request to /api/user/login
 
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:78)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:440)
    at com.sun.proxy.$Proxy83.selectOne(Unknown Source)
    at org.mybatis.spring.SqlSessionTemplate.selectOne(SqlSessionTemplate.java:159)
    at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)
    at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:57)
    at com.sun.proxy.$Proxy84.getUserByUserName(Unknown Source)
    at com.mindskip.xzs.service.impl.UserServiceImpl.getUserByUserName(UserServiceImpl.java:48)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$FastClassBySpringCGLIB$$921573c2.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684)
    at com.mindskip.xzs.service.impl.UserServiceImpl$$EnhancerBySpringCGLIB$$e1e22b9c.getUserByUserName(<generated>)
    at com.mindskip.xzs.configuration.spring.security.RestAuthenticationProvider.authenticate(RestAuthenticationProvider.java:57)
    at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:175)
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter$AuthenticationManagerDelegator.authenticate(WebSecurityConfigurerAdapter.java:513)
    at com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter.attemptAuthentication(RestLoginAuthenticationFilter.java:49)
    at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:212)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:74)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
    at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
    at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
    at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)
    at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200)
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:109)
    at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
    at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
    at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
    at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
    at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
    at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
    at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
    at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
    at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
    at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
    at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
    at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
    at io.undertow.servlet.handlers.SessionRestoringHandler.handleRequest(SessionRestoringHandler.java:119)
    at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
    at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
    at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
    at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
    at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
    at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
    at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
    at io.undertow.server.Connectors.executeRootHandler(Connectors.java:364)
    at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:750)
Caused by: org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
### The error may exist in file [E:\ycll\qyksxt\target\classes\mapper\UserMapper.xml]
### The error may involve com.mindskip.xzs.repository.UserMapper.getUserByUserName
### The error occurred while executing a query
### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:149)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426)
    ... 68 common frames omitted
Caused by: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81)
    at org.mybatis.spring.transaction.SpringManagedTransaction.openConnection(SpringManagedTransaction.java:80)
    at org.mybatis.spring.transaction.SpringManagedTransaction.getConnection(SpringManagedTransaction.java:67)
    at org.apache.ibatis.executor.BaseExecutor.getConnection(BaseExecutor.java:336)
    at org.apache.ibatis.executor.SimpleExecutor.prepareStatement(SimpleExecutor.java:85)
    at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
    at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
    at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
    at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
    at com.github.pagehelper.PageInterceptor.intercept(PageInterceptor.java:108)
    at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
    at com.sun.proxy.$Proxy143.query(Unknown Source)
    at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)
    ... 75 common frames omitted
Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:827)
    at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:447)
    at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:237)
    at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199)
    at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:136)
    at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
    at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:198)
    at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:467)
    at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:541)
    at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
    at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
    at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:157)
    at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:115)
    at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:78)
    ... 87 common frames omitted
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
 
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
    at com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
    at com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
    at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91)
    at com.mysql.cj.NativeSession.connect(NativeSession.java:150)
    at com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:947)
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:817)
    ... 100 common frames omitted
Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
    at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:81)
    at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:476)
    at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:218)
    at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:200)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394)
    at java.net.Socket.connect(Socket.java:606)
    at com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:155)
    at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65)
    ... 103 common frames omitted
 
2023-08-17 14:57:09.205  INFO 16648 --- [XNIO-1 task-3] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/error
2023-08-17 14:59:33.685  INFO 16648 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'
2023-08-17 14:59:39.276  INFO 8636 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 8636 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-17 14:59:39.280  INFO 8636 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-17 14:59:39.331  INFO 8636 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-17 14:59:39.331  INFO 8636 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-17 14:59:41.058  INFO 8636 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$202e274e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-17 14:59:44.926  INFO 10712 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication on DESKTOP-7A2KHS1 with PID 10712 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-08-17 14:59:44.928  INFO 10712 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following profiles are active: dev
2023-08-17 14:59:44.970  INFO 10712 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-08-17 14:59:44.971  INFO 10712 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-08-17 14:59:46.364  INFO 10712 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$30c0183e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2023-08-17 14:59:46.732  WARN 10712 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-08-17 14:59:46.759  INFO 10712 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-08-17 14:59:46.760  INFO 10712 --- [restartedMain] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1788 ms
2023-08-17 14:59:48.332  INFO 10712 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-08-17 14:59:48.520  INFO 10712 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@63f0d7aa, org.springframework.security.web.context.SecurityContextPersistenceFilter@52e0b858, org.springframework.security.web.header.HeaderWriterFilter@7c779ca8, org.springframework.web.filter.CorsFilter@484b22b0, org.springframework.security.web.authentication.logout.LogoutFilter@2a1d28ee, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@5c0ad868, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@32d1966, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@74821145, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7cbd828f, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@44a2e95f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@a2008e, org.springframework.security.web.session.SessionManagementFilter@68538350, org.springframework.security.web.access.ExceptionTranslationFilter@286ca397, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@728db7a0]
2023-08-17 14:59:48.542  INFO 10712 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2023-08-17 14:59:48.935  INFO 10712 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2023-08-17 14:59:48.953  INFO 10712 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2023-08-17 14:59:48.989  INFO 10712 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2023-08-17 14:59:49.138  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingPOST_1
2023-08-17 14:59:49.175  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
2023-08-17 14:59:49.193  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1
2023-08-17 14:59:49.204  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_1
2023-08-17 14:59:49.207  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_1
2023-08-17 14:59:49.254  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_2
2023-08-17 14:59:49.280  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: answerSubmitUsingPOST_1
2023-08-17 14:59:49.281  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1
2023-08-17 14:59:49.284  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_3
2023-08-17 14:59:49.286  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_1
2023-08-17 14:59:49.288  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
2023-08-17 14:59:49.299  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2
2023-08-17 14:59:49.306  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_4
2023-08-17 14:59:49.307  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_2
2023-08-17 14:59:49.316  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_5
2023-08-17 14:59:49.318  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_3
2023-08-17 14:59:49.320  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3
2023-08-17 14:59:49.322  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_6
2023-08-17 14:59:49.324  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_4
2023-08-17 14:59:49.327  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4
2023-08-17 14:59:49.336  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_5
2023-08-17 14:59:49.342  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_6
2023-08-17 14:59:49.353  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_7
2023-08-17 14:59:49.355  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectSourceUsingPOST_1
2023-08-17 14:59:49.361  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_7
2023-08-17 14:59:49.370  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_8
2023-08-17 14:59:49.374  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_8
2023-08-17 14:59:49.377  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
2023-08-17 14:59:49.379  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5
2023-08-17 14:59:49.404  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_9
2023-08-17 14:59:49.405  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_9
2023-08-17 14:59:49.408  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
2023-08-17 14:59:49.412  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_6
2023-08-17 14:59:49.419  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_10
2023-08-17 14:59:49.422  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_10
2023-08-17 14:59:49.427  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingGET_1
2023-08-17 14:59:49.428  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingHEAD_1
2023-08-17 14:59:49.428  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPOST_1
2023-08-17 14:59:49.429  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPUT_1
2023-08-17 14:59:49.430  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingPATCH_1
2023-08-17 14:59:49.431  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingDELETE_1
2023-08-17 14:59:49.431  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingOPTIONS_1
2023-08-17 14:59:49.432  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: questionUploadAndReadExcelUsingTRACE_1
2023-08-17 14:59:49.451  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_2
2023-08-17 14:59:49.455  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
2023-08-17 14:59:49.460  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_1
2023-08-17 14:59:49.461  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_4
2023-08-17 14:59:49.464  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_7
2023-08-17 14:59:49.470  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importUserUsingPOST_1
2023-08-17 14:59:49.475  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageListUsingPOST_11
2023-08-17 14:59:49.476  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectUsingPOST_11
2023-08-17 14:59:49.479  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
2023-08-17 14:59:49.481  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentUsingPOST_2
2023-08-17 14:59:49.482  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingPOST_1
2023-08-17 14:59:49.486  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: messagePageListUsingPOST_1
2023-08-17 14:59:49.486  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: readUsingPOST_3
2023-08-17 14:59:49.490  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
2023-08-17 14:59:49.491  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unReadCountUsingPOST_1
2023-08-17 14:59:49.493  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
2023-08-17 14:59:49.496  INFO 10712 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
2023-08-17 14:59:49.600  INFO 10712 --- [restartedMain] org.xnio                                 : XNIO version 3.3.8.Final
2023-08-17 14:59:49.629  INFO 10712 --- [restartedMain] org.xnio.nio                             : XNIO NIO Implementation Version 3.3.8.Final
2023-08-17 14:59:49.731  INFO 10712 --- [restartedMain] o.s.b.w.e.u.UndertowServletWebServer     : Undertow started on port(s) 8000 (http) with context path ''
2023-08-17 14:59:49.736  INFO 10712 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Started XzsApplication in 5.418 seconds (JVM running for 6.571)
2023-08-17 14:59:54.298  INFO 10712 --- [XNIO-1 task-1] io.undertow.servlet                      : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-08-17 14:59:54.299  INFO 10712 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-08-17 14:59:54.310  INFO 10712 --- [XNIO-1 task-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 11 ms
2023-08-17 14:59:54.418  INFO 10712 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2023-08-17 15:00:00.034  INFO 10712 --- [XNIO-1 task-1] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2023-08-17 15:00:00.045 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-17 15:00:00.070 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-17 15:00:00.122 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-17 15:00:00.489 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where deleted=0 and user_name=? limit 1 
2023-08-17 15:00:00.489 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : ==> Parameters: admin(String)
2023-08-17 15:00:00.502 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.UserMapper.getUserByUserName   : <==      Total: 1
2023-08-17 15:00:00.522 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : ==>  Preparing: insert into t_user_event_log ( user_id, user_name, real_name, content, create_time ) values ( ?, ?, ?, ?, ? ) 
2023-08-17 15:00:00.525 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : ==> Parameters: 2(Integer), admin(String), 管理员(String), admin 登录了考试系统(String), 2023-08-17 15:00:00.502(Timestamp)
2023-08-17 15:00:00.561 DEBUG 10712 --- [XNIO-1 task-1] r.c.m.x.r.U.insertSelective              : <==    Updates: 1
2023-08-17 15:00:01.045  INFO 10712 --- [XNIO-1 task-2] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/dashboard/index
2023-08-17 15:00:01.068 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper where deleted=0 
2023-08-17 15:00:01.068 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-17 15:00:01.087 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-17 15:00:01.091 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.QuestionMapper.selectAllCount  : ==>  Preparing: SELECT count(*) from t_question where deleted=0 
2023-08-17 15:00:01.091 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.QuestionMapper.selectAllCount  : ==> Parameters: 
2023-08-17 15:00:01.106 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.QuestionMapper.selectAllCount  : <==      Total: 1
2023-08-17 15:00:01.110 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_answer 
2023-08-17 15:00:01.110 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-17 15:00:01.124 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-17 15:00:01.124 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : ==>  Preparing: SELECT count(*) from t_exam_paper_question_customer_answer 
2023-08-17 15:00:01.124 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : ==> Parameters: 
2023-08-17 15:00:01.139 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectAllCount               : <==      Total: 1
2023-08-17 15:00:01.144 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.U.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_user_event_log WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-17 15:00:01.144 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.U.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-17 15:00:01.171 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.U.selectCountByDate            : <==      Total: 5
2023-08-17 15:00:01.174 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectCountByDate            : ==>  Preparing: SELECT create_time as name,COUNT(create_time) as value from ( SELECT DATE_FORMAT(create_time,'%Y-%m-%d') as create_time from t_exam_paper_question_customer_answer WHERE create_time between ? and ? ) a GROUP BY create_time 
2023-08-17 15:00:01.174 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectCountByDate            : ==> Parameters: 2023-08-01 00:00:00.0(Timestamp), 2023-08-31 23:59:59.0(Timestamp)
2023-08-17 15:00:01.187 DEBUG 10712 --- [XNIO-1 task-2] r.c.m.x.r.E.selectCountByDate            : <==      Total: 3
2023-08-17 15:00:06.652  INFO 10712 --- [XNIO-1 task-3] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:00:06.665 DEBUG 10712 --- [XNIO-1 task-3] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:00:06.665 DEBUG 10712 --- [XNIO-1 task-3] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:00:06.681 DEBUG 10712 --- [XNIO-1 task-3] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:00:06.989  INFO 10712 --- [XNIO-1 task-4] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-17 15:00:07.028 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-17 15:00:07.028 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-17 15:00:07.046 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-17 15:00:07.052 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-17 15:00:07.052 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-17 15:00:07.066 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 8
2023-08-17 15:00:07.098 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.099 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:00:07.112 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:07.115 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.115 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-17 15:00:07.125 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:07.127 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.127 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-17 15:00:07.138 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:07.138 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.139 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-17 15:00:07.149 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:07.152 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.152 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-17 15:00:07.163 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:07.165 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.165 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-17 15:00:07.176 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:07.178 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.178 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-17 15:00:07.189 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:07.191 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:07.191 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-17 15:00:07.202 DEBUG 10712 --- [XNIO-1 task-4] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:32.976  INFO 10712 --- [XNIO-1 task-5] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:00:32.979  INFO 10712 --- [XNIO-1 task-7] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-08-17 15:00:32.983  INFO 10712 --- [XNIO-1 task-6] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/select/148
2023-08-17 15:00:32.986 DEBUG 10712 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:00:32.987 DEBUG 10712 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:00:32.998 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-17 15:00:32.998 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-17 15:00:32.999 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-17 15:00:32.999 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-17 15:00:32.999 DEBUG 10712 --- [XNIO-1 task-5] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:00:33.009 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.014 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:33.014 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 602(Integer)
2023-08-17 15:00:33.015 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-17 15:00:33.016 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:00:33.016 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-08-17 15:00:33.028 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.039 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-17 15:00:33.040 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-17 15:00:33.069 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-17 15:00:33.076 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:33.076 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-17 15:00:33.087 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-17 15:00:33.088 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:00:33.088 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-08-17 15:00:33.089 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.097 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:33.098 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-17 15:00:33.111 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.112 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:33.113 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:00:33.124 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.126 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:33.126 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-17 15:00:33.134 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-08-17 15:00:33.135 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:00:33.135 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-08-17 15:00:33.140 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.143 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:33.143 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-17 15:00:33.151 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-17 15:00:33.152 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:00:33.152 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 18(Integer)
2023-08-17 15:00:33.162 DEBUG 10712 --- [XNIO-1 task-7] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1
2023-08-17 15:00:33.162 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:33.165 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:33.165 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:00:33.189 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:33.197 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:33.197 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:00:33.210 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-17 15:00:33.211 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:33.212 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:00:33.225 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:33.227 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:00:33.227 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-17 15:00:33.238 DEBUG 10712 --- [XNIO-1 task-6] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:00:48.420  INFO 10712 --- [XNIO-1 task-8] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:00:48.430 DEBUG 10712 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:00:48.431 DEBUG 10712 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:00:48.440 DEBUG 10712 --- [XNIO-1 task-8] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:00:48.497  INFO 10712 --- [XNIO-1 task-9] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-08-17 15:00:48.501 DEBUG 10712 --- [XNIO-1 task-9] 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-08-17 15:00:48.501 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-08-17 15:00:48.514 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-08-17 15:00:48.517 DEBUG 10712 --- [XNIO-1 task-9] 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-08-17 15:00:48.518 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-08-17 15:00:48.529 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-08-17 15:00:48.533 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.533 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:00:48.543 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.546 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.547 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-17 15:00:48.556 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:00:48.558 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.559 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.568 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.569 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.569 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:00:48.578 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.580 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.580 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-17 15:00:48.589 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.590 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.591 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-08-17 15:00:48.601 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:00:48.602 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.602 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.612 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.613 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.613 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-17 15:00:48.622 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.623 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.623 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-08-17 15:00:48.633 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:00:48.634 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.634 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.644 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.646 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.646 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:00:48.655 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.656 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.656 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-17 15:00:48.668 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.669 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.670 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-08-17 15:00:48.679 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:00:48.681 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.681 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.692 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.692 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.692 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:00:48.703 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.704 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.704 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-17 15:00:48.713 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.714 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.714 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-08-17 15:00:48.724 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:00:48.724 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.726 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.735 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.737 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.737 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-08-17 15:00:48.746 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.748 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.748 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-08-17 15:00:48.758 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:00:48.760 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.760 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.769 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.770 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.770 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:00:48.781 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.782 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.782 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-08-17 15:00:48.792 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.794 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.794 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-08-17 15:00:48.810 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:00:48.810 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.811 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.821 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.821 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.822 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:00:48.832 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:48.833 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:00:48.833 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-08-17 15:00:48.843 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:00:48.844 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:00:48.844 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-08-17 15:00:48.853 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:00:48.854 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:00:48.854 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:00:48.863 DEBUG 10712 --- [XNIO-1 task-9] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:00:52.983  INFO 10712 --- [XNIO-1 task-10] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/list
2023-08-17 15:00:53.008 DEBUG 10712 --- [XNIO-1 task-10] 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-08-17 15:00:53.008 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 
2023-08-17 15:00:53.021 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-08-17 15:00:53.026 DEBUG 10712 --- [XNIO-1 task-10] 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-08-17 15:00:53.026 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer)
2023-08-17 15:00:53.035 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.E.list                         : <==      Total: 4
2023-08-17 15:00:53.036 DEBUG 10712 --- [XNIO-1 task-10] 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-08-17 15:00:53.036 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-08-17 15:00:53.051 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:00:53.052 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:00:53.052 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-08-17 15:00:53.062 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:00:53.063 DEBUG 10712 --- [XNIO-1 task-10] 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-08-17 15:00:53.063 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-08-17 15:00:53.073 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:00:53.073 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:00:53.074 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-08-17 15:00:53.083 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:00:53.084 DEBUG 10712 --- [XNIO-1 task-10] 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-08-17 15:00:53.084 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-08-17 15:00:53.094 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:00:53.095 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:00:53.095 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-08-17 15:00:53.108 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:00:53.108 DEBUG 10712 --- [XNIO-1 task-10] 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-08-17 15:00:53.109 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-08-17 15:00:53.118 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:00:53.118 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:00:53.119 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-08-17 15:00:53.128 DEBUG 10712 --- [XNIO-1 task-10] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:00:56.241  INFO 10712 --- [XNIO-1 task-11] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:00:56.250 DEBUG 10712 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:00:56.250 DEBUG 10712 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:00:56.263 DEBUG 10712 --- [XNIO-1 task-11] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:00:56.555  INFO 10712 --- [XNIO-1 task-12] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-17 15:00:56.557 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-17 15:00:56.557 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-17 15:00:56.575 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-17 15:00:56.578 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-17 15:00:56.578 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-17 15:00:56.591 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 8
2023-08-17 15:00:56.592 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.592 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:00:56.601 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:56.602 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.602 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-17 15:00:56.613 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:56.613 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.613 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-17 15:00:56.624 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:00:56.625 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.626 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-17 15:00:56.635 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:56.638 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.638 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-17 15:00:56.647 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:56.648 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.649 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-17 15:00:56.658 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:56.660 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.660 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-17 15:00:56.669 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:00:56.673 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:00:56.673 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-17 15:00:56.682 DEBUG 10712 --- [XNIO-1 task-12] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:01:18.033  INFO 10712 --- [XNIO-1 task-13] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-17 15:01:18.043 DEBUG 10712 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-17 15:01:18.043 DEBUG 10712 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-17 15:01:18.056 DEBUG 10712 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-17 15:01:18.057 DEBUG 10712 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-17 15:01:18.057 DEBUG 10712 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 10(Integer)
2023-08-17 15:01:18.067 DEBUG 10712 --- [XNIO-1 task-13] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-17 15:01:25.362  INFO 10712 --- [XNIO-1 task-14] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/get/16
2023-08-17 15:01:25.370 DEBUG 10712 --- [XNIO-1 task-14] r.c.m.x.r.DepartmentMapper.getById       : ==>  Preparing: select id , name,deleted from t_department where deleted=0 and id = ? 
2023-08-17 15:01:25.370 DEBUG 10712 --- [XNIO-1 task-14] r.c.m.x.r.DepartmentMapper.getById       : ==> Parameters: 16(Integer)
2023-08-17 15:01:25.381 DEBUG 10712 --- [XNIO-1 task-14] r.c.m.x.r.DepartmentMapper.getById       : <==      Total: 1
2023-08-17 15:01:31.846  INFO 10712 --- [XNIO-1 task-15] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/update
2023-08-17 15:01:31.858 DEBUG 10712 --- [XNIO-1 task-15] r.c.m.x.r.DepartmentMapper.update        : ==>  Preparing: update t_department SET name = ?, deleted = ? where id = ? 
2023-08-17 15:01:31.858 DEBUG 10712 --- [XNIO-1 task-15] r.c.m.x.r.DepartmentMapper.update        : ==> Parameters: 领导(String), 0(String), 16(Integer)
2023-08-17 15:01:31.891 DEBUG 10712 --- [XNIO-1 task-15] r.c.m.x.r.DepartmentMapper.update        : <==    Updates: 1
2023-08-17 15:01:32.463  INFO 10712 --- [XNIO-1 task-16] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-17 15:01:32.499 DEBUG 10712 --- [XNIO-1 task-16] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-17 15:01:32.499 DEBUG 10712 --- [XNIO-1 task-16] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-17 15:01:32.509 DEBUG 10712 --- [XNIO-1 task-16] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-17 15:01:32.510 DEBUG 10712 --- [XNIO-1 task-16] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-17 15:01:32.510 DEBUG 10712 --- [XNIO-1 task-16] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 10(Integer)
2023-08-17 15:01:32.520 DEBUG 10712 --- [XNIO-1 task-16] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-17 15:01:39.366  INFO 10712 --- [XNIO-1 task-17] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/get/17
2023-08-17 15:01:39.390 DEBUG 10712 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.getById       : ==>  Preparing: select id , name,deleted from t_department where deleted=0 and id = ? 
2023-08-17 15:01:39.390 DEBUG 10712 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.getById       : ==> Parameters: 17(Integer)
2023-08-17 15:01:39.400 DEBUG 10712 --- [XNIO-1 task-17] r.c.m.x.r.DepartmentMapper.getById       : <==      Total: 1
2023-08-17 15:02:06.972  INFO 10712 --- [XNIO-1 task-18] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/update
2023-08-17 15:02:06.982 DEBUG 10712 --- [XNIO-1 task-18] r.c.m.x.r.DepartmentMapper.update        : ==>  Preparing: update t_department SET name = ?, deleted = ? where id = ? 
2023-08-17 15:02:06.983 DEBUG 10712 --- [XNIO-1 task-18] r.c.m.x.r.DepartmentMapper.update        : ==> Parameters: 公关(String), 0(String), 17(Integer)
2023-08-17 15:02:07.011 DEBUG 10712 --- [XNIO-1 task-18] r.c.m.x.r.DepartmentMapper.update        : <==    Updates: 1
2023-08-17 15:02:07.914  INFO 10712 --- [XNIO-1 task-19] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-17 15:02:07.924 DEBUG 10712 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-17 15:02:07.924 DEBUG 10712 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-17 15:02:07.934 DEBUG 10712 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-17 15:02:07.935 DEBUG 10712 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-17 15:02:07.937 DEBUG 10712 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 10(Integer)
2023-08-17 15:02:07.946 DEBUG 10712 --- [XNIO-1 task-19] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-17 15:02:17.842  INFO 10712 --- [XNIO-1 task-20] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:02:17.853 DEBUG 10712 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:02:17.853 DEBUG 10712 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:02:17.864 DEBUG 10712 --- [XNIO-1 task-20] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:02:18.153  INFO 10712 --- [XNIO-1 task-21] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/page
2023-08-17 15:02:18.155 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==>  Preparing: SELECT count(0) FROM (SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id) table_count 
2023-08-17 15:02:18.156 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : ==> Parameters: 0(String)
2023-08-17 15:02:18.166 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.ExamPaperMapper.page_COUNT     : <==      Total: 1
2023-08-17 15:02:18.168 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : ==>  Preparing: SELECT e.* FROM t_exam_paper e LEFT JOIN t_exam_paper_department d ON e.id = d.exam_paper_id LEFT JOIN t_exam_paper_subject s ON e.id = s.exam_paper_id WHERE e.deleted = 0 AND e.type = ? GROUP BY e.id order by id desc LIMIT ? 
2023-08-17 15:02:18.168 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : ==> Parameters: 0(String), 10(Integer)
2023-08-17 15:02:18.180 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.repository.ExamPaperMapper.page  : <==      Total: 8
2023-08-17 15:02:18.181 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.181 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:02:18.189 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:02:18.190 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.190 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-17 15:02:18.200 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:02:18.200 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.200 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-17 15:02:18.210 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:02:18.211 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.211 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 93(Integer)
2023-08-17 15:02:18.221 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:02:18.222 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.222 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 92(Integer)
2023-08-17 15:02:18.232 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:02:18.233 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.233 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-17 15:02:18.242 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:02:18.242 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.242 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 84(Integer)
2023-08-17 15:02:18.253 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:02:18.253 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:18.254 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 83(Integer)
2023-08-17 15:02:18.263 DEBUG 10712 --- [XNIO-1 task-21] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:02:34.063  INFO 10712 --- [XNIO-1 task-22] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:02:34.064  INFO 10712 --- [XNIO-1 task-24] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/getDepartmentUser
2023-08-17 15:02:34.064  INFO 10712 --- [XNIO-1 task-23] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/paper/select/148
2023-08-17 15:02:34.072 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-17 15:02:34.072 DEBUG 10712 --- [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-08-17 15:02:34.072 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.selectByPrimaryKey           : ==>  Preparing: select id, name, subject_id, paper_type, grade_level, score, question_count, suggest_time, limit_start_time, limit_end_time, frame_text_content_id, create_user, create_time, deleted, task_exam_id, type from t_exam_paper where id = ? 
2023-08-17 15:02:34.072 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-17 15:02:34.072 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.selectByPrimaryKey           : ==> Parameters: 148(Integer)
2023-08-17 15:02:34.072 DEBUG 10712 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:02:34.082 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-17 15:02:34.082 DEBUG 10712 --- [XNIO-1 task-22] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:02:34.082 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.083 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:02:34.083 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:02:34.083 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 15(Integer)
2023-08-17 15:02:34.083 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 602(Integer)
2023-08-17 15:02:34.097 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.098 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.QuestionMapper.selectByIds     : ==>  Preparing: SELECT id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted FROM t_question where id in ( ? , ? , ? , ? , ? ) 
2023-08-17 15:02:34.098 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.QuestionMapper.selectByIds     : ==> Parameters: 430(Integer), 427(Integer), 431(Integer), 428(Integer), 429(Integer)
2023-08-17 15:02:34.112 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.QuestionMapper.selectByIds     : <==      Total: 5
2023-08-17 15:02:34.115 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:02:34.115 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-17 15:02:34.125 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-17 15:02:34.126 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:02:34.126 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 16(Integer)
2023-08-17 15:02:34.126 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.128 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:02:34.129 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-17 15:02:34.138 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.141 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:02:34.141 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:02:34.147 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1009
2023-08-17 15:02:34.147 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:02:34.147 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 17(Integer)
2023-08-17 15:02:34.151 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.153 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:02:34.153 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-17 15:02:34.158 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 2
2023-08-17 15:02:34.159 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==>  Preparing: select id,real_name from t_user where deleted=0 and user_level = ? 
2023-08-17 15:02:34.160 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : ==> Parameters: 18(Integer)
2023-08-17 15:02:34.162 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.163 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:02:34.163 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-17 15:02:34.170 DEBUG 10712 --- [XNIO-1 task-24] r.c.m.x.r.UserMapper.getUserByLevel      : <==      Total: 1
2023-08-17 15:02:34.171 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:02:34.173 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:34.173 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:02:34.182 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:02:34.182 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_department where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:34.183 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:02:34.192 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 0
2023-08-17 15:02:34.192 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_user where exam_paper_id = ? and deleted = 0 
2023-08-17 15:02:34.193 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:02:34.207 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:02:34.207 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:02:34.208 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1028(Integer)
2023-08-17 15:02:34.217 DEBUG 10712 --- [XNIO-1 task-23] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:14.921  INFO 10712 --- [XNIO-1 task-25] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:03:14.929 DEBUG 10712 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:03:14.929 DEBUG 10712 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:03:14.938 DEBUG 10712 --- [XNIO-1 task-25] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:03:15.253  INFO 10712 --- [XNIO-1 task-26] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-08-17 15:03:15.259 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates 
2023-08-17 15:03:15.259 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-08-17 15:03:15.268 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-08-17 15:03:15.269 DEBUG 10712 --- [XNIO-1 task-26] 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-08-17 15:03:15.269 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-08-17 15:03:15.278 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-08-17 15:03:15.279 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.279 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 28(Integer)
2023-08-17 15:03:15.290 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-08-17 15:03:15.292 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.292 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 27(Integer)
2023-08-17 15:03:15.300 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-08-17 15:03:15.300 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.302 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 26(Integer)
2023-08-17 15:03:15.310 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:15.310 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.312 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 25(Integer)
2023-08-17 15:03:15.320 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:15.320 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.320 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 23(Integer)
2023-08-17 15:03:15.329 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:15.329 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.330 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 22(Integer)
2023-08-17 15:03:15.338 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-08-17 15:03:15.338 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.338 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 18(Integer)
2023-08-17 15:03:15.348 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:15.348 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.348 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 17(Integer)
2023-08-17 15:03:15.360 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:15.360 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.361 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 16(Integer)
2023-08-17 15:03:15.369 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:15.370 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:15.370 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 15(Integer)
2023-08-17 15:03:15.379 DEBUG 10712 --- [XNIO-1 task-26] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:29.604  INFO 10712 --- [XNIO-1 task-27] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/list
2023-08-17 15:03:29.614 DEBUG 10712 --- [XNIO-1 task-27] 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-08-17 15:03:29.614 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 
2023-08-17 15:03:29.627 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-08-17 15:03:29.628 DEBUG 10712 --- [XNIO-1 task-27] 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-08-17 15:03:29.628 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer)
2023-08-17 15:03:29.639 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.E.list                         : <==      Total: 4
2023-08-17 15:03:29.639 DEBUG 10712 --- [XNIO-1 task-27] 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-08-17 15:03:29.639 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-08-17 15:03:29.651 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:29.652 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:29.652 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-08-17 15:03:29.665 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:29.665 DEBUG 10712 --- [XNIO-1 task-27] 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-08-17 15:03:29.666 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-08-17 15:03:29.677 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:29.678 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:29.678 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-08-17 15:03:29.690 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:29.691 DEBUG 10712 --- [XNIO-1 task-27] 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-08-17 15:03:29.691 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-08-17 15:03:29.701 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:29.701 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:29.703 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-08-17 15:03:29.713 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:29.713 DEBUG 10712 --- [XNIO-1 task-27] 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-08-17 15:03:29.714 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-08-17 15:03:29.723 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:29.723 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:29.723 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-08-17 15:03:29.734 DEBUG 10712 --- [XNIO-1 task-27] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:33.179  INFO 10712 --- [XNIO-1 task-28] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:03:33.188 DEBUG 10712 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:03:33.188 DEBUG 10712 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:03:33.201 DEBUG 10712 --- [XNIO-1 task-28] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:03:33.452  INFO 10712 --- [XNIO-1 task-29] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/templates/list
2023-08-17 15:03:33.453 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.gets_COUNT                   : ==>  Preparing: SELECT count(0) FROM t_exam_templates 
2023-08-17 15:03:33.453 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.gets_COUNT                   : ==> Parameters: 
2023-08-17 15:03:33.463 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.gets_COUNT                   : <==      Total: 1
2023-08-17 15:03:33.464 DEBUG 10712 --- [XNIO-1 task-29] 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-08-17 15:03:33.464 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.ExamTemplatesMapper.gets       : ==> Parameters: 10(Integer)
2023-08-17 15:03:33.474 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.ExamTemplatesMapper.gets       : <==      Total: 10
2023-08-17 15:03:33.474 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.474 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 28(Integer)
2023-08-17 15:03:33.486 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-08-17 15:03:33.487 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.487 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 27(Integer)
2023-08-17 15:03:33.497 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-08-17 15:03:33.497 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.497 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 26(Integer)
2023-08-17 15:03:33.507 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:33.508 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.508 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 25(Integer)
2023-08-17 15:03:33.518 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:33.519 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.519 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 23(Integer)
2023-08-17 15:03:33.528 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:33.528 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.529 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 22(Integer)
2023-08-17 15:03:33.539 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 1
2023-08-17 15:03:33.539 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.539 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 18(Integer)
2023-08-17 15:03:33.549 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:33.550 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.550 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 17(Integer)
2023-08-17 15:03:33.560 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:33.560 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.561 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 16(Integer)
2023-08-17 15:03:33.569 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:33.571 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==>  Preparing: select id, subject_id, templates_id from t_exam_templates_subject where templates_id = ? 
2023-08-17 15:03:33.571 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : ==> Parameters: 15(Integer)
2023-08-17 15:03:33.580 DEBUG 10712 --- [XNIO-1 task-29] r.c.m.x.r.E.getTemplatesId               : <==      Total: 2
2023-08-17 15:03:35.284  INFO 10712 --- [XNIO-1 task-30] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:03:35.285  INFO 10712 --- [XNIO-1 task-31] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-08-17 15:03:35.294 DEBUG 10712 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:03:35.294 DEBUG 10712 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:03:35.297 DEBUG 10712 --- [XNIO-1 task-31] 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-08-17 15:03:35.297 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-08-17 15:03:35.305 DEBUG 10712 --- [XNIO-1 task-30] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:03:35.311 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-08-17 15:03:35.312 DEBUG 10712 --- [XNIO-1 task-31] 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-08-17 15:03:35.312 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-08-17 15:03:35.324 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-08-17 15:03:35.325 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.325 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:03:35.338 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.339 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.339 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-17 15:03:35.350 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:03:35.351 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.351 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.362 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.362 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.362 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:03:35.372 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.373 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.373 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-17 15:03:35.384 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.385 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.385 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-08-17 15:03:35.397 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:03:35.397 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.397 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.408 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.408 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.409 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-17 15:03:35.419 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.419 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.420 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-08-17 15:03:35.430 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:03:35.431 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.431 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.441 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.442 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.442 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:03:35.452 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.452 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.453 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-17 15:03:35.462 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.463 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.464 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-08-17 15:03:35.474 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:03:35.475 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.475 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.486 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.487 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.487 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:03:35.496 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.498 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.498 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-17 15:03:35.509 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.510 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.510 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-08-17 15:03:35.520 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:03:35.521 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.521 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.532 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.533 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.533 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-08-17 15:03:35.543 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.544 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.544 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-08-17 15:03:35.555 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:03:35.555 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.555 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.566 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.566 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.566 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:03:35.577 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.578 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.578 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-08-17 15:03:35.589 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.589 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.590 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-08-17 15:03:35.600 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:03:35.601 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.601 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.611 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.612 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.612 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:03:35.622 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:35.625 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:03:35.625 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-08-17 15:03:35.635 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:03:35.635 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:03:35.636 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-08-17 15:03:35.646 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:03:35.647 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:03:35.647 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:03:35.658 DEBUG 10712 --- [XNIO-1 task-31] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:03:57.945  INFO 10712 --- [XNIO-1 task-32] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/exam/count/list
2023-08-17 15:03:57.955 DEBUG 10712 --- [XNIO-1 task-32] 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-08-17 15:03:57.955 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.E.list_COUNT                   : ==> Parameters: 
2023-08-17 15:03:57.967 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.E.list_COUNT                   : <==      Total: 1
2023-08-17 15:03:57.968 DEBUG 10712 --- [XNIO-1 task-32] 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-08-17 15:03:57.968 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.E.list                         : ==> Parameters: 10(Integer)
2023-08-17 15:03:57.978 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.E.list                         : <==      Total: 4
2023-08-17 15:03:57.978 DEBUG 10712 --- [XNIO-1 task-32] 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-08-17 15:03:57.978 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-08-17 15:03:57.989 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:57.989 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:57.989 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-08-17 15:03:57.999 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:58.001 DEBUG 10712 --- [XNIO-1 task-32] 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-08-17 15:03:58.001 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 28(Integer)
2023-08-17 15:03:58.010 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:58.010 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:58.010 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-08-17 15:03:58.020 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:58.020 DEBUG 10712 --- [XNIO-1 task-32] 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-08-17 15:03:58.021 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-08-17 15:03:58.031 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:58.031 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:58.031 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 10(Integer)
2023-08-17 15:03:58.041 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:58.041 DEBUG 10712 --- [XNIO-1 task-32] 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-08-17 15:03:58.041 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : ==> Parameters: 27(Integer)
2023-08-17 15:03:58.052 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.ExamTemplatesMapper.getById    : <==      Total: 1
2023-08-17 15:03:58.052 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==>  Preparing: select id, user_uuid, user_name, password, real_name, age, sex, birth_day, user_level, phone, role, status, image_path, create_time, modify_time, last_active_time, deleted, wx_open_id from t_user where id=? 
2023-08-17 15:03:58.052 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : ==> Parameters: 1027(Integer)
2023-08-17 15:03:58.063 DEBUG 10712 --- [XNIO-1 task-32] r.c.m.x.r.UserMapper.getUserById         : <==      Total: 1
2023-08-17 15:03:59.796  INFO 10712 --- [XNIO-1 task-33] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:03:59.805 DEBUG 10712 --- [XNIO-1 task-33] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:03:59.805 DEBUG 10712 --- [XNIO-1 task-33] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:03:59.814 DEBUG 10712 --- [XNIO-1 task-33] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:04:00.110  INFO 10712 --- [XNIO-1 task-34] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-08-17 15:04:00.112 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : ==>  Preparing: SELECT count(0) FROM (SELECT q.* FROM t_question q LEFT JOIN t_question_subject qs ON q.id = qs.question_id WHERE q.deleted = 0 AND qs.deleted = 0 GROUP BY q.id) table_count 
2023-08-17 15:04:00.112 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-08-17 15:04:00.122 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-08-17 15:04:00.124 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : ==>  Preparing: SELECT q.* FROM t_question q LEFT JOIN t_question_subject qs ON q.id = qs.question_id WHERE q.deleted = 0 AND qs.deleted = 0 GROUP BY q.id order by id desc LIMIT ? 
2023-08-17 15:04:00.124 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-08-17 15:04:00.134 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-08-17 15:04:00.136 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.136 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:04:00.145 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.146 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.146 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-17 15:04:00.158 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:00.158 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.158 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.168 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.169 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.169 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:00.178 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.178 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.180 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-17 15:04:00.188 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.188 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.190 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-08-17 15:04:00.199 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:04:00.200 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.200 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.210 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.210 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.210 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-17 15:04:00.220 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.220 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.220 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-08-17 15:04:00.231 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:00.232 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.232 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.241 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.242 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.242 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:00.252 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.253 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.253 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-17 15:04:00.263 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.263 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.263 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-08-17 15:04:00.274 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:00.275 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.275 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.285 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.285 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.286 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:00.296 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.296 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.297 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-17 15:04:00.307 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.307 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.307 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-08-17 15:04:00.317 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:04:00.319 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.319 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.332 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.332 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.332 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-08-17 15:04:00.342 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.342 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.342 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-08-17 15:04:00.354 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:00.354 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.354 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.364 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.365 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.365 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:00.375 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.375 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.375 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-08-17 15:04:00.385 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.385 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.385 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-08-17 15:04:00.396 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:00.397 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.397 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.408 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.408 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.408 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:00.419 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:00.419 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:00.420 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-08-17 15:04:00.429 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:00.430 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:00.430 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-08-17 15:04:00.440 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:04:00.440 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:00.440 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:00.451 DEBUG 10712 --- [XNIO-1 task-34] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:02.732  INFO 10712 --- [XNIO-1 task-35] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:04:02.733  INFO 10712 --- [XNIO-1 task-36] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/select/431
2023-08-17 15:04:02.741 DEBUG 10712 --- [XNIO-1 task-35] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:04:02.741 DEBUG 10712 --- [XNIO-1 task-35] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:04:02.743 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : ==>  Preparing: select id, question_type, subject_id, score, grade_level, difficult, correct, info_text_content_id, create_user, status, create_time, deleted from t_question where id = ? 
2023-08-17 15:04:02.744 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : ==> Parameters: 431(Integer)
2023-08-17 15:04:02.751 DEBUG 10712 --- [XNIO-1 task-35] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:04:02.754 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.Q.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:02.754 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:02.756 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-17 15:04:02.765 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:02.766 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:02.766 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:02.777 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:02.778 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:02.778 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:02.789 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:02.789 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:02.790 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:04:02.800 DEBUG 10712 --- [XNIO-1 task-36] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:03.049  INFO 10712 --- [XNIO-1 task-37] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/page/list
2023-08-17 15:04:03.050 DEBUG 10712 --- [XNIO-1 task-37] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==>  Preparing: SELECT count(0) FROM t_department WHERE deleted = 0 
2023-08-17 15:04:03.050 DEBUG 10712 --- [XNIO-1 task-37] r.c.m.x.r.DepartmentMapper.page_COUNT    : ==> Parameters: 
2023-08-17 15:04:03.061 DEBUG 10712 --- [XNIO-1 task-37] r.c.m.x.r.DepartmentMapper.page_COUNT    : <==      Total: 1
2023-08-17 15:04:03.225 DEBUG 10712 --- [XNIO-1 task-37] r.c.m.x.r.DepartmentMapper.page          : ==>  Preparing: SELECT id, name, deleted FROM t_department WHERE deleted = 0 order by id desc LIMIT ? 
2023-08-17 15:04:03.225 DEBUG 10712 --- [XNIO-1 task-37] r.c.m.x.r.DepartmentMapper.page          : ==> Parameters: 100(Integer)
2023-08-17 15:04:03.235 DEBUG 10712 --- [XNIO-1 task-37] r.c.m.x.r.DepartmentMapper.page          : <==      Total: 4
2023-08-17 15:04:07.369  INFO 10712 --- [XNIO-1 task-38] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/upload/configAndUpload
2023-08-17 15:04:19.840  INFO 10712 --- [XNIO-1 task-40] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:04:19.841  INFO 10712 --- [XNIO-1 task-39] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/question/page
2023-08-17 15:04:19.850 DEBUG 10712 --- [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-08-17 15:04:19.850 DEBUG 10712 --- [XNIO-1 task-40] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:04:19.852 DEBUG 10712 --- [XNIO-1 task-39] 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-08-17 15:04:19.852 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.QuestionMapper.page_COUNT      : ==> Parameters: 
2023-08-17 15:04:19.859 DEBUG 10712 --- [XNIO-1 task-40] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:04:19.862 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.QuestionMapper.page_COUNT      : <==      Total: 1
2023-08-17 15:04:19.863 DEBUG 10712 --- [XNIO-1 task-39] 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-08-17 15:04:19.875 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.repository.QuestionMapper.page   : ==> Parameters: 10(Integer)
2023-08-17 15:04:19.885 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.repository.QuestionMapper.page   : <==      Total: 8
2023-08-17 15:04:19.886 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:19.886 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 537(Integer)
2023-08-17 15:04:19.896 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:19.897 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:19.897 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 431(Integer)
2023-08-17 15:04:19.907 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:19.907 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:19.907 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:19.918 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:19.919 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:19.919 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:19.929 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:19.929 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:19.929 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 536(Integer)
2023-08-17 15:04:19.940 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:19.941 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:19.941 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 430(Integer)
2023-08-17 15:04:19.951 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:04:19.951 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:19.953 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:19.963 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:19.964 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:19.964 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 535(Integer)
2023-08-17 15:04:19.974 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:19.974 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:19.974 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 429(Integer)
2023-08-17 15:04:19.985 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:19.986 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:19.986 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:19.997 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:19.997 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:19.997 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:20.008 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.008 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:20.008 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 534(Integer)
2023-08-17 15:04:20.019 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:20.020 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:20.020 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 428(Integer)
2023-08-17 15:04:20.030 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:20.031 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.031 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:20.041 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.041 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.041 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:20.052 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.052 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:20.053 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 533(Integer)
2023-08-17 15:04:20.063 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:20.063 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:20.063 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 427(Integer)
2023-08-17 15:04:20.073 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:04:20.074 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.074 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:20.085 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.086 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:20.086 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 530(Integer)
2023-08-17 15:04:20.096 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:20.096 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:20.096 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 426(Integer)
2023-08-17 15:04:20.107 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:20.108 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.108 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:20.118 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.119 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.119 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:20.130 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.130 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:20.130 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 529(Integer)
2023-08-17 15:04:20.140 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:20.140 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:20.141 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 425(Integer)
2023-08-17 15:04:20.152 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 2
2023-08-17 15:04:20.152 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.152 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:20.163 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.163 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.163 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 21(Integer)
2023-08-17 15:04:20.175 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:20.176 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==>  Preparing: select id, content, create_time from t_text_content where id = ? 
2023-08-17 15:04:20.176 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : ==> Parameters: 528(Integer)
2023-08-17 15:04:20.187 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.T.selectByPrimaryKey           : <==      Total: 1
2023-08-17 15:04:20.187 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==>  Preparing: select qs.*,s.name as subName from t_question_subject qs left join t_subject s on qs.subject_id = s.id where question_id = ? and qs.deleted = 0 and s.deleted = 0 
2023-08-17 15:04:20.187 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : ==> Parameters: 424(Integer)
2023-08-17 15:04:20.197 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.x.r.Q.getQuestion                  : <==      Total: 1
2023-08-17 15:04:20.198 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==>  Preparing: SELECT id, name, level, level_name, item_order, deleted FROM t_subject WHERE deleted=0 and id= ? 
2023-08-17 15:04:20.198 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : ==> Parameters: 20(Integer)
2023-08-17 15:04:20.208 DEBUG 10712 --- [XNIO-1 task-39] r.c.m.xzs.repository.SubjectMapper.page  : <==      Total: 1
2023-08-17 15:04:25.645  INFO 10712 --- [XNIO-1 task-41] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/education/subject/list
2023-08-17 15:04:25.648  INFO 10712 --- [XNIO-1 task-42] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/examPaperAnswer/page
2023-08-17 15:04:25.656 DEBUG 10712 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where deleted = 0 
2023-08-17 15:04:25.656 DEBUG 10712 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : ==> Parameters: 
2023-08-17 15:04:25.663 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.adminPage_COUNT              : ==>  Preparing: SELECT count(0) FROM t_exam_paper_answer 
2023-08-17 15:04:25.663 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.adminPage_COUNT              : ==> Parameters: 
2023-08-17 15:04:25.665 DEBUG 10712 --- [XNIO-1 task-41] r.c.m.x.r.SubjectMapper.allSubject       : <==      Total: 2
2023-08-17 15:04:25.676 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.adminPage_COUNT              : <==      Total: 1
2023-08-17 15:04:25.679 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.679 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.adminPage                    : ==> Parameters: 10(Integer)
2023-08-17 15:04:25.689 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.adminPage                    : <==      Total: 10
2023-08-17 15:04:25.692 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.692 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-08-17 15:04:25.704 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.705 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.705 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6188(Integer)
2023-08-17 15:04:25.717 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.717 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.717 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 110(Integer)
2023-08-17 15:04:25.731 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:25.732 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:25.732 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:25.744 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:25.745 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.746 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1028(Integer)
2023-08-17 15:04:25.759 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.759 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.760 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6193(Integer)
2023-08-17 15:04:25.771 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.771 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.771 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 146(Integer)
2023-08-17 15:04:25.782 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:04:25.782 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? , ? ) and deleted = 0 
2023-08-17 15:04:25.783 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-17 15:04:25.793 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-08-17 15:04:25.794 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.794 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1028(Integer)
2023-08-17 15:04:25.804 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.804 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.804 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6194(Integer)
2023-08-17 15:04:25.815 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.815 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.816 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 147(Integer)
2023-08-17 15:04:25.826 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:04:25.827 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? , ? ) and deleted = 0 
2023-08-17 15:04:25.827 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-17 15:04:25.837 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-08-17 15:04:25.838 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.838 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1028(Integer)
2023-08-17 15:04:25.848 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.848 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.848 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6195(Integer)
2023-08-17 15:04:25.861 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.861 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.861 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 148(Integer)
2023-08-17 15:04:25.871 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 2
2023-08-17 15:04:25.871 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? , ? ) and deleted = 0 
2023-08-17 15:04:25.872 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer), 21(Integer)
2023-08-17 15:04:25.882 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 2
2023-08-17 15:04:25.883 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.883 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-08-17 15:04:25.893 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.894 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.894 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6196(Integer)
2023-08-17 15:04:25.904 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.904 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.904 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 150(Integer)
2023-08-17 15:04:25.914 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:25.915 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:25.915 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:25.925 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:25.926 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.926 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-08-17 15:04:25.937 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.937 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.937 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6191(Integer)
2023-08-17 15:04:25.949 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.950 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.950 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 144(Integer)
2023-08-17 15:04:25.962 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:25.962 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:25.962 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:25.973 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:25.973 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:25.973 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-08-17 15:04:25.983 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:25.984 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:25.984 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6197(Integer)
2023-08-17 15:04:25.995 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:25.995 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:25.995 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 151(Integer)
2023-08-17 15:04:26.005 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:26.006 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:26.006 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:26.016 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:26.017 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:26.017 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-08-17 15:04:26.028 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:26.029 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:26.029 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6198(Integer)
2023-08-17 15:04:26.039 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:26.039 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:26.040 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 152(Integer)
2023-08-17 15:04:26.050 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:26.050 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:26.050 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:26.060 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:26.062 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:26.062 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 10(Integer)
2023-08-17 15:04:26.072 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:26.072 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:26.072 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6185(Integer)
2023-08-17 15:04:26.084 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:26.084 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:26.084 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 85(Integer)
2023-08-17 15:04:26.095 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:26.096 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:26.096 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:26.106 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:26.107 DEBUG 10712 --- [XNIO-1 task-42] 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-08-17 15:04:26.107 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : ==> Parameters: 1027(Integer)
2023-08-17 15:04:26.118 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.UserMapper.selectByIdName      : <==      Total: 1
2023-08-17 15:04:26.119 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==>  Preparing: SELECT id, exam_paper_id, paper_name, paper_type, subject_id, system_score, user_score, paper_score, question_correct, question_count, do_time, status, create_user, create_time, task_exam_id FROM t_exam_paper_answer where id = ? 
2023-08-17 15:04:26.119 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : ==> Parameters: 6190(Integer)
2023-08-17 15:04:26.129 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.ExamPaperAnswerMapper.getById  : <==      Total: 1
2023-08-17 15:04:26.129 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==>  Preparing: select * from t_exam_paper_subject where exam_paper_id = ? and deleted = 0 
2023-08-17 15:04:26.129 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : ==> Parameters: 143(Integer)
2023-08-17 15:04:26.140 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.E.getByExamPaperId             : <==      Total: 1
2023-08-17 15:04:26.140 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==>  Preparing: select id, name, level, level_name, item_order, deleted from t_subject where id in ( ? ) and deleted = 0 
2023-08-17 15:04:26.141 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : ==> Parameters: 20(Integer)
2023-08-17 15:04:26.151 DEBUG 10712 --- [XNIO-1 task-42] r.c.m.x.r.SubjectMapper.selectByIds      : <==      Total: 1
2023-08-17 15:04:44.272  INFO 10712 --- [XNIO-1 task-43] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/examPaperAnswer/paperStatistics
2023-08-17 15:04:44.369 DEBUG 10712 --- [XNIO-1 task-43] 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-08-17 15:04:44.369 DEBUG 10712 --- [XNIO-1 task-43] r.c.m.x.r.E.selectByPaperName            : ==> Parameters: 
2023-08-17 15:04:44.380 DEBUG 10712 --- [XNIO-1 task-43] r.c.m.x.r.E.selectByPaperName            : <==      Total: 20
2023-08-17 15:06:33.883  INFO 10712 --- [XNIO-1 task-47] c.mindskip.xzs.aop.InterfaceLogHandler   : 访问接口:/api/admin/department/list
2023-08-17 15:06:33.894 DEBUG 10712 --- [XNIO-1 task-47] r.c.m.x.r.DepartmentMapper.gets          : ==>  Preparing: select id , name,deleted from t_department where deleted=0 
2023-08-17 15:06:33.894 DEBUG 10712 --- [XNIO-1 task-47] r.c.m.x.r.DepartmentMapper.gets          : ==> Parameters: 
2023-08-17 15:06:33.908 DEBUG 10712 --- [XNIO-1 task-47] r.c.m.x.r.DepartmentMapper.gets          : <==      Total: 4
2023-08-17 15:06:48.601  INFO 10712 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2023-08-17 15:06:48.616  INFO 10712 --- [Thread-19] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2023-08-17 15:06:48.620  INFO 10712 --- [Thread-19] io.undertow.servlet                      : Destroying Spring FrameworkServlet 'dispatcherServlet'