mitao
2025-03-19 0ab9dfd8f122195e4e9f09bd50c59e0a47450bec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
/*
 Navicat Premium Data Transfer
 
 Source Server         : localhost_3306
 Source Server Type    : MySQL
 Source Server Version : 80019
 Source Host           : localhost:3306
 Source Schema         : xizang
 
 Target Server Type    : MySQL
 Target Server Version : 80019
 File Encoding         : 65001
 
 Date: 21/01/2025 17:37:24
*/
 
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
 
-- ----------------------------
-- Table structure for gen_table
-- ----------------------------
DROP TABLE IF EXISTS `gen_table`;
CREATE TABLE `gen_table`  (
  `table_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '编号',
  `table_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '表名称',
  `table_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '表描述',
  `sub_table_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '关联子表的表名',
  `sub_table_fk_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '子表关联的外键名',
  `class_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '实体类名称',
  `tpl_category` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
  `package_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成包路径',
  `module_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成模块名',
  `business_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成业务名',
  `function_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成功能名',
  `function_author` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '生成功能作者',
  `gen_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
  `gen_path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
  `options` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '其它生成选项',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  PRIMARY KEY (`table_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '代码生成业务表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of gen_table
-- ----------------------------
INSERT INTO `gen_table` VALUES (1, 't_train_type', '培训类别表', NULL, NULL, 'TTrainType', 'crud', 'com.ruoyi.system', 'system', 'type', '培训类别', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-03 14:23:20', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (2, 't_message', '消息中心表', NULL, NULL, 'TMessage', 'crud', 'com.ruoyi.system', 'system', 'message', '消息中心', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (3, 't_operations', '现场作业表', NULL, NULL, 'TOperations', 'crud', 'com.ruoyi.system', 'system', 'operations', '现场作业', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (4, 't_operations_to_user', '现场作业-作业人员,含打卡信息', NULL, NULL, 'TOperationsToUser', 'crud', 'com.ruoyi.system', 'system', 'user', '现场作业-作业人员,含打卡信息', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (5, 't_qrcode', '二维码表', NULL, NULL, 'TQrcode', 'crud', 'com.ruoyi.system', 'system', 'qrcode', '二维码', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (6, 't_train', '培训表', NULL, NULL, 'TTrain', 'crud', 'com.ruoyi.system', 'system', 'train', '培训', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (7, 't_train_file', '培训文件表', NULL, NULL, 'TTrainFile', 'crud', 'com.ruoyi.system', 'system', 'file', '培训文件', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (8, 't_train_to_user', '培训-用户中间表', NULL, NULL, 'TTrainToUser', 'crud', 'com.ruoyi.system', 'system', 'user', '培训-用户中间', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (9, 't_user_watch_record', '学习记录表', NULL, NULL, 'TUserWatchRecord', 'crud', 'com.ruoyi.system', 'system', 'record', '学习记录', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (10, 't_work_people_update_record', '作业人员修改记录', NULL, NULL, 'TWorkPeopleUpdateRecord', 'crud', 'com.ruoyi.system', 'system', 'record', '作业人员修改记录', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:08', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (11, 't_agreement_config', '协议设置', NULL, NULL, 'TAgreementConfig', 'crud', 'com.ruoyi.system', 'system', 'config', '协议设置', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:18', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (12, 't_clock_in_config', '代打卡配置项', NULL, NULL, 'TClockInConfig', 'crud', 'com.ruoyi.system', 'system', 'config', '代打卡配置项', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:18', '', NULL, NULL);
INSERT INTO `gen_table` VALUES (13, 't_problem', '问题反馈表', NULL, NULL, 'TProblem', 'crud', 'com.ruoyi.system', 'system', 'problem', '问题反馈', 'ruoyi', '0', '/', NULL, 'admin', '2023-10-04 14:33:18', '', NULL, NULL);
 
-- ----------------------------
-- Table structure for gen_table_column
-- ----------------------------
DROP TABLE IF EXISTS `gen_table_column`;
CREATE TABLE `gen_table_column`  (
  `column_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '编号',
  `table_id` bigint(0) NULL DEFAULT NULL COMMENT '归属表编号',
  `column_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '列名称',
  `column_comment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '列描述',
  `column_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '列类型',
  `java_type` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'JAVA类型',
  `java_field` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'JAVA字段名',
  `is_pk` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否主键(1是)',
  `is_increment` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否自增(1是)',
  `is_required` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否必填(1是)',
  `is_insert` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否为插入字段(1是)',
  `is_edit` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否编辑字段(1是)',
  `is_list` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否列表字段(1是)',
  `is_query` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '是否查询字段(1是)',
  `query_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
  `html_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
  `dict_type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
  `sort` int(0) NULL DEFAULT NULL COMMENT '排序',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  PRIMARY KEY (`column_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 123 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '代码生成业务表字段' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of gen_table_column
-- ----------------------------
INSERT INTO `gen_table_column` VALUES (1, 1, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (2, 1, 'content', '类别', 'varchar(255)', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 2, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (3, 1, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 3, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (4, 1, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (5, 1, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (6, 1, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (7, 1, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-03 14:23:20', '', NULL);
INSERT INTO `gen_table_column` VALUES (8, 2, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (9, 2, 'userId', '用户id', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (10, 2, 'msgTitle', '消息标题', 'varchar(255)', 'String', 'msgTitle', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (11, 2, 'msgContent', '消息内容', 'varchar(255)', 'String', 'msgContent', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (12, 2, 'ifRead', '是否已读 1=是 0=否', 'tinyint(1)', 'Integer', 'ifRead', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (13, 2, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (14, 2, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (15, 2, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (16, 2, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (17, 2, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (18, 3, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (19, 3, 'engineeringName', '工程名称', 'varchar(255)', 'String', 'engineeringName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (20, 3, 'startTime', '开始时间', 'datetime', 'Date', 'startTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (21, 3, 'endTime', '结束时间', 'datetime', 'Date', 'endTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (22, 3, 'workAddress', '作业地点', 'varchar(255)', 'String', 'workAddress', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (23, 3, 'subcontractingUnit', '分包单位', 'varchar(255)', 'String', 'subcontractingUnit', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (24, 3, 'typeId', '计划类型id', 'bigint', 'Long', 'typeId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (25, 3, 'sceneName', '现场名称', 'varchar(255)', 'String', 'sceneName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (26, 3, 'content', '作业内容', 'varchar(512)', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 9, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (27, 3, 'voltageLevel', '电压等级 10kV以下、10kV、35kV、110kV、220kV、其他', 'varchar(255)', 'String', 'voltageLevel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (28, 3, 'workPeopleNum', '作业人数', 'int', 'Long', 'workPeopleNum', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (29, 3, 'riskLevel', '风险等级 1级,2级,3级,4级,5级', 'varchar(255)', 'String', 'riskLevel', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (30, 3, 'projectType', '项目类型 1=业扩 、2=基建、3=大修技改、4=维修维护 、5=其他', 'int', 'Long', 'projectType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 13, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (31, 3, 'projectDepartment', '总包项目部', 'varchar(255)', 'String', 'projectDepartment', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 14, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (32, 3, 'projectManager', '总包项目经理(id)', 'bigint', 'Long', 'projectManager', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 15, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (33, 3, 'safetyOfficer', '安全员(id)', 'bigint', 'Long', 'safetyOfficer', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 16, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (34, 3, 'workHeader', '工作负责人', 'bigint', 'Long', 'workHeader', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 17, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (35, 3, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 18, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (36, 3, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 19, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (37, 3, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 20, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (38, 3, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 21, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (39, 3, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 22, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (40, 3, 'workState', '作业状态 1=未完成 2=暂停项目 3=恢复项目 4=终止项目 5=已完成 6=已取消', 'int', 'Long', 'workState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 23, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (41, 3, 'suspendReason', '暂停原因', 'varchar(255)', 'String', 'suspendReason', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 24, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (42, 3, 'changeDescription', '变更描述', 'varchar(255)', 'String', 'changeDescription', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 25, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (43, 3, 'auditState', '审核状态 0=未审核 1=审核通过 2=驳回', 'int', 'Long', 'auditState', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 26, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (44, 4, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (45, 4, 'operationsId', '作业id', 'bigint', 'Long', 'operationsId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (46, 4, 'userId', '人员id', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (47, 4, 'addType', '1=新增 2=借用', 'int', 'Long', 'addType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (48, 4, 'peopleType', '人员类型 1=工作负责人 2=作业人员', 'int', 'Long', 'peopleType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (49, 4, 'ifClockIn', '是否已打卡 1=是 0=否', 'tinyint(1)', 'Integer', 'ifClockIn', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (50, 4, 'clockInTime', '打卡时间', 'datetime', 'Date', 'clockInTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (51, 4, 'ifClockInBehalf', '是否代打卡 1=是 0=否', 'tinyint(1)', 'Integer', 'ifClockInBehalf', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (52, 4, 'clockInRemark', '代打卡原因', 'varchar(255)', 'String', 'clockInRemark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (53, 4, 'ifClockOut', '是否已签退 1=是 0=否', 'tinyint(1)', 'Integer', 'ifClockOut', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (54, 4, 'clockOutTime', '签退时间', 'datetime', 'Date', 'clockOutTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 11, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (55, 4, 'ifClockOutBehalf', '是否代签退 1=是 0=否', 'tinyint(1)', 'Integer', 'ifClockOutBehalf', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (56, 4, 'clockOutRemark', '代签退原因', 'varchar(255)', 'String', 'clockOutRemark', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 13, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (57, 5, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (58, 5, 'otherId', '关联ID', 'bigint', 'Long', 'otherId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (59, 5, 'type', '类型 1=人员 2=作业 3培训', 'int', 'Long', 'type', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (60, 5, 'qrcodeLink', '二维码链接', 'varchar(255)', 'String', 'qrcodeLink', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (61, 5, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (62, 5, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (63, 5, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (64, 5, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (65, 5, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (66, 6, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (67, 6, 'trainTypeId', '类别id', 'bigint', 'Long', 'trainTypeId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (68, 6, 'trainName', '名称', 'varchar(255)', 'String', 'trainName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (69, 6, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (70, 6, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (71, 6, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (72, 6, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (73, 6, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (74, 7, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (75, 7, 'trainId', '培训id', 'bigint', 'Long', 'trainId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (76, 7, 'fileType', '文件分类 1=文件 2=视频', 'int', 'Long', 'fileType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (77, 7, 'fileName', '文件名称', 'varchar(255)', 'String', 'fileName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (78, 7, 'fileSize', '文件大小(mb)', 'double(10,2)', 'BigDecimal', 'fileSize', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (79, 7, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (80, 7, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (81, 7, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (82, 7, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 9, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (83, 7, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (84, 8, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (85, 8, 'userId', '用户id', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (86, 8, 'trainId', '培训id', 'bigint', 'Long', 'trainId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (87, 8, 'ifStudy', '是否已学习 1=是 0=否', 'tinyint(1)', 'Integer', 'ifStudy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (88, 9, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (89, 9, 'userId', '用户id', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (90, 9, 'trainFileId', '文件id(仅限视频)', 'bigint', 'Long', 'trainFileId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (91, 9, 'watchRecordDuration', '观看记录时长(秒)', 'int', 'Long', 'watchRecordDuration', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (92, 9, 'watchLocation', '观看位置记录', 'int', 'Long', 'watchLocation', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (93, 9, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (94, 10, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (95, 10, 'operationsId', '作业id', 'bigint', 'Long', 'operationsId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (96, 10, 'userId', '人员id', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (97, 10, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (98, 10, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 5, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (99, 10, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (100, 10, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (101, 10, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 8, 'admin', '2023-10-04 14:33:08', '', NULL);
INSERT INTO `gen_table_column` VALUES (102, 11, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (103, 11, 'agreementType', '分类 1用户协议 2隐私协议 3代打卡提醒 4安全积分规则', 'int', 'Long', 'agreementType', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', '', 2, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (104, 11, 'content', '内容', 'text', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 3, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (105, 12, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (106, 12, 'content', '配置内容', 'varchar(255)', 'String', 'content', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'editor', '', 2, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (107, 12, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 3, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (108, 12, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 4, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (109, 12, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (110, 12, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (111, 12, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (112, 13, 'id', NULL, 'bigint', 'Long', 'id', '1', '1', NULL, '1', NULL, NULL, NULL, 'EQ', 'input', '', 1, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (113, 13, 'userId', '用户id', 'bigint', 'Long', 'userId', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 2, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (114, 13, 'problemFeedback', '问题反馈', 'varchar(512)', 'String', 'problemFeedback', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 3, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (115, 13, 'pictures', '图片', 'varchar(2048)', 'String', 'pictures', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'textarea', '', 4, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (116, 13, 'positioning', '定位信息', 'varchar(255)', 'String', 'positioning', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (117, 13, 'positionLon', '经度', 'varchar(255)', 'String', 'positionLon', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 6, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (118, 13, 'positionLat', '纬度', 'varchar(255)', 'String', 'positionLat', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 7, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (119, 13, 'createTime', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 8, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (120, 13, 'updateTime', '修改时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'datetime', '', 9, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (121, 13, 'disabled', '是否删除 1是 0否', 'tinyint(1)', 'Integer', 'disabled', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 10, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (122, 13, 'createBy', '创建人', 'varchar(255)', 'String', 'createBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 11, 'admin', '2023-10-04 14:33:18', '', NULL);
INSERT INTO `gen_table_column` VALUES (123, 13, 'updateBy', '修改人', 'varchar(255)', 'String', 'updateBy', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 12, 'admin', '2023-10-04 14:33:18', '', NULL);
 
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP TABLE IF EXISTS `sys_config`;
CREATE TABLE `sys_config`  (
  `config_id` int(0) NOT NULL AUTO_INCREMENT COMMENT '参数主键',
  `config_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数名称',
  `config_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数键名',
  `config_value` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '参数键值',
  `config_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  PRIMARY KEY (`config_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '参数配置表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_config
-- ----------------------------
INSERT INTO `sys_config` VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-purple', 'Y', 'admin', '2023-10-02 14:09:11', 'admin', '2023-10-03 14:20:48', '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
INSERT INTO `sys_config` VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2023-10-02 14:09:11', '', NULL, '初始化密码 123456');
INSERT INTO `sys_config` VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 'admin', '2023-10-02 14:09:11', '', NULL, '深色主题theme-dark,浅色主题theme-light');
INSERT INTO `sys_config` VALUES (4, '账号自助-验证码开关', 'sys.account.captchaEnabled', 'false', 'Y', 'admin', '2023-10-02 14:09:11', '', NULL, '是否开启验证码功能(true开启,false关闭)');
INSERT INTO `sys_config` VALUES (5, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 'admin', '2023-10-02 14:09:11', '', NULL, '是否开启注册用户功能(true开启,false关闭)');
INSERT INTO `sys_config` VALUES (6, '用户登录-黑名单列表', 'sys.login.blackIPList', '', 'Y', 'admin', '2023-10-02 14:09:11', '', NULL, '设置登录IP黑名单限制,多个匹配项以;分隔,支持匹配(*通配、网段)');
 
-- ----------------------------
-- Table structure for sys_dept
-- ----------------------------
DROP TABLE IF EXISTS `sys_dept`;
CREATE TABLE `sys_dept`  (
  `dept_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '部门id',
  `parent_id` bigint(0) NULL DEFAULT 0 COMMENT '父部门id',
  `ancestors` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '祖级列表',
  `dept_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '部门名称',
  `order_num` int(0) NULL DEFAULT 0 COMMENT '显示顺序',
  `leader` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '负责人',
  `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系电话',
  `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
  `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  `del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  PRIMARY KEY (`dept_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 200 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '部门表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_dept
-- ----------------------------
INSERT INTO `sys_dept` VALUES (100, 0, '0', '若依科技', 0, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (101, 100, '0,100', '深圳总公司', 1, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (102, 100, '0,100', '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
INSERT INTO `sys_dept` VALUES (109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', NULL, '0', 'admin', '2023-10-02 14:09:09', '', NULL);
 
-- ----------------------------
-- Table structure for sys_dict_data
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict_data`;
CREATE TABLE `sys_dict_data`  (
  `dict_code` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '字典编码',
  `dict_sort` int(0) NULL DEFAULT 0 COMMENT '字典排序',
  `dict_label` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典标签',
  `dict_value` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典键值',
  `dict_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
  `css_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
  `list_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '表格回显样式',
  `is_default` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1停用)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  PRIMARY KEY (`dict_code`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典数据表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_dict_data
-- ----------------------------
INSERT INTO `sys_dict_data` VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '性别男');
INSERT INTO `sys_dict_data` VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '性别女');
INSERT INTO `sys_dict_data` VALUES (3, 3, '未知', '2', 'sys_user_sex', '', '', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '性别未知');
INSERT INTO `sys_dict_data` VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '显示菜单');
INSERT INTO `sys_dict_data` VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '隐藏菜单');
INSERT INTO `sys_dict_data` VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '停用状态');
INSERT INTO `sys_dict_data` VALUES (8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '停用状态');
INSERT INTO `sys_dict_data` VALUES (10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '默认分组');
INSERT INTO `sys_dict_data` VALUES (11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '系统分组');
INSERT INTO `sys_dict_data` VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '系统默认是');
INSERT INTO `sys_dict_data` VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '系统默认否');
INSERT INTO `sys_dict_data` VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '通知');
INSERT INTO `sys_dict_data` VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '公告');
INSERT INTO `sys_dict_data` VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '关闭状态');
INSERT INTO `sys_dict_data` VALUES (18, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '其他操作');
INSERT INTO `sys_dict_data` VALUES (19, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '新增操作');
INSERT INTO `sys_dict_data` VALUES (20, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '修改操作');
INSERT INTO `sys_dict_data` VALUES (21, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '删除操作');
INSERT INTO `sys_dict_data` VALUES (22, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '授权操作');
INSERT INTO `sys_dict_data` VALUES (23, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '导出操作');
INSERT INTO `sys_dict_data` VALUES (24, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '导入操作');
INSERT INTO `sys_dict_data` VALUES (25, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '强退操作');
INSERT INTO `sys_dict_data` VALUES (26, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '生成操作');
INSERT INTO `sys_dict_data` VALUES (27, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '清空操作');
INSERT INTO `sys_dict_data` VALUES (28, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '正常状态');
INSERT INTO `sys_dict_data` VALUES (29, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '停用状态');
INSERT INTO `sys_dict_data` VALUES (30, 1, '个人', '1', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性个人');
INSERT INTO `sys_dict_data` VALUES (31, 2, '企业', '2', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性企业');
INSERT INTO `sys_dict_data` VALUES (32, 3, '联系人', '3', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性联系人');
INSERT INTO `sys_dict_data` VALUES (33, 4, '个体户', '4', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性个体户');
INSERT INTO `sys_dict_data` VALUES (34, 5, '政府机构', '5', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性政府机构');
INSERT INTO `sys_dict_data` VALUES (35, 6, '车主', '6', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性车主');
INSERT INTO `sys_dict_data` VALUES (36, 7, '国有企业', '7', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性国有企业');
INSERT INTO `sys_dict_data` VALUES (37, 8, '其他', '8', 't_tenant_attribute', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:12:04', '', NULL, '属性其他');
INSERT INTO `sys_dict_data` VALUES (38, 1, '业主', '1', 't_tenant_type', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:15:26', '', NULL, '类型业主');
INSERT INTO `sys_dict_data` VALUES (39, 2, '业主家庭成员', '2', 't_tenant_type', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:15:26', '', NULL, '类型业主家庭成员');
INSERT INTO `sys_dict_data` VALUES (40, 3, '租户', '3', 't_tenant_type', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:15:26', '', NULL, '类型租户');
INSERT INTO `sys_dict_data` VALUES (41, 4, '租户家庭成员', '4', 't_tenant_type', NULL, NULL, 'N', '0', 'admin', '2025-01-21 14:15:26', '', NULL, '类型租户家庭成员');
 
-- ----------------------------
-- Table structure for sys_dict_type
-- ----------------------------
DROP TABLE IF EXISTS `sys_dict_type`;
CREATE TABLE `sys_dict_type`  (
  `dict_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '字典主键',
  `dict_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典名称',
  `dict_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '字典类型',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1停用)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  PRIMARY KEY (`dict_id`) USING BTREE,
  UNIQUE INDEX `dict_type`(`dict_type`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '字典类型表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_dict_type
-- ----------------------------
INSERT INTO `sys_dict_type` VALUES (1, '用户性别', 'sys_user_sex', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '用户性别列表');
INSERT INTO `sys_dict_type` VALUES (2, '菜单状态', 'sys_show_hide', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '菜单状态列表');
INSERT INTO `sys_dict_type` VALUES (3, '系统开关', 'sys_normal_disable', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '系统开关列表');
INSERT INTO `sys_dict_type` VALUES (4, '任务状态', 'sys_job_status', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '任务状态列表');
INSERT INTO `sys_dict_type` VALUES (5, '任务分组', 'sys_job_group', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '任务分组列表');
INSERT INTO `sys_dict_type` VALUES (6, '系统是否', 'sys_yes_no', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '系统是否列表');
INSERT INTO `sys_dict_type` VALUES (7, '通知类型', 'sys_notice_type', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '通知类型列表');
INSERT INTO `sys_dict_type` VALUES (8, '通知状态', 'sys_notice_status', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '通知状态列表');
INSERT INTO `sys_dict_type` VALUES (9, '操作类型', 'sys_oper_type', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '操作类型列表');
INSERT INTO `sys_dict_type` VALUES (10, '系统状态', 'sys_common_status', '0', 'admin', '2023-10-02 14:09:11', '', NULL, '登录状态列表');
INSERT INTO `sys_dict_type` VALUES (11, '租户属性', 't_tenant_attribute', '0', 'admin', '2025-01-21 14:05:14', '', NULL, '租户属性列表');
INSERT INTO `sys_dict_type` VALUES (12, '租户类别', 't_tenant_type', '0', 'admin', '2025-01-21 14:05:47', '', NULL, '租户类别列表');
 
-- ----------------------------
-- Table structure for sys_job
-- ----------------------------
DROP TABLE IF EXISTS `sys_job`;
CREATE TABLE `sys_job`  (
  `job_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '任务ID',
  `job_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '任务名称',
  `job_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'DEFAULT' COMMENT '任务组名',
  `invoke_target` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '调用目标字符串',
  `cron_expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT 'cron执行表达式',
  `misfire_policy` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '3' COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)',
  `concurrent` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '1' COMMENT '是否并发执行(0允许 1禁止)',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1暂停)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注信息',
  PRIMARY KEY (`job_id`, `job_name`, `job_group`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '定时任务调度表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_job
-- ----------------------------
INSERT INTO `sys_job` VALUES (1, '系统默认(无参)', 'DEFAULT', 'ryTask.ryNoParams', '0/10 * * * * ?', '3', '1', '1', 'admin', '2023-10-02 14:09:11', '', NULL, '');
INSERT INTO `sys_job` VALUES (2, '系统默认(有参)', 'DEFAULT', 'ryTask.ryParams(\'ry\')', '0/15 * * * * ?', '3', '1', '1', 'admin', '2023-10-02 14:09:11', '', NULL, '');
INSERT INTO `sys_job` VALUES (3, '系统默认(多参)', 'DEFAULT', 'ryTask.ryMultipleParams(\'ry\', true, 2000L, 316.50D, 100)', '0/20 * * * * ?', '3', '1', '1', 'admin', '2023-10-02 14:09:11', '', NULL, '');
 
-- ----------------------------
-- Table structure for sys_job_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_job_log`;
CREATE TABLE `sys_job_log`  (
  `job_log_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '任务日志ID',
  `job_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务名称',
  `job_group` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务组名',
  `invoke_target` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '调用目标字符串',
  `job_message` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '日志信息',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '执行状态(0正常 1失败)',
  `exception_info` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '异常信息',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  PRIMARY KEY (`job_log_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '定时任务调度日志表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_job_log
-- ----------------------------
 
-- ----------------------------
-- Table structure for sys_logininfor
-- ----------------------------
DROP TABLE IF EXISTS `sys_logininfor`;
CREATE TABLE `sys_logininfor`  (
  `info_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '访问ID',
  `user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户账号',
  `ipaddr` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '登录IP地址',
  `login_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '登录地点',
  `browser` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '浏览器类型',
  `os` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作系统',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
  `msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '提示消息',
  `login_time` datetime(0) NULL DEFAULT NULL COMMENT '访问时间',
  PRIMARY KEY (`info_id`) USING BTREE,
  INDEX `idx_sys_logininfor_s`(`status`) USING BTREE,
  INDEX `idx_sys_logininfor_lt`(`login_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1273 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统访问记录' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_logininfor
-- ----------------------------
INSERT INTO `sys_logininfor` VALUES (100, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-03 14:13:52');
INSERT INTO `sys_logininfor` VALUES (101, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '退出成功', '2023-10-03 16:16:06');
INSERT INTO `sys_logininfor` VALUES (102, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '验证码错误', '2023-10-03 16:16:35');
INSERT INTO `sys_logininfor` VALUES (103, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '验证码错误', '2023-10-03 16:17:42');
INSERT INTO `sys_logininfor` VALUES (104, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '验证码错误', '2023-10-03 16:17:55');
INSERT INTO `sys_logininfor` VALUES (105, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '验证码错误', '2023-10-03 16:18:57');
INSERT INTO `sys_logininfor` VALUES (106, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-03 16:26:27');
INSERT INTO `sys_logininfor` VALUES (107, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-04 14:32:29');
INSERT INTO `sys_logininfor` VALUES (108, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-04 16:56:26');
INSERT INTO `sys_logininfor` VALUES (109, NULL, '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '* 必须填写', '2023-10-10 09:22:44');
INSERT INTO `sys_logininfor` VALUES (110, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-10 09:23:32');
INSERT INTO `sys_logininfor` VALUES (111, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-10 09:23:32');
INSERT INTO `sys_logininfor` VALUES (112, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:23:51');
INSERT INTO `sys_logininfor` VALUES (113, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:25:38');
INSERT INTO `sys_logininfor` VALUES (114, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:25:55');
INSERT INTO `sys_logininfor` VALUES (115, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-10 09:29:12');
INSERT INTO `sys_logininfor` VALUES (116, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:29:17');
INSERT INTO `sys_logininfor` VALUES (117, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:29:50');
INSERT INTO `sys_logininfor` VALUES (118, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:31:16');
INSERT INTO `sys_logininfor` VALUES (119, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 09:34:27');
INSERT INTO `sys_logininfor` VALUES (120, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '1', '用户不存在/密码错误', '2023-10-10 09:45:03');
INSERT INTO `sys_logininfor` VALUES (121, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '1', '密码输入错误1次', '2023-10-10 09:45:03');
INSERT INTO `sys_logininfor` VALUES (122, 'admin1', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '1', '用户不存在/密码错误', '2023-10-10 10:02:43');
INSERT INTO `sys_logininfor` VALUES (123, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 10:02:53');
INSERT INTO `sys_logininfor` VALUES (124, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-10 10:04:50');
INSERT INTO `sys_logininfor` VALUES (125, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-10 10:04:50');
INSERT INTO `sys_logininfor` VALUES (126, 'admin', '192.168.110.103', '内网IP', 'Chrome Mobile', 'Mac OS X (iPad)', '1', '密码输入错误2次', '2023-10-10 10:05:21');
INSERT INTO `sys_logininfor` VALUES (127, 'admin', '192.168.110.103', '内网IP', 'Chrome Mobile', 'Mac OS X (iPad)', '1', '用户不存在/密码错误', '2023-10-10 10:05:21');
INSERT INTO `sys_logininfor` VALUES (128, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-10 14:52:40');
INSERT INTO `sys_logininfor` VALUES (129, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 09:12:06');
INSERT INTO `sys_logininfor` VALUES (130, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-11 10:33:54');
INSERT INTO `sys_logininfor` VALUES (131, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-11 10:33:54');
INSERT INTO `sys_logininfor` VALUES (132, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 10:34:16');
INSERT INTO `sys_logininfor` VALUES (133, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 11:52:45');
INSERT INTO `sys_logininfor` VALUES (134, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 12:00:02');
INSERT INTO `sys_logininfor` VALUES (135, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 12:00:55');
INSERT INTO `sys_logininfor` VALUES (136, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 14:01:41');
INSERT INTO `sys_logininfor` VALUES (137, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 14:16:30');
INSERT INTO `sys_logininfor` VALUES (138, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 15:21:15');
INSERT INTO `sys_logininfor` VALUES (139, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-11 17:21:55');
INSERT INTO `sys_logininfor` VALUES (140, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-12 10:01:59');
INSERT INTO `sys_logininfor` VALUES (141, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-12 10:01:59');
INSERT INTO `sys_logininfor` VALUES (142, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-12 10:02:10');
INSERT INTO `sys_logininfor` VALUES (143, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-12 11:37:51');
INSERT INTO `sys_logininfor` VALUES (144, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-12 11:59:47');
INSERT INTO `sys_logininfor` VALUES (145, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-12 14:11:18');
INSERT INTO `sys_logininfor` VALUES (146, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-12 14:11:18');
INSERT INTO `sys_logininfor` VALUES (147, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-12 14:11:36');
INSERT INTO `sys_logininfor` VALUES (148, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-12 16:50:31');
INSERT INTO `sys_logininfor` VALUES (149, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 09:02:49');
INSERT INTO `sys_logininfor` VALUES (150, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 09:12:06');
INSERT INTO `sys_logininfor` VALUES (151, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 10:50:11');
INSERT INTO `sys_logininfor` VALUES (152, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 11:57:48');
INSERT INTO `sys_logininfor` VALUES (153, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 11:59:29');
INSERT INTO `sys_logininfor` VALUES (154, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 14:04:36');
INSERT INTO `sys_logininfor` VALUES (155, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 14:07:47');
INSERT INTO `sys_logininfor` VALUES (156, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 15:20:59');
INSERT INTO `sys_logininfor` VALUES (157, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 17:24:22');
INSERT INTO `sys_logininfor` VALUES (158, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-13 17:24:55');
INSERT INTO `sys_logininfor` VALUES (159, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-16 09:33:02');
INSERT INTO `sys_logininfor` VALUES (160, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-16 10:48:57');
INSERT INTO `sys_logininfor` VALUES (161, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-16 14:09:30');
INSERT INTO `sys_logininfor` VALUES (162, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-16 14:14:56');
INSERT INTO `sys_logininfor` VALUES (163, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-16 16:16:23');
INSERT INTO `sys_logininfor` VALUES (164, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-17 15:31:32');
INSERT INTO `sys_logininfor` VALUES (165, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-17 16:21:36');
INSERT INTO `sys_logininfor` VALUES (166, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-17 16:22:55');
INSERT INTO `sys_logininfor` VALUES (167, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-17 16:23:46');
INSERT INTO `sys_logininfor` VALUES (168, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-17 17:10:51');
INSERT INTO `sys_logininfor` VALUES (169, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 09:11:17');
INSERT INTO `sys_logininfor` VALUES (170, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 14:23:10');
INSERT INTO `sys_logininfor` VALUES (171, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 14:46:17');
INSERT INTO `sys_logininfor` VALUES (172, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 14:53:50');
INSERT INTO `sys_logininfor` VALUES (173, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 15:28:19');
INSERT INTO `sys_logininfor` VALUES (174, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 15:43:54');
INSERT INTO `sys_logininfor` VALUES (175, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-18 16:06:26');
INSERT INTO `sys_logininfor` VALUES (176, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-18 16:20:26');
INSERT INTO `sys_logininfor` VALUES (177, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-19 11:44:39');
INSERT INTO `sys_logininfor` VALUES (178, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-19 14:20:00');
INSERT INTO `sys_logininfor` VALUES (179, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-19 16:34:53');
INSERT INTO `sys_logininfor` VALUES (180, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-19 16:57:07');
INSERT INTO `sys_logininfor` VALUES (181, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-19 16:57:07');
INSERT INTO `sys_logininfor` VALUES (182, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-19 16:57:14');
INSERT INTO `sys_logininfor` VALUES (183, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-19 17:33:16');
INSERT INTO `sys_logininfor` VALUES (184, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-20 09:31:50');
INSERT INTO `sys_logininfor` VALUES (185, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-20 09:48:52');
INSERT INTO `sys_logininfor` VALUES (186, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-20 10:02:23');
INSERT INTO `sys_logininfor` VALUES (187, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-20 10:32:33');
INSERT INTO `sys_logininfor` VALUES (188, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-20 10:52:34');
INSERT INTO `sys_logininfor` VALUES (189, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-20 11:43:14');
INSERT INTO `sys_logininfor` VALUES (190, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-20 14:08:12');
INSERT INTO `sys_logininfor` VALUES (191, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-20 14:09:22');
INSERT INTO `sys_logininfor` VALUES (192, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-20 16:35:29');
INSERT INTO `sys_logininfor` VALUES (193, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 09:09:50');
INSERT INTO `sys_logininfor` VALUES (194, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 09:27:51');
INSERT INTO `sys_logininfor` VALUES (195, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 09:38:08');
INSERT INTO `sys_logininfor` VALUES (196, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-21 09:39:08');
INSERT INTO `sys_logininfor` VALUES (197, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 09:46:00');
INSERT INTO `sys_logininfor` VALUES (198, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 10:45:48');
INSERT INTO `sys_logininfor` VALUES (199, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:24:38');
INSERT INTO `sys_logininfor` VALUES (200, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:31:09');
INSERT INTO `sys_logininfor` VALUES (201, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:39:22');
INSERT INTO `sys_logininfor` VALUES (202, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:40:49');
INSERT INTO `sys_logininfor` VALUES (203, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:50:02');
INSERT INTO `sys_logininfor` VALUES (204, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:50:46');
INSERT INTO `sys_logininfor` VALUES (205, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 14:50:52');
INSERT INTO `sys_logininfor` VALUES (206, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 15:27:25');
INSERT INTO `sys_logininfor` VALUES (207, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 16:17:24');
INSERT INTO `sys_logininfor` VALUES (208, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 16:30:36');
INSERT INTO `sys_logininfor` VALUES (209, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 17:27:33');
INSERT INTO `sys_logininfor` VALUES (210, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 17:27:52');
INSERT INTO `sys_logininfor` VALUES (211, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-21 17:36:18');
INSERT INTO `sys_logininfor` VALUES (212, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-21 17:40:01');
INSERT INTO `sys_logininfor` VALUES (213, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-21 17:40:06');
INSERT INTO `sys_logininfor` VALUES (214, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 09:00:06');
INSERT INTO `sys_logininfor` VALUES (215, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 09:15:27');
INSERT INTO `sys_logininfor` VALUES (216, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 09:41:23');
INSERT INTO `sys_logininfor` VALUES (217, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 09:41:30');
INSERT INTO `sys_logininfor` VALUES (218, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 10:31:59');
INSERT INTO `sys_logininfor` VALUES (219, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 10:44:59');
INSERT INTO `sys_logininfor` VALUES (220, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 11:27:55');
INSERT INTO `sys_logininfor` VALUES (221, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 14:05:51');
INSERT INTO `sys_logininfor` VALUES (222, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 14:24:02');
INSERT INTO `sys_logininfor` VALUES (223, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 14:24:47');
INSERT INTO `sys_logininfor` VALUES (224, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 14:50:58');
INSERT INTO `sys_logininfor` VALUES (225, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 14:52:14');
INSERT INTO `sys_logininfor` VALUES (226, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 14:57:50');
INSERT INTO `sys_logininfor` VALUES (227, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 14:57:53');
INSERT INTO `sys_logininfor` VALUES (228, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 14:59:49');
INSERT INTO `sys_logininfor` VALUES (229, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 15:07:14');
INSERT INTO `sys_logininfor` VALUES (230, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 15:17:21');
INSERT INTO `sys_logininfor` VALUES (231, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 15:18:33');
INSERT INTO `sys_logininfor` VALUES (232, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 15:20:19');
INSERT INTO `sys_logininfor` VALUES (233, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 15:24:37');
INSERT INTO `sys_logininfor` VALUES (234, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 15:38:47');
INSERT INTO `sys_logininfor` VALUES (235, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 16:09:51');
INSERT INTO `sys_logininfor` VALUES (236, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 16:18:50');
INSERT INTO `sys_logininfor` VALUES (237, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 16:20:57');
INSERT INTO `sys_logininfor` VALUES (238, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 16:23:10');
INSERT INTO `sys_logininfor` VALUES (239, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 16:41:15');
INSERT INTO `sys_logininfor` VALUES (240, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 16:55:03');
INSERT INTO `sys_logininfor` VALUES (241, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-23 17:01:34');
INSERT INTO `sys_logininfor` VALUES (242, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 17:17:55');
INSERT INTO `sys_logininfor` VALUES (243, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 17:30:28');
INSERT INTO `sys_logininfor` VALUES (244, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 17:31:07');
INSERT INTO `sys_logininfor` VALUES (245, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-23 17:34:12');
INSERT INTO `sys_logininfor` VALUES (246, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 08:54:16');
INSERT INTO `sys_logininfor` VALUES (247, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 09:20:34');
INSERT INTO `sys_logininfor` VALUES (248, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 09:34:04');
INSERT INTO `sys_logininfor` VALUES (249, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 10:02:49');
INSERT INTO `sys_logininfor` VALUES (250, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 10:33:58');
INSERT INTO `sys_logininfor` VALUES (251, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 11:03:42');
INSERT INTO `sys_logininfor` VALUES (252, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-24 11:54:55');
INSERT INTO `sys_logininfor` VALUES (253, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-24 11:54:55');
INSERT INTO `sys_logininfor` VALUES (254, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 11:55:07');
INSERT INTO `sys_logininfor` VALUES (255, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 14:08:03');
INSERT INTO `sys_logininfor` VALUES (256, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 14:09:01');
INSERT INTO `sys_logininfor` VALUES (257, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 14:09:03');
INSERT INTO `sys_logininfor` VALUES (258, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 15:02:41');
INSERT INTO `sys_logininfor` VALUES (259, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 15:26:31');
INSERT INTO `sys_logininfor` VALUES (260, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 15:28:29');
INSERT INTO `sys_logininfor` VALUES (261, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 15:51:25');
INSERT INTO `sys_logininfor` VALUES (262, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 16:35:57');
INSERT INTO `sys_logininfor` VALUES (263, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-24 16:43:43');
INSERT INTO `sys_logininfor` VALUES (264, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 16:44:06');
INSERT INTO `sys_logininfor` VALUES (265, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 17:11:10');
INSERT INTO `sys_logininfor` VALUES (266, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 17:11:28');
INSERT INTO `sys_logininfor` VALUES (267, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 17:11:36');
INSERT INTO `sys_logininfor` VALUES (268, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 17:19:01');
INSERT INTO `sys_logininfor` VALUES (269, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 21:22:34');
INSERT INTO `sys_logininfor` VALUES (270, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-24 22:00:00');
INSERT INTO `sys_logininfor` VALUES (271, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 09:25:30');
INSERT INTO `sys_logininfor` VALUES (272, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 09:29:26');
INSERT INTO `sys_logininfor` VALUES (273, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 09:34:52');
INSERT INTO `sys_logininfor` VALUES (274, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 10:37:03');
INSERT INTO `sys_logininfor` VALUES (275, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 11:30:23');
INSERT INTO `sys_logininfor` VALUES (276, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 12:37:19');
INSERT INTO `sys_logininfor` VALUES (277, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 14:16:10');
INSERT INTO `sys_logininfor` VALUES (278, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 14:19:27');
INSERT INTO `sys_logininfor` VALUES (279, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 14:37:01');
INSERT INTO `sys_logininfor` VALUES (280, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 15:28:47');
INSERT INTO `sys_logininfor` VALUES (281, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:07:36');
INSERT INTO `sys_logininfor` VALUES (282, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:18:38');
INSERT INTO `sys_logininfor` VALUES (283, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:21:31');
INSERT INTO `sys_logininfor` VALUES (284, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:22:00');
INSERT INTO `sys_logininfor` VALUES (285, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:24:35');
INSERT INTO `sys_logininfor` VALUES (286, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:28:42');
INSERT INTO `sys_logininfor` VALUES (287, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 16:29:26');
INSERT INTO `sys_logininfor` VALUES (288, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:29:48');
INSERT INTO `sys_logininfor` VALUES (289, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:30:23');
INSERT INTO `sys_logininfor` VALUES (290, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:31:18');
INSERT INTO `sys_logininfor` VALUES (291, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:31:39');
INSERT INTO `sys_logininfor` VALUES (292, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:32:04');
INSERT INTO `sys_logininfor` VALUES (293, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:33:08');
INSERT INTO `sys_logininfor` VALUES (294, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:33:28');
INSERT INTO `sys_logininfor` VALUES (295, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:33:57');
INSERT INTO `sys_logininfor` VALUES (296, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:34:11');
INSERT INTO `sys_logininfor` VALUES (297, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:36:54');
INSERT INTO `sys_logininfor` VALUES (298, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:37:06');
INSERT INTO `sys_logininfor` VALUES (299, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-25 16:39:04');
INSERT INTO `sys_logininfor` VALUES (300, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 16:39:04');
INSERT INTO `sys_logininfor` VALUES (301, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:39:08');
INSERT INTO `sys_logininfor` VALUES (302, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:39:34');
INSERT INTO `sys_logininfor` VALUES (303, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:44:45');
INSERT INTO `sys_logininfor` VALUES (304, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:46:14');
INSERT INTO `sys_logininfor` VALUES (305, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:47:06');
INSERT INTO `sys_logininfor` VALUES (306, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:48:00');
INSERT INTO `sys_logininfor` VALUES (307, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 16:50:18');
INSERT INTO `sys_logininfor` VALUES (308, '1', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:01:19');
INSERT INTO `sys_logininfor` VALUES (309, '1', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:24:21');
INSERT INTO `sys_logininfor` VALUES (310, '1', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:24:23');
INSERT INTO `sys_logininfor` VALUES (311, '1', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:42:41');
INSERT INTO `sys_logininfor` VALUES (312, '1', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:48:49');
INSERT INTO `sys_logininfor` VALUES (313, '12', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:49:29');
INSERT INTO `sys_logininfor` VALUES (314, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 19:52:12');
INSERT INTO `sys_logininfor` VALUES (315, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 19:53:59');
INSERT INTO `sys_logininfor` VALUES (316, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 19:54:07');
INSERT INTO `sys_logininfor` VALUES (317, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-25 20:23:14');
INSERT INTO `sys_logininfor` VALUES (318, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 20:23:25');
INSERT INTO `sys_logininfor` VALUES (319, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-25 21:27:23');
INSERT INTO `sys_logininfor` VALUES (320, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 09:23:27');
INSERT INTO `sys_logininfor` VALUES (321, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 09:33:12');
INSERT INTO `sys_logininfor` VALUES (322, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-10-26 11:43:34');
INSERT INTO `sys_logininfor` VALUES (323, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 11:43:56');
INSERT INTO `sys_logininfor` VALUES (324, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:45:27');
INSERT INTO `sys_logininfor` VALUES (325, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:46:23');
INSERT INTO `sys_logininfor` VALUES (326, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:46:38');
INSERT INTO `sys_logininfor` VALUES (327, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:46:38');
INSERT INTO `sys_logininfor` VALUES (328, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:46:42');
INSERT INTO `sys_logininfor` VALUES (329, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:46:43');
INSERT INTO `sys_logininfor` VALUES (330, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:48:20');
INSERT INTO `sys_logininfor` VALUES (331, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:51:32');
INSERT INTO `sys_logininfor` VALUES (332, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-10-26 11:55:29');
INSERT INTO `sys_logininfor` VALUES (333, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:55:41');
INSERT INTO `sys_logininfor` VALUES (334, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 11:56:54');
INSERT INTO `sys_logininfor` VALUES (335, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 12:00:30');
INSERT INTO `sys_logininfor` VALUES (336, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 12:26:49');
INSERT INTO `sys_logininfor` VALUES (337, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 12:34:26');
INSERT INTO `sys_logininfor` VALUES (338, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:07:55');
INSERT INTO `sys_logininfor` VALUES (339, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:10:13');
INSERT INTO `sys_logininfor` VALUES (340, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:10:30');
INSERT INTO `sys_logininfor` VALUES (341, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:10:39');
INSERT INTO `sys_logininfor` VALUES (342, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:10:59');
INSERT INTO `sys_logininfor` VALUES (343, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:20:10');
INSERT INTO `sys_logininfor` VALUES (344, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:26:35');
INSERT INTO `sys_logininfor` VALUES (345, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 14:27:39');
INSERT INTO `sys_logininfor` VALUES (346, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-26 14:35:58');
INSERT INTO `sys_logininfor` VALUES (347, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 14:41:31');
INSERT INTO `sys_logininfor` VALUES (348, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-26 15:09:16');
INSERT INTO `sys_logininfor` VALUES (349, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 15:38:35');
INSERT INTO `sys_logininfor` VALUES (350, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 17:19:58');
INSERT INTO `sys_logininfor` VALUES (351, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 17:28:57');
INSERT INTO `sys_logininfor` VALUES (352, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 17:40:02');
INSERT INTO `sys_logininfor` VALUES (353, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 18:06:33');
INSERT INTO `sys_logininfor` VALUES (354, '18008172471', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-26 18:27:45');
INSERT INTO `sys_logininfor` VALUES (355, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 09:14:05');
INSERT INTO `sys_logininfor` VALUES (356, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 09:15:38');
INSERT INTO `sys_logininfor` VALUES (357, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 09:16:05');
INSERT INTO `sys_logininfor` VALUES (358, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 09:21:55');
INSERT INTO `sys_logininfor` VALUES (359, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 09:43:24');
INSERT INTO `sys_logininfor` VALUES (360, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:23:55');
INSERT INTO `sys_logininfor` VALUES (361, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:25:46');
INSERT INTO `sys_logininfor` VALUES (362, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:32:04');
INSERT INTO `sys_logininfor` VALUES (363, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:39:13');
INSERT INTO `sys_logininfor` VALUES (364, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:44:23');
INSERT INTO `sys_logininfor` VALUES (365, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:45:01');
INSERT INTO `sys_logininfor` VALUES (366, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:49:03');
INSERT INTO `sys_logininfor` VALUES (367, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 10:50:27');
INSERT INTO `sys_logininfor` VALUES (368, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:51:54');
INSERT INTO `sys_logininfor` VALUES (369, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:51:59');
INSERT INTO `sys_logininfor` VALUES (370, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:52:00');
INSERT INTO `sys_logininfor` VALUES (371, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:52:01');
INSERT INTO `sys_logininfor` VALUES (372, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:52:02');
INSERT INTO `sys_logininfor` VALUES (373, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:52:03');
INSERT INTO `sys_logininfor` VALUES (374, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:52:03');
INSERT INTO `sys_logininfor` VALUES (375, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 10:52:04');
INSERT INTO `sys_logininfor` VALUES (376, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 11:01:28');
INSERT INTO `sys_logininfor` VALUES (377, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 11:05:06');
INSERT INTO `sys_logininfor` VALUES (378, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 11:05:11');
INSERT INTO `sys_logininfor` VALUES (379, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 11:05:16');
INSERT INTO `sys_logininfor` VALUES (380, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 11:05:21');
INSERT INTO `sys_logininfor` VALUES (381, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 11:11:40');
INSERT INTO `sys_logininfor` VALUES (382, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 11:38:13');
INSERT INTO `sys_logininfor` VALUES (383, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 11:38:52');
INSERT INTO `sys_logininfor` VALUES (384, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 11:41:19');
INSERT INTO `sys_logininfor` VALUES (385, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 14:08:27');
INSERT INTO `sys_logininfor` VALUES (386, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 14:09:35');
INSERT INTO `sys_logininfor` VALUES (387, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-27 14:28:21');
INSERT INTO `sys_logininfor` VALUES (388, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-27 14:28:21');
INSERT INTO `sys_logininfor` VALUES (389, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 14:28:25');
INSERT INTO `sys_logininfor` VALUES (390, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 14:38:37');
INSERT INTO `sys_logininfor` VALUES (391, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 14:52:38');
INSERT INTO `sys_logininfor` VALUES (392, '18008172471', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 15:24:45');
INSERT INTO `sys_logininfor` VALUES (393, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 15:27:08');
INSERT INTO `sys_logininfor` VALUES (394, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 15:32:20');
INSERT INTO `sys_logininfor` VALUES (395, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 15:45:19');
INSERT INTO `sys_logininfor` VALUES (396, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 17:00:33');
INSERT INTO `sys_logininfor` VALUES (397, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-27 17:39:02');
INSERT INTO `sys_logininfor` VALUES (398, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-27 18:09:55');
INSERT INTO `sys_logininfor` VALUES (399, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 09:07:25');
INSERT INTO `sys_logininfor` VALUES (400, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 09:25:21');
INSERT INTO `sys_logininfor` VALUES (401, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 09:25:28');
INSERT INTO `sys_logininfor` VALUES (402, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-28 09:28:29');
INSERT INTO `sys_logininfor` VALUES (403, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 09:37:46');
INSERT INTO `sys_logininfor` VALUES (404, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-28 09:39:37');
INSERT INTO `sys_logininfor` VALUES (405, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-28 09:42:01');
INSERT INTO `sys_logininfor` VALUES (406, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '1', '密码输入错误1次', '2023-10-28 09:42:59');
INSERT INTO `sys_logininfor` VALUES (407, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '1', '用户不存在/密码错误', '2023-10-28 09:42:59');
INSERT INTO `sys_logininfor` VALUES (408, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 09:44:26');
INSERT INTO `sys_logininfor` VALUES (409, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 09:47:47');
INSERT INTO `sys_logininfor` VALUES (410, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-28 09:55:34');
INSERT INTO `sys_logininfor` VALUES (411, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-10-28 10:10:32');
INSERT INTO `sys_logininfor` VALUES (412, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 10:11:07');
INSERT INTO `sys_logininfor` VALUES (413, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 10:28:40');
INSERT INTO `sys_logininfor` VALUES (414, '18008172471', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-10-28 11:27:21');
INSERT INTO `sys_logininfor` VALUES (415, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-28 11:38:59');
INSERT INTO `sys_logininfor` VALUES (416, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 13:55:44');
INSERT INTO `sys_logininfor` VALUES (417, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 14:13:02');
INSERT INTO `sys_logininfor` VALUES (418, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 14:13:27');
INSERT INTO `sys_logininfor` VALUES (419, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 14:14:21');
INSERT INTO `sys_logininfor` VALUES (420, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 14:28:23');
INSERT INTO `sys_logininfor` VALUES (421, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-28 14:32:47');
INSERT INTO `sys_logininfor` VALUES (422, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 14:33:59');
INSERT INTO `sys_logininfor` VALUES (423, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-28 14:34:16');
INSERT INTO `sys_logininfor` VALUES (424, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 14:35:48');
INSERT INTO `sys_logininfor` VALUES (425, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 14:39:29');
INSERT INTO `sys_logininfor` VALUES (426, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-28 15:11:56');
INSERT INTO `sys_logininfor` VALUES (427, '18008172471', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-10-28 15:27:30');
INSERT INTO `sys_logininfor` VALUES (428, '15888888888', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-10-28 16:04:28');
INSERT INTO `sys_logininfor` VALUES (429, '15888888888', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-10-28 16:04:35');
INSERT INTO `sys_logininfor` VALUES (430, '15888888888', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-10-28 16:04:41');
INSERT INTO `sys_logininfor` VALUES (431, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 16:05:02');
INSERT INTO `sys_logininfor` VALUES (432, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:07:21');
INSERT INTO `sys_logininfor` VALUES (433, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:29:20');
INSERT INTO `sys_logininfor` VALUES (434, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 16:29:22');
INSERT INTO `sys_logininfor` VALUES (435, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:29:55');
INSERT INTO `sys_logininfor` VALUES (436, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 16:29:58');
INSERT INTO `sys_logininfor` VALUES (437, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 16:30:52');
INSERT INTO `sys_logininfor` VALUES (438, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:31:00');
INSERT INTO `sys_logininfor` VALUES (439, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:35:09');
INSERT INTO `sys_logininfor` VALUES (440, 'admin', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-28 16:45:33');
INSERT INTO `sys_logininfor` VALUES (441, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-10-28 16:49:24');
INSERT INTO `sys_logininfor` VALUES (442, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-10-28 16:49:24');
INSERT INTO `sys_logininfor` VALUES (443, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-28 16:49:31');
INSERT INTO `sys_logininfor` VALUES (444, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:51:15');
INSERT INTO `sys_logininfor` VALUES (445, '18008172471', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-28 16:53:40');
INSERT INTO `sys_logininfor` VALUES (446, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 17:19:43');
INSERT INTO `sys_logininfor` VALUES (447, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 17:20:19');
INSERT INTO `sys_logininfor` VALUES (448, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-28 17:37:28');
INSERT INTO `sys_logininfor` VALUES (449, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 09:01:58');
INSERT INTO `sys_logininfor` VALUES (450, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 09:04:50');
INSERT INTO `sys_logininfor` VALUES (451, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 09:10:59');
INSERT INTO `sys_logininfor` VALUES (452, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-30 09:16:01');
INSERT INTO `sys_logininfor` VALUES (453, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 10:20:13');
INSERT INTO `sys_logininfor` VALUES (454, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 10:23:04');
INSERT INTO `sys_logininfor` VALUES (455, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 10:43:42');
INSERT INTO `sys_logininfor` VALUES (456, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 10:44:17');
INSERT INTO `sys_logininfor` VALUES (457, 'admin', '192.168.110.34', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 10:44:51');
INSERT INTO `sys_logininfor` VALUES (458, '18008172471', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-10-30 11:58:35');
INSERT INTO `sys_logininfor` VALUES (459, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 14:03:11');
INSERT INTO `sys_logininfor` VALUES (460, '15983795014', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-30 14:36:44');
INSERT INTO `sys_logininfor` VALUES (461, '13404089107', '192.168.110.13', '内网IP', 'Mobile Safari', 'Mac OS X (iPhone)', '0', '登录成功', '2023-10-30 14:37:48');
INSERT INTO `sys_logininfor` VALUES (462, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 14:48:44');
INSERT INTO `sys_logininfor` VALUES (463, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 15:08:17');
INSERT INTO `sys_logininfor` VALUES (464, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-30 15:17:24');
INSERT INTO `sys_logininfor` VALUES (465, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-30 15:38:08');
INSERT INTO `sys_logininfor` VALUES (466, '18008172471', '192.168.110.83', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-10-30 16:48:05');
INSERT INTO `sys_logininfor` VALUES (467, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 17:12:29');
INSERT INTO `sys_logininfor` VALUES (468, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2023-10-30 17:12:45');
INSERT INTO `sys_logininfor` VALUES (469, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2023-10-30 17:12:59');
INSERT INTO `sys_logininfor` VALUES (470, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-30 17:18:52');
INSERT INTO `sys_logininfor` VALUES (471, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 17:56:57');
INSERT INTO `sys_logininfor` VALUES (472, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-30 18:56:01');
INSERT INTO `sys_logininfor` VALUES (473, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-30 20:10:36');
INSERT INTO `sys_logininfor` VALUES (474, '18008172471', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-10-30 20:37:34');
INSERT INTO `sys_logininfor` VALUES (475, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 09:46:36');
INSERT INTO `sys_logininfor` VALUES (476, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-31 10:01:44');
INSERT INTO `sys_logininfor` VALUES (477, '18008172471', '192.168.110.83', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-10-31 10:30:37');
INSERT INTO `sys_logininfor` VALUES (478, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-31 10:43:58');
INSERT INTO `sys_logininfor` VALUES (479, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 10:44:22');
INSERT INTO `sys_logininfor` VALUES (480, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 14:08:17');
INSERT INTO `sys_logininfor` VALUES (481, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 14:19:25');
INSERT INTO `sys_logininfor` VALUES (482, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 14:29:31');
INSERT INTO `sys_logininfor` VALUES (483, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 14:39:43');
INSERT INTO `sys_logininfor` VALUES (484, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 15:25:09');
INSERT INTO `sys_logininfor` VALUES (485, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-31 15:39:37');
INSERT INTO `sys_logininfor` VALUES (486, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-10-31 15:40:59');
INSERT INTO `sys_logininfor` VALUES (487, '18008172471', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-31 17:15:38');
INSERT INTO `sys_logininfor` VALUES (488, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-10-31 17:43:33');
INSERT INTO `sys_logininfor` VALUES (489, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-10-31 18:05:10');
INSERT INTO `sys_logininfor` VALUES (490, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 08:54:33');
INSERT INTO `sys_logininfor` VALUES (491, '18008172471', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 09:06:34');
INSERT INTO `sys_logininfor` VALUES (492, '13404089107', '127.0.0.1', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-11-01 09:32:14');
INSERT INTO `sys_logininfor` VALUES (493, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 09:41:07');
INSERT INTO `sys_logininfor` VALUES (494, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 09:45:47');
INSERT INTO `sys_logininfor` VALUES (495, 'admin', '192.168.110.10', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 09:56:44');
INSERT INTO `sys_logininfor` VALUES (496, '13198619869', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 10:38:37');
INSERT INTO `sys_logininfor` VALUES (497, '13404089107', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 11:25:50');
INSERT INTO `sys_logininfor` VALUES (498, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 11:36:59');
INSERT INTO `sys_logininfor` VALUES (499, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 14:02:38');
INSERT INTO `sys_logininfor` VALUES (500, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 14:03:16');
INSERT INTO `sys_logininfor` VALUES (501, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 14:11:49');
INSERT INTO `sys_logininfor` VALUES (502, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 14:19:03');
INSERT INTO `sys_logininfor` VALUES (503, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 15:41:38');
INSERT INTO `sys_logininfor` VALUES (504, '13404089107', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 15:46:04');
INSERT INTO `sys_logininfor` VALUES (505, '15983795014', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', 'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2023-11-01 15:57:41');
INSERT INTO `sys_logininfor` VALUES (506, '13404089107', '192.168.110.103', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 16:38:08');
INSERT INTO `sys_logininfor` VALUES (507, '13404089107', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 17:05:56');
INSERT INTO `sys_logininfor` VALUES (508, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 17:06:24');
INSERT INTO `sys_logininfor` VALUES (509, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 17:08:46');
INSERT INTO `sys_logininfor` VALUES (510, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-11-01 17:11:33');
INSERT INTO `sys_logininfor` VALUES (511, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-11-01 17:11:33');
INSERT INTO `sys_logininfor` VALUES (512, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 17:11:38');
INSERT INTO `sys_logininfor` VALUES (513, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 17:13:36');
INSERT INTO `sys_logininfor` VALUES (514, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 17:14:21');
INSERT INTO `sys_logininfor` VALUES (515, '13404089107', '127.0.0.1', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-11-01 17:23:59');
INSERT INTO `sys_logininfor` VALUES (516, '18008172471', '127.0.0.1', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-11-01 17:27:06');
INSERT INTO `sys_logininfor` VALUES (517, '13404089107', '127.0.0.1', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-11-01 17:29:08');
INSERT INTO `sys_logininfor` VALUES (518, '18008172471', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2023-11-01 17:31:42');
INSERT INTO `sys_logininfor` VALUES (519, '18008172471', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2023-11-01 17:34:12');
INSERT INTO `sys_logininfor` VALUES (520, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 17:47:43');
INSERT INTO `sys_logininfor` VALUES (521, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '1', '密码输入错误1次', '2023-11-01 17:51:29');
INSERT INTO `sys_logininfor` VALUES (522, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '1', '用户不存在/密码错误', '2023-11-01 17:51:29');
INSERT INTO `sys_logininfor` VALUES (523, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '1', '用户不存在/密码错误', '2023-11-01 17:51:46');
INSERT INTO `sys_logininfor` VALUES (524, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '1', '密码输入错误2次', '2023-11-01 17:51:46');
INSERT INTO `sys_logininfor` VALUES (525, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2023-11-01 17:51:51');
INSERT INTO `sys_logininfor` VALUES (526, '18008172471', '127.0.0.1', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-11-01 17:52:33');
INSERT INTO `sys_logininfor` VALUES (527, '18384278701', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 18:09:11');
INSERT INTO `sys_logininfor` VALUES (528, '18384278701', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 18:10:06');
INSERT INTO `sys_logininfor` VALUES (529, '18384278701', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-01 18:12:05');
INSERT INTO `sys_logininfor` VALUES (530, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 18:48:35');
INSERT INTO `sys_logininfor` VALUES (531, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 19:07:29');
INSERT INTO `sys_logininfor` VALUES (532, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 19:09:00');
INSERT INTO `sys_logininfor` VALUES (533, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-01 19:10:16');
INSERT INTO `sys_logininfor` VALUES (534, '13404089107', '127.0.0.1', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2023-11-01 19:41:15');
INSERT INTO `sys_logininfor` VALUES (535, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2023-11-02 06:28:03');
INSERT INTO `sys_logininfor` VALUES (536, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2023-11-02 08:33:08');
INSERT INTO `sys_logininfor` VALUES (537, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-02 08:53:31');
INSERT INTO `sys_logininfor` VALUES (538, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-02 08:55:28');
INSERT INTO `sys_logininfor` VALUES (539, '13404089107', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-02 09:03:48');
INSERT INTO `sys_logininfor` VALUES (540, '13404089107', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-02 11:31:29');
INSERT INTO `sys_logininfor` VALUES (541, '18384278701', '127.0.0.1', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2023-11-02 11:33:26');
INSERT INTO `sys_logininfor` VALUES (542, '13404089107', '127.0.0.1', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-11-02 14:07:25');
INSERT INTO `sys_logininfor` VALUES (543, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-02 14:34:00');
INSERT INTO `sys_logininfor` VALUES (544, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-03 09:56:11');
INSERT INTO `sys_logininfor` VALUES (545, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 10:00:46');
INSERT INTO `sys_logininfor` VALUES (546, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:33:05');
INSERT INTO `sys_logininfor` VALUES (547, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:35:32');
INSERT INTO `sys_logininfor` VALUES (548, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:35:41');
INSERT INTO `sys_logininfor` VALUES (549, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:35:53');
INSERT INTO `sys_logininfor` VALUES (550, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:36:21');
INSERT INTO `sys_logininfor` VALUES (551, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:37:05');
INSERT INTO `sys_logininfor` VALUES (552, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:40:43');
INSERT INTO `sys_logininfor` VALUES (553, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-22 11:42:04');
INSERT INTO `sys_logininfor` VALUES (554, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-23 09:09:55');
INSERT INTO `sys_logininfor` VALUES (555, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-24 09:56:22');
INSERT INTO `sys_logininfor` VALUES (556, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-24 14:02:28');
INSERT INTO `sys_logininfor` VALUES (557, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-11-25 09:09:57');
INSERT INTO `sys_logininfor` VALUES (558, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-11-25 09:09:57');
INSERT INTO `sys_logininfor` VALUES (559, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-25 09:10:05');
INSERT INTO `sys_logininfor` VALUES (560, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-25 14:07:05');
INSERT INTO `sys_logininfor` VALUES (561, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-25 19:12:52');
INSERT INTO `sys_logininfor` VALUES (562, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 08:47:37');
INSERT INTO `sys_logininfor` VALUES (563, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 09:53:54');
INSERT INTO `sys_logininfor` VALUES (564, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 09:54:27');
INSERT INTO `sys_logininfor` VALUES (565, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 09:54:31');
INSERT INTO `sys_logininfor` VALUES (566, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 09:54:55');
INSERT INTO `sys_logininfor` VALUES (567, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 09:55:24');
INSERT INTO `sys_logininfor` VALUES (568, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 09:55:59');
INSERT INTO `sys_logininfor` VALUES (569, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 10:05:17');
INSERT INTO `sys_logininfor` VALUES (570, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 10:25:26');
INSERT INTO `sys_logininfor` VALUES (571, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 10:30:33');
INSERT INTO `sys_logininfor` VALUES (572, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 11:24:12');
INSERT INTO `sys_logininfor` VALUES (573, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 11:37:47');
INSERT INTO `sys_logininfor` VALUES (574, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 11:47:42');
INSERT INTO `sys_logininfor` VALUES (575, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 14:06:26');
INSERT INTO `sys_logininfor` VALUES (576, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 17:01:47');
INSERT INTO `sys_logininfor` VALUES (577, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 17:03:10');
INSERT INTO `sys_logininfor` VALUES (578, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 17:04:05');
INSERT INTO `sys_logininfor` VALUES (579, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 17:33:23');
INSERT INTO `sys_logininfor` VALUES (580, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-27 17:34:26');
INSERT INTO `sys_logininfor` VALUES (581, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 09:16:17');
INSERT INTO `sys_logininfor` VALUES (582, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 09:23:57');
INSERT INTO `sys_logininfor` VALUES (583, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 09:34:29');
INSERT INTO `sys_logininfor` VALUES (584, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 14:01:39');
INSERT INTO `sys_logininfor` VALUES (585, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '1', '密码输入错误1次', '2023-11-28 15:15:45');
INSERT INTO `sys_logininfor` VALUES (586, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '1', '用户不存在/密码错误', '2023-11-28 15:15:45');
INSERT INTO `sys_logininfor` VALUES (587, 'admin', '192.168.110.103', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:16:03');
INSERT INTO `sys_logininfor` VALUES (588, 'admin', '192.168.110.35', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:16:54');
INSERT INTO `sys_logininfor` VALUES (589, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:17:10');
INSERT INTO `sys_logininfor` VALUES (590, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:33:42');
INSERT INTO `sys_logininfor` VALUES (591, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:35:26');
INSERT INTO `sys_logininfor` VALUES (592, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:39:02');
INSERT INTO `sys_logininfor` VALUES (593, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 15:42:37');
INSERT INTO `sys_logininfor` VALUES (594, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 17:20:26');
INSERT INTO `sys_logininfor` VALUES (595, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-28 17:26:37');
INSERT INTO `sys_logininfor` VALUES (596, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-29 08:55:19');
INSERT INTO `sys_logininfor` VALUES (597, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-29 09:45:59');
INSERT INTO `sys_logininfor` VALUES (598, 'admin', '192.168.110.91', '内网IP', 'Chrome 11', 'Windows 10', '0', '登录成功', '2023-11-29 11:18:15');
INSERT INTO `sys_logininfor` VALUES (599, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-20 15:42:07');
INSERT INTO `sys_logininfor` VALUES (600, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-20 15:42:26');
INSERT INTO `sys_logininfor` VALUES (601, 'admin', '192.168.110.29', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-20 15:42:51');
INSERT INTO `sys_logininfor` VALUES (602, 'admin ', '192.168.110.29', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-20 15:53:57');
INSERT INTO `sys_logininfor` VALUES (603, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 14:23:37');
INSERT INTO `sys_logininfor` VALUES (604, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 14:24:00');
INSERT INTO `sys_logininfor` VALUES (605, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 14:30:22');
INSERT INTO `sys_logininfor` VALUES (606, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 14:53:23');
INSERT INTO `sys_logininfor` VALUES (607, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 15:59:48');
INSERT INTO `sys_logininfor` VALUES (608, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 16:18:12');
INSERT INTO `sys_logininfor` VALUES (609, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-25 17:54:23');
INSERT INTO `sys_logininfor` VALUES (610, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:06:02');
INSERT INTO `sys_logininfor` VALUES (611, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:01');
INSERT INTO `sys_logininfor` VALUES (612, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:24');
INSERT INTO `sys_logininfor` VALUES (613, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:24');
INSERT INTO `sys_logininfor` VALUES (614, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:25');
INSERT INTO `sys_logininfor` VALUES (615, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:25');
INSERT INTO `sys_logininfor` VALUES (616, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:26');
INSERT INTO `sys_logininfor` VALUES (617, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:36');
INSERT INTO `sys_logininfor` VALUES (618, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:36');
INSERT INTO `sys_logininfor` VALUES (619, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:43');
INSERT INTO `sys_logininfor` VALUES (620, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:44');
INSERT INTO `sys_logininfor` VALUES (621, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:44');
INSERT INTO `sys_logininfor` VALUES (622, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:44');
INSERT INTO `sys_logininfor` VALUES (623, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:45');
INSERT INTO `sys_logininfor` VALUES (624, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:56');
INSERT INTO `sys_logininfor` VALUES (625, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:56');
INSERT INTO `sys_logininfor` VALUES (626, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:57');
INSERT INTO `sys_logininfor` VALUES (627, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:57');
INSERT INTO `sys_logininfor` VALUES (628, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:57');
INSERT INTO `sys_logininfor` VALUES (629, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:57');
INSERT INTO `sys_logininfor` VALUES (630, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:58');
INSERT INTO `sys_logininfor` VALUES (631, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:58');
INSERT INTO `sys_logininfor` VALUES (632, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:58');
INSERT INTO `sys_logininfor` VALUES (633, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:58');
INSERT INTO `sys_logininfor` VALUES (634, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:58');
INSERT INTO `sys_logininfor` VALUES (635, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:20:58');
INSERT INTO `sys_logininfor` VALUES (636, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:21:04');
INSERT INTO `sys_logininfor` VALUES (637, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:21:37');
INSERT INTO `sys_logininfor` VALUES (638, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:21:38');
INSERT INTO `sys_logininfor` VALUES (639, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:21:44');
INSERT INTO `sys_logininfor` VALUES (640, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:21:44');
INSERT INTO `sys_logininfor` VALUES (641, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:22:56');
INSERT INTO `sys_logininfor` VALUES (642, '18008172471', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:23:34');
INSERT INTO `sys_logininfor` VALUES (643, '18008172471', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 10:23:34');
INSERT INTO `sys_logininfor` VALUES (644, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:24:31');
INSERT INTO `sys_logininfor` VALUES (645, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:24:32');
INSERT INTO `sys_logininfor` VALUES (646, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:24:33');
INSERT INTO `sys_logininfor` VALUES (647, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:24:33');
INSERT INTO `sys_logininfor` VALUES (648, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:24:43');
INSERT INTO `sys_logininfor` VALUES (649, '18008172471', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2023-12-26 10:24:48');
INSERT INTO `sys_logininfor` VALUES (650, '18008172471', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:24:48');
INSERT INTO `sys_logininfor` VALUES (651, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:24:57');
INSERT INTO `sys_logininfor` VALUES (652, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:25:23');
INSERT INTO `sys_logininfor` VALUES (653, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:25:24');
INSERT INTO `sys_logininfor` VALUES (654, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 10:26:13');
INSERT INTO `sys_logininfor` VALUES (655, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:26:13');
INSERT INTO `sys_logininfor` VALUES (656, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2023-12-26 10:26:13');
INSERT INTO `sys_logininfor` VALUES (657, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:26:13');
INSERT INTO `sys_logininfor` VALUES (658, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误3次', '2023-12-26 10:26:13');
INSERT INTO `sys_logininfor` VALUES (659, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:26:13');
INSERT INTO `sys_logininfor` VALUES (660, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:26:31');
INSERT INTO `sys_logininfor` VALUES (661, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:27:03');
INSERT INTO `sys_logininfor` VALUES (662, 'ry', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:38:59');
INSERT INTO `sys_logininfor` VALUES (663, '18224358737', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:39:24');
INSERT INTO `sys_logininfor` VALUES (664, '18384278702', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:39:29');
INSERT INTO `sys_logininfor` VALUES (665, '18384278702', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 10:39:29');
INSERT INTO `sys_logininfor` VALUES (666, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 10:39:34');
INSERT INTO `sys_logininfor` VALUES (667, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:39:34');
INSERT INTO `sys_logininfor` VALUES (668, '18224358736', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户已封禁,请联系管理员', '2023-12-26 10:39:42');
INSERT INTO `sys_logininfor` VALUES (669, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:40:10');
INSERT INTO `sys_logininfor` VALUES (670, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:41:49');
INSERT INTO `sys_logininfor` VALUES (671, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:41:54');
INSERT INTO `sys_logininfor` VALUES (672, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 10:41:58');
INSERT INTO `sys_logininfor` VALUES (673, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:41:58');
INSERT INTO `sys_logininfor` VALUES (674, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 10:47:00');
INSERT INTO `sys_logininfor` VALUES (675, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2023-12-26 10:47:00');
INSERT INTO `sys_logininfor` VALUES (676, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 10:47:10');
INSERT INTO `sys_logininfor` VALUES (677, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 11:02:18');
INSERT INTO `sys_logininfor` VALUES (678, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 11:02:35');
INSERT INTO `sys_logininfor` VALUES (679, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 11:02:35');
INSERT INTO `sys_logininfor` VALUES (680, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 11:02:39');
INSERT INTO `sys_logininfor` VALUES (681, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 11:03:13');
INSERT INTO `sys_logininfor` VALUES (682, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 11:22:56');
INSERT INTO `sys_logininfor` VALUES (683, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 11:24:44');
INSERT INTO `sys_logininfor` VALUES (684, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 14:27:52');
INSERT INTO `sys_logininfor` VALUES (685, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 14:27:57');
INSERT INTO `sys_logininfor` VALUES (686, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 14:40:33');
INSERT INTO `sys_logininfor` VALUES (687, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 14:40:33');
INSERT INTO `sys_logininfor` VALUES (688, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 14:40:55');
INSERT INTO `sys_logininfor` VALUES (689, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 14:46:47');
INSERT INTO `sys_logininfor` VALUES (690, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 17:22:55');
INSERT INTO `sys_logininfor` VALUES (691, '18224358737', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 17:35:15');
INSERT INTO `sys_logininfor` VALUES (692, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-26 17:35:24');
INSERT INTO `sys_logininfor` VALUES (693, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-26 17:35:24');
INSERT INTO `sys_logininfor` VALUES (694, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 17:35:28');
INSERT INTO `sys_logininfor` VALUES (695, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:15:07');
INSERT INTO `sys_logininfor` VALUES (696, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:18:20');
INSERT INTO `sys_logininfor` VALUES (697, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:19:11');
INSERT INTO `sys_logininfor` VALUES (698, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:19:16');
INSERT INTO `sys_logininfor` VALUES (699, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:19:21');
INSERT INTO `sys_logininfor` VALUES (700, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户已封禁,请联系管理员', '2023-12-26 18:21:02');
INSERT INTO `sys_logininfor` VALUES (701, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:21:13');
INSERT INTO `sys_logininfor` VALUES (702, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户已封禁,请联系管理员', '2023-12-26 18:21:39');
INSERT INTO `sys_logininfor` VALUES (703, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:22:11');
INSERT INTO `sys_logininfor` VALUES (704, '18782688863', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:30:08');
INSERT INTO `sys_logininfor` VALUES (705, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:31:49');
INSERT INTO `sys_logininfor` VALUES (706, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-26 18:31:51');
INSERT INTO `sys_logininfor` VALUES (707, '18782688863', '192.168.110.188', '内网IP', 'Unknown', 'Unknown', '0', '登录成功', '2023-12-26 18:33:30');
INSERT INTO `sys_logininfor` VALUES (708, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户已封禁,请联系管理员', '2023-12-26 18:35:25');
INSERT INTO `sys_logininfor` VALUES (709, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-26 18:35:42');
INSERT INTO `sys_logininfor` VALUES (710, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 09:22:04');
INSERT INTO `sys_logininfor` VALUES (711, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 09:54:47');
INSERT INTO `sys_logininfor` VALUES (712, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 09:59:55');
INSERT INTO `sys_logininfor` VALUES (713, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 10:06:14');
INSERT INTO `sys_logininfor` VALUES (714, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-27 10:23:58');
INSERT INTO `sys_logininfor` VALUES (715, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-27 10:25:19');
INSERT INTO `sys_logininfor` VALUES (716, '15708178888', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-12-27 14:19:22');
INSERT INTO `sys_logininfor` VALUES (717, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-27 14:23:44');
INSERT INTO `sys_logininfor` VALUES (718, '18782688883', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-12-27 14:25:47');
INSERT INTO `sys_logininfor` VALUES (719, '18782688883', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-12-27 14:26:01');
INSERT INTO `sys_logininfor` VALUES (720, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-27 14:26:48');
INSERT INTO `sys_logininfor` VALUES (721, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-27 14:28:19');
INSERT INTO `sys_logininfor` VALUES (722, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 15:18:00');
INSERT INTO `sys_logininfor` VALUES (723, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 15:18:32');
INSERT INTO `sys_logininfor` VALUES (724, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-27 15:59:31');
INSERT INTO `sys_logininfor` VALUES (725, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-27 16:39:54');
INSERT INTO `sys_logininfor` VALUES (726, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-28 09:18:33');
INSERT INTO `sys_logininfor` VALUES (727, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 09:25:35');
INSERT INTO `sys_logininfor` VALUES (728, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 09:46:09');
INSERT INTO `sys_logininfor` VALUES (729, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-28 10:15:46');
INSERT INTO `sys_logininfor` VALUES (730, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 10:17:40');
INSERT INTO `sys_logininfor` VALUES (731, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 10:18:48');
INSERT INTO `sys_logininfor` VALUES (732, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 10:53:15');
INSERT INTO `sys_logininfor` VALUES (733, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 11:03:22');
INSERT INTO `sys_logininfor` VALUES (734, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-28 14:22:13');
INSERT INTO `sys_logininfor` VALUES (735, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 14:33:34');
INSERT INTO `sys_logininfor` VALUES (736, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 16:48:16');
INSERT INTO `sys_logininfor` VALUES (737, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 16:51:11');
INSERT INTO `sys_logininfor` VALUES (738, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2023-12-28 17:15:06');
INSERT INTO `sys_logininfor` VALUES (739, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2023-12-28 17:15:06');
INSERT INTO `sys_logininfor` VALUES (740, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 17:15:09');
INSERT INTO `sys_logininfor` VALUES (741, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 18:30:30');
INSERT INTO `sys_logininfor` VALUES (742, '18782688863', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 18:30:31');
INSERT INTO `sys_logininfor` VALUES (743, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-28 18:38:35');
INSERT INTO `sys_logininfor` VALUES (744, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-29 09:36:03');
INSERT INTO `sys_logininfor` VALUES (745, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-29 10:06:56');
INSERT INTO `sys_logininfor` VALUES (746, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-29 11:44:13');
INSERT INTO `sys_logininfor` VALUES (747, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-29 11:44:38');
INSERT INTO `sys_logininfor` VALUES (748, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-29 11:46:56');
INSERT INTO `sys_logininfor` VALUES (749, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-29 14:00:11');
INSERT INTO `sys_logininfor` VALUES (750, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2023-12-29 18:58:13');
INSERT INTO `sys_logininfor` VALUES (751, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-29 19:56:12');
INSERT INTO `sys_logininfor` VALUES (752, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误1次', '2023-12-29 20:22:38');
INSERT INTO `sys_logininfor` VALUES (753, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2023-12-29 20:22:38');
INSERT INTO `sys_logininfor` VALUES (754, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-29 20:22:44');
INSERT INTO `sys_logininfor` VALUES (755, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2023-12-29 20:32:30');
INSERT INTO `sys_logininfor` VALUES (756, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 09:22:16');
INSERT INTO `sys_logininfor` VALUES (757, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-02 09:22:16');
INSERT INTO `sys_logininfor` VALUES (758, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 09:22:21');
INSERT INTO `sys_logininfor` VALUES (759, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2024-01-02 09:22:21');
INSERT INTO `sys_logininfor` VALUES (760, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 09:22:32');
INSERT INTO `sys_logininfor` VALUES (761, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 09:23:16');
INSERT INTO `sys_logininfor` VALUES (762, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误1次', '2024-01-02 09:28:01');
INSERT INTO `sys_logininfor` VALUES (763, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-02 09:28:01');
INSERT INTO `sys_logininfor` VALUES (764, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 09:28:08');
INSERT INTO `sys_logininfor` VALUES (765, '18782688863', '192.168.110.10', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 09:54:37');
INSERT INTO `sys_logininfor` VALUES (766, 'admin ', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 10:36:27');
INSERT INTO `sys_logininfor` VALUES (767, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 10:43:39');
INSERT INTO `sys_logininfor` VALUES (768, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 10:45:57');
INSERT INTO `sys_logininfor` VALUES (769, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 10:48:10');
INSERT INTO `sys_logininfor` VALUES (770, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 11:47:52');
INSERT INTO `sys_logininfor` VALUES (771, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '* 必须填写', '2024-01-02 11:58:29');
INSERT INTO `sys_logininfor` VALUES (772, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 11:58:43');
INSERT INTO `sys_logininfor` VALUES (773, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-02 12:00:03');
INSERT INTO `sys_logininfor` VALUES (774, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 14:07:47');
INSERT INTO `sys_logininfor` VALUES (775, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 14:15:37');
INSERT INTO `sys_logininfor` VALUES (776, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 14:18:26');
INSERT INTO `sys_logininfor` VALUES (777, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '* 必须填写', '2024-01-02 14:19:09');
INSERT INTO `sys_logininfor` VALUES (778, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '* 必须填写', '2024-01-02 14:19:12');
INSERT INTO `sys_logininfor` VALUES (779, ' admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 14:20:28');
INSERT INTO `sys_logininfor` VALUES (780, ' admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 14:20:33');
INSERT INTO `sys_logininfor` VALUES (781, ' admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 14:20:39');
INSERT INTO `sys_logininfor` VALUES (782, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 14:20:50');
INSERT INTO `sys_logininfor` VALUES (783, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户已封禁,请联系管理员', '2024-01-02 14:25:26');
INSERT INTO `sys_logininfor` VALUES (784, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 14:25:32');
INSERT INTO `sys_logininfor` VALUES (785, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误1次', '2024-01-02 14:25:32');
INSERT INTO `sys_logininfor` VALUES (786, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 14:25:40');
INSERT INTO `sys_logininfor` VALUES (787, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误2次', '2024-01-02 14:25:40');
INSERT INTO `sys_logininfor` VALUES (788, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 14:27:06');
INSERT INTO `sys_logininfor` VALUES (789, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误3次', '2024-01-02 14:27:06');
INSERT INTO `sys_logininfor` VALUES (790, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误4次', '2024-01-02 14:27:45');
INSERT INTO `sys_logininfor` VALUES (791, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 14:27:45');
INSERT INTO `sys_logininfor` VALUES (792, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-02 14:28:51');
INSERT INTO `sys_logininfor` VALUES (793, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次', '2024-01-02 14:28:51');
INSERT INTO `sys_logininfor` VALUES (794, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-02 14:30:07');
INSERT INTO `sys_logininfor` VALUES (795, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-02 14:30:07');
INSERT INTO `sys_logininfor` VALUES (796, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-02 14:31:35');
INSERT INTO `sys_logininfor` VALUES (797, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 14:31:35');
INSERT INTO `sys_logininfor` VALUES (798, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 14:31:39');
INSERT INTO `sys_logininfor` VALUES (799, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-02 14:32:03');
INSERT INTO `sys_logininfor` VALUES (800, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-02 14:32:03');
INSERT INTO `sys_logininfor` VALUES (801, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-02 14:35:39');
INSERT INTO `sys_logininfor` VALUES (802, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-02 14:35:39');
INSERT INTO `sys_logininfor` VALUES (803, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-02 14:37:20');
INSERT INTO `sys_logininfor` VALUES (804, '15731511109', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 15:14:45');
INSERT INTO `sys_logininfor` VALUES (805, '15731511109', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 15:15:30');
INSERT INTO `sys_logininfor` VALUES (806, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 15:23:05');
INSERT INTO `sys_logininfor` VALUES (807, '18782688863', '192.168.110.29', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2024-01-02 15:25:46');
INSERT INTO `sys_logininfor` VALUES (808, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 15:54:04');
INSERT INTO `sys_logininfor` VALUES (809, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-02 15:57:48');
INSERT INTO `sys_logininfor` VALUES (810, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-02 17:10:32');
INSERT INTO `sys_logininfor` VALUES (811, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-02 17:11:42');
INSERT INTO `sys_logininfor` VALUES (812, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-02 17:11:42');
INSERT INTO `sys_logininfor` VALUES (813, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-02 17:11:48');
INSERT INTO `sys_logininfor` VALUES (814, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 09:12:43');
INSERT INTO `sys_logininfor` VALUES (815, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 09:15:08');
INSERT INTO `sys_logininfor` VALUES (816, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 09:23:41');
INSERT INTO `sys_logininfor` VALUES (817, '18782688863', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-03 09:38:45');
INSERT INTO `sys_logininfor` VALUES (818, '18782688863', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-03 09:38:45');
INSERT INTO `sys_logininfor` VALUES (819, '18782688863', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 09:49:44');
INSERT INTO `sys_logininfor` VALUES (820, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:04:34');
INSERT INTO `sys_logininfor` VALUES (821, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:16:54');
INSERT INTO `sys_logininfor` VALUES (822, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:17:13');
INSERT INTO `sys_logininfor` VALUES (823, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:18:39');
INSERT INTO `sys_logininfor` VALUES (824, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 10:41:08');
INSERT INTO `sys_logininfor` VALUES (825, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:43:20');
INSERT INTO `sys_logininfor` VALUES (826, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 10:45:46');
INSERT INTO `sys_logininfor` VALUES (827, '18782688863', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 10:51:14');
INSERT INTO `sys_logininfor` VALUES (828, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 10:55:20');
INSERT INTO `sys_logininfor` VALUES (829, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:56:53');
INSERT INTO `sys_logininfor` VALUES (830, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 10:59:17');
INSERT INTO `sys_logininfor` VALUES (831, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 11:40:09');
INSERT INTO `sys_logininfor` VALUES (832, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 11:53:40');
INSERT INTO `sys_logininfor` VALUES (833, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 14:06:41');
INSERT INTO `sys_logininfor` VALUES (834, '18782688863', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 14:09:41');
INSERT INTO `sys_logininfor` VALUES (835, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 14:15:10');
INSERT INTO `sys_logininfor` VALUES (836, '18782688863', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 14:31:19');
INSERT INTO `sys_logininfor` VALUES (837, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 14:31:41');
INSERT INTO `sys_logininfor` VALUES (838, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 14:39:23');
INSERT INTO `sys_logininfor` VALUES (839, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-03 14:42:14');
INSERT INTO `sys_logininfor` VALUES (840, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误1次', '2024-01-03 14:42:14');
INSERT INTO `sys_logininfor` VALUES (841, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 14:42:19');
INSERT INTO `sys_logininfor` VALUES (842, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 14:56:41');
INSERT INTO `sys_logininfor` VALUES (843, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 15:25:26');
INSERT INTO `sys_logininfor` VALUES (844, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-03 15:27:05');
INSERT INTO `sys_logininfor` VALUES (845, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 15:27:54');
INSERT INTO `sys_logininfor` VALUES (846, '15731511109', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 15:30:22');
INSERT INTO `sys_logininfor` VALUES (847, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 15:31:40');
INSERT INTO `sys_logininfor` VALUES (848, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 16:10:48');
INSERT INTO `sys_logininfor` VALUES (849, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 16:43:23');
INSERT INTO `sys_logininfor` VALUES (850, '15731511109', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-03 17:03:41');
INSERT INTO `sys_logininfor` VALUES (851, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-03 17:23:39');
INSERT INTO `sys_logininfor` VALUES (852, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 09:08:57');
INSERT INTO `sys_logininfor` VALUES (853, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 09:09:57');
INSERT INTO `sys_logininfor` VALUES (854, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 09:26:11');
INSERT INTO `sys_logininfor` VALUES (855, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 09:29:48');
INSERT INTO `sys_logininfor` VALUES (856, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 09:32:43');
INSERT INTO `sys_logininfor` VALUES (857, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-04 09:39:33');
INSERT INTO `sys_logininfor` VALUES (858, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-04 09:39:33');
INSERT INTO `sys_logininfor` VALUES (859, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 09:39:37');
INSERT INTO `sys_logininfor` VALUES (860, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 09:45:47');
INSERT INTO `sys_logininfor` VALUES (861, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 09:56:24');
INSERT INTO `sys_logininfor` VALUES (862, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 09:56:28');
INSERT INTO `sys_logininfor` VALUES (863, '15731511109', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 10:28:32');
INSERT INTO `sys_logininfor` VALUES (864, '15983498664', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 10:44:53');
INSERT INTO `sys_logininfor` VALUES (865, '15983498664', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 10:47:59');
INSERT INTO `sys_logininfor` VALUES (866, '15173151110', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-04 10:53:14');
INSERT INTO `sys_logininfor` VALUES (867, '15731511109', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 10:53:28');
INSERT INTO `sys_logininfor` VALUES (868, '15983498664', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户已封禁,请联系管理员', '2024-01-04 10:53:56');
INSERT INTO `sys_logininfor` VALUES (869, '15983498664', '192.168.110.4', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 10:54:05');
INSERT INTO `sys_logininfor` VALUES (870, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 11:44:26');
INSERT INTO `sys_logininfor` VALUES (871, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 11:46:40');
INSERT INTO `sys_logininfor` VALUES (872, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 11:51:12');
INSERT INTO `sys_logininfor` VALUES (873, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 13:52:40');
INSERT INTO `sys_logininfor` VALUES (874, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 14:11:24');
INSERT INTO `sys_logininfor` VALUES (875, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 14:25:27');
INSERT INTO `sys_logininfor` VALUES (876, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 14:28:40');
INSERT INTO `sys_logininfor` VALUES (877, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 14:34:56');
INSERT INTO `sys_logininfor` VALUES (878, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户已封禁,请联系管理员', '2024-01-04 14:37:08');
INSERT INTO `sys_logininfor` VALUES (879, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户已封禁,请联系管理员', '2024-01-04 14:37:11');
INSERT INTO `sys_logininfor` VALUES (880, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 14:37:47');
INSERT INTO `sys_logininfor` VALUES (881, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户已封禁,请联系管理员', '2024-01-04 14:38:46');
INSERT INTO `sys_logininfor` VALUES (882, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户已封禁,请联系管理员', '2024-01-04 14:41:23');
INSERT INTO `sys_logininfor` VALUES (883, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 14:41:35');
INSERT INTO `sys_logininfor` VALUES (884, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 14:43:18');
INSERT INTO `sys_logininfor` VALUES (885, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 14:56:33');
INSERT INTO `sys_logininfor` VALUES (886, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-04 16:18:03');
INSERT INTO `sys_logininfor` VALUES (887, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 17:41:22');
INSERT INTO `sys_logininfor` VALUES (888, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-04 17:47:37');
INSERT INTO `sys_logininfor` VALUES (889, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-04 17:47:37');
INSERT INTO `sys_logininfor` VALUES (890, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2024-01-04 17:47:40');
INSERT INTO `sys_logininfor` VALUES (891, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-04 17:47:40');
INSERT INTO `sys_logininfor` VALUES (892, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 17:47:44');
INSERT INTO `sys_logininfor` VALUES (893, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 17:47:57');
INSERT INTO `sys_logininfor` VALUES (894, 'admin', '192.168.110.103', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-04 17:48:12');
INSERT INTO `sys_logininfor` VALUES (895, 'admin', '192.168.110.103', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-04 17:48:12');
INSERT INTO `sys_logininfor` VALUES (896, 'admin', '192.168.110.103', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-04 17:48:17');
INSERT INTO `sys_logininfor` VALUES (897, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-04 17:56:12');
INSERT INTO `sys_logininfor` VALUES (898, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 09:03:54');
INSERT INTO `sys_logininfor` VALUES (899, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户已封禁,请联系管理员', '2024-01-05 09:20:33');
INSERT INTO `sys_logininfor` VALUES (900, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 09:20:50');
INSERT INTO `sys_logininfor` VALUES (901, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-05 09:21:02');
INSERT INTO `sys_logininfor` VALUES (902, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-05 09:21:19');
INSERT INTO `sys_logininfor` VALUES (903, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-05 09:22:45');
INSERT INTO `sys_logininfor` VALUES (904, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 09:34:22');
INSERT INTO `sys_logininfor` VALUES (905, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 09:37:44');
INSERT INTO `sys_logininfor` VALUES (906, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误1次', '2024-01-05 09:38:11');
INSERT INTO `sys_logininfor` VALUES (907, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 09:38:11');
INSERT INTO `sys_logininfor` VALUES (908, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 09:38:18');
INSERT INTO `sys_logininfor` VALUES (909, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误2次', '2024-01-05 09:38:18');
INSERT INTO `sys_logininfor` VALUES (910, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误3次', '2024-01-05 09:38:27');
INSERT INTO `sys_logininfor` VALUES (911, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 09:38:27');
INSERT INTO `sys_logininfor` VALUES (912, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 09:39:00');
INSERT INTO `sys_logininfor` VALUES (913, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误4次', '2024-01-05 09:39:00');
INSERT INTO `sys_logininfor` VALUES (914, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户已封禁,请联系管理员', '2024-01-05 09:58:05');
INSERT INTO `sys_logininfor` VALUES (915, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 09:58:12');
INSERT INTO `sys_logininfor` VALUES (916, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 10:21:09');
INSERT INTO `sys_logininfor` VALUES (917, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 10:23:12');
INSERT INTO `sys_logininfor` VALUES (918, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 10:25:29');
INSERT INTO `sys_logininfor` VALUES (919, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误1次', '2024-01-05 10:29:56');
INSERT INTO `sys_logininfor` VALUES (920, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 10:29:56');
INSERT INTO `sys_logininfor` VALUES (921, '15983498664', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-05 10:30:04');
INSERT INTO `sys_logininfor` VALUES (922, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:06:31');
INSERT INTO `sys_logininfor` VALUES (923, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:06:42');
INSERT INTO `sys_logininfor` VALUES (924, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:07:11');
INSERT INTO `sys_logininfor` VALUES (925, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:15:21');
INSERT INTO `sys_logininfor` VALUES (926, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '密码输入错误1次', '2024-01-05 11:19:21');
INSERT INTO `sys_logininfor` VALUES (927, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '1', '用户不存在/密码错误', '2024-01-05 11:19:21');
INSERT INTO `sys_logininfor` VALUES (928, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-05 11:19:52');
INSERT INTO `sys_logininfor` VALUES (929, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:28:37');
INSERT INTO `sys_logininfor` VALUES (930, '13288888888', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户已封禁,请联系管理员', '2024-01-05 11:39:48');
INSERT INTO `sys_logininfor` VALUES (931, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:40:08');
INSERT INTO `sys_logininfor` VALUES (932, 'admin', '127.0.0.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:40:16');
INSERT INTO `sys_logininfor` VALUES (933, '13288888888', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户已封禁,请联系管理员', '2024-01-05 11:40:28');
INSERT INTO `sys_logininfor` VALUES (934, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:40:35');
INSERT INTO `sys_logininfor` VALUES (935, '13288888888', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 11:40:57');
INSERT INTO `sys_logininfor` VALUES (936, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 14:01:59');
INSERT INTO `sys_logininfor` VALUES (937, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 14:03:08');
INSERT INTO `sys_logininfor` VALUES (938, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-05 14:44:51');
INSERT INTO `sys_logininfor` VALUES (939, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-05 14:44:51');
INSERT INTO `sys_logininfor` VALUES (940, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 14:44:53');
INSERT INTO `sys_logininfor` VALUES (941, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 14:44:59');
INSERT INTO `sys_logininfor` VALUES (942, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 15:07:31');
INSERT INTO `sys_logininfor` VALUES (943, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 15:07:50');
INSERT INTO `sys_logininfor` VALUES (944, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-05 15:15:27');
INSERT INTO `sys_logininfor` VALUES (945, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-05 15:36:25');
INSERT INTO `sys_logininfor` VALUES (946, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-05 15:36:25');
INSERT INTO `sys_logininfor` VALUES (947, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 15:36:29');
INSERT INTO `sys_logininfor` VALUES (948, '18782688863', '192.168.110.29', '内网IP', 'Apple WebKit', 'Mac OS X (iPhone)', '0', '登录成功', '2024-01-05 16:38:31');
INSERT INTO `sys_logininfor` VALUES (949, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 17:14:06');
INSERT INTO `sys_logininfor` VALUES (950, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 17:19:04');
INSERT INTO `sys_logininfor` VALUES (951, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 17:49:23');
INSERT INTO `sys_logininfor` VALUES (952, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-05 18:13:03');
INSERT INTO `sys_logininfor` VALUES (953, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-05 18:13:03');
INSERT INTO `sys_logininfor` VALUES (954, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-05 18:13:10');
INSERT INTO `sys_logininfor` VALUES (955, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:01:20');
INSERT INTO `sys_logininfor` VALUES (956, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:05:12');
INSERT INTO `sys_logininfor` VALUES (957, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:07:28');
INSERT INTO `sys_logininfor` VALUES (958, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:22:12');
INSERT INTO `sys_logininfor` VALUES (959, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:25:12');
INSERT INTO `sys_logininfor` VALUES (960, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:26:44');
INSERT INTO `sys_logininfor` VALUES (961, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:27:03');
INSERT INTO `sys_logininfor` VALUES (962, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:27:13');
INSERT INTO `sys_logininfor` VALUES (963, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:28:15');
INSERT INTO `sys_logininfor` VALUES (964, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:29:47');
INSERT INTO `sys_logininfor` VALUES (965, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:30:35');
INSERT INTO `sys_logininfor` VALUES (966, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-08 09:31:31');
INSERT INTO `sys_logininfor` VALUES (967, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-08 09:31:31');
INSERT INTO `sys_logininfor` VALUES (968, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-08 09:31:38');
INSERT INTO `sys_logininfor` VALUES (969, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2024-01-08 09:31:38');
INSERT INTO `sys_logininfor` VALUES (970, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误3次', '2024-01-08 09:31:47');
INSERT INTO `sys_logininfor` VALUES (971, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-08 09:31:47');
INSERT INTO `sys_logininfor` VALUES (972, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:32:03');
INSERT INTO `sys_logininfor` VALUES (973, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:32:46');
INSERT INTO `sys_logininfor` VALUES (974, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:36:32');
INSERT INTO `sys_logininfor` VALUES (975, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:37:13');
INSERT INTO `sys_logininfor` VALUES (976, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:37:49');
INSERT INTO `sys_logininfor` VALUES (977, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:45:14');
INSERT INTO `sys_logininfor` VALUES (978, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-08 09:46:22');
INSERT INTO `sys_logininfor` VALUES (979, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:46:23');
INSERT INTO `sys_logininfor` VALUES (980, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:46:53');
INSERT INTO `sys_logininfor` VALUES (981, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-08 09:47:15');
INSERT INTO `sys_logininfor` VALUES (982, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-08 09:47:15');
INSERT INTO `sys_logininfor` VALUES (983, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:47:22');
INSERT INTO `sys_logininfor` VALUES (984, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:47:52');
INSERT INTO `sys_logininfor` VALUES (985, '18224358736 ', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:53:12');
INSERT INTO `sys_logininfor` VALUES (986, '18224358736 ', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 09:53:54');
INSERT INTO `sys_logininfor` VALUES (987, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:09:09');
INSERT INTO `sys_logininfor` VALUES (988, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:09:17');
INSERT INTO `sys_logininfor` VALUES (989, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:09:31');
INSERT INTO `sys_logininfor` VALUES (990, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:11:27');
INSERT INTO `sys_logininfor` VALUES (991, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:19:03');
INSERT INTO `sys_logininfor` VALUES (992, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:22:41');
INSERT INTO `sys_logininfor` VALUES (993, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:24:51');
INSERT INTO `sys_logininfor` VALUES (994, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 10:25:22');
INSERT INTO `sys_logininfor` VALUES (995, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-08 10:54:55');
INSERT INTO `sys_logininfor` VALUES (996, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-08 11:24:37');
INSERT INTO `sys_logininfor` VALUES (997, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-08 11:46:38');
INSERT INTO `sys_logininfor` VALUES (998, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-08 11:47:11');
INSERT INTO `sys_logininfor` VALUES (999, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-08 11:53:38');
INSERT INTO `sys_logininfor` VALUES (1000, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 14:04:25');
INSERT INTO `sys_logininfor` VALUES (1001, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-08 14:39:57');
INSERT INTO `sys_logininfor` VALUES (1002, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 14:47:35');
INSERT INTO `sys_logininfor` VALUES (1003, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-08 15:13:26');
INSERT INTO `sys_logininfor` VALUES (1004, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-08 16:49:53');
INSERT INTO `sys_logininfor` VALUES (1005, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-09 09:15:41');
INSERT INTO `sys_logininfor` VALUES (1006, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-09 09:26:10');
INSERT INTO `sys_logininfor` VALUES (1007, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-09 10:00:32');
INSERT INTO `sys_logininfor` VALUES (1008, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-09 10:21:15');
INSERT INTO `sys_logininfor` VALUES (1009, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-09 10:21:15');
INSERT INTO `sys_logininfor` VALUES (1010, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-09 10:21:22');
INSERT INTO `sys_logininfor` VALUES (1011, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误2次', '2024-01-09 10:21:22');
INSERT INTO `sys_logininfor` VALUES (1012, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-09 10:21:25');
INSERT INTO `sys_logininfor` VALUES (1013, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-09 10:25:45');
INSERT INTO `sys_logininfor` VALUES (1014, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-09 14:49:13');
INSERT INTO `sys_logininfor` VALUES (1015, '15682260585', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-09 15:01:33');
INSERT INTO `sys_logininfor` VALUES (1016, '15682260585', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误1次', '2024-01-09 15:01:33');
INSERT INTO `sys_logininfor` VALUES (1017, '15682260585', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-09 15:01:41');
INSERT INTO `sys_logininfor` VALUES (1018, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-09 16:58:19');
INSERT INTO `sys_logininfor` VALUES (1019, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-10 09:09:31');
INSERT INTO `sys_logininfor` VALUES (1020, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-10 09:26:22');
INSERT INTO `sys_logininfor` VALUES (1021, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-10 09:27:49');
INSERT INTO `sys_logininfor` VALUES (1022, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 09:31:34');
INSERT INTO `sys_logininfor` VALUES (1023, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-10 10:14:27');
INSERT INTO `sys_logininfor` VALUES (1024, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-10 10:20:43');
INSERT INTO `sys_logininfor` VALUES (1025, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-10 10:45:42');
INSERT INTO `sys_logininfor` VALUES (1026, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 12:00:36');
INSERT INTO `sys_logininfor` VALUES (1027, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 14:10:03');
INSERT INTO `sys_logininfor` VALUES (1028, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-10 14:35:32');
INSERT INTO `sys_logininfor` VALUES (1029, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 15:01:29');
INSERT INTO `sys_logininfor` VALUES (1030, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 15:11:52');
INSERT INTO `sys_logininfor` VALUES (1031, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 17:18:59');
INSERT INTO `sys_logininfor` VALUES (1032, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 17:20:10');
INSERT INTO `sys_logininfor` VALUES (1033, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-10 17:43:57');
INSERT INTO `sys_logininfor` VALUES (1034, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:11:54');
INSERT INTO `sys_logininfor` VALUES (1035, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:18:36');
INSERT INTO `sys_logininfor` VALUES (1036, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:18:54');
INSERT INTO `sys_logininfor` VALUES (1037, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:19:10');
INSERT INTO `sys_logininfor` VALUES (1038, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:20:16');
INSERT INTO `sys_logininfor` VALUES (1039, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:21:41');
INSERT INTO `sys_logininfor` VALUES (1040, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-10 18:21:44');
INSERT INTO `sys_logininfor` VALUES (1041, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 09:01:11');
INSERT INTO `sys_logininfor` VALUES (1042, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 09:03:31');
INSERT INTO `sys_logininfor` VALUES (1043, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 09:09:32');
INSERT INTO `sys_logininfor` VALUES (1044, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 09:11:06');
INSERT INTO `sys_logininfor` VALUES (1045, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:15:25');
INSERT INTO `sys_logininfor` VALUES (1046, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:18:35');
INSERT INTO `sys_logininfor` VALUES (1047, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:19:42');
INSERT INTO `sys_logininfor` VALUES (1048, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 09:23:27');
INSERT INTO `sys_logininfor` VALUES (1049, 'admin', '192.168.110.29', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 09:29:58');
INSERT INTO `sys_logininfor` VALUES (1050, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 09:32:18');
INSERT INTO `sys_logininfor` VALUES (1051, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 09:37:28');
INSERT INTO `sys_logininfor` VALUES (1052, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:40:56');
INSERT INTO `sys_logininfor` VALUES (1053, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:43:48');
INSERT INTO `sys_logininfor` VALUES (1054, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:45:10');
INSERT INTO `sys_logininfor` VALUES (1055, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 09:48:10');
INSERT INTO `sys_logininfor` VALUES (1056, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 10:24:05');
INSERT INTO `sys_logininfor` VALUES (1057, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 11:15:01');
INSERT INTO `sys_logininfor` VALUES (1058, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 11:41:35');
INSERT INTO `sys_logininfor` VALUES (1059, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 11:43:31');
INSERT INTO `sys_logininfor` VALUES (1060, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 11:43:41');
INSERT INTO `sys_logininfor` VALUES (1061, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 11:50:10');
INSERT INTO `sys_logininfor` VALUES (1062, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 11:54:17');
INSERT INTO `sys_logininfor` VALUES (1063, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 13:55:52');
INSERT INTO `sys_logininfor` VALUES (1064, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 14:03:00');
INSERT INTO `sys_logininfor` VALUES (1065, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 14:03:37');
INSERT INTO `sys_logininfor` VALUES (1066, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 14:05:13');
INSERT INTO `sys_logininfor` VALUES (1067, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 14:40:59');
INSERT INTO `sys_logininfor` VALUES (1068, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 15:02:27');
INSERT INTO `sys_logininfor` VALUES (1069, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 15:45:35');
INSERT INTO `sys_logininfor` VALUES (1070, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 15:53:19');
INSERT INTO `sys_logininfor` VALUES (1071, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 15:54:03');
INSERT INTO `sys_logininfor` VALUES (1072, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 16:04:39');
INSERT INTO `sys_logininfor` VALUES (1073, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误1次', '2024-01-11 17:37:33');
INSERT INTO `sys_logininfor` VALUES (1074, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:37:33');
INSERT INTO `sys_logininfor` VALUES (1075, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误2次', '2024-01-11 17:37:37');
INSERT INTO `sys_logininfor` VALUES (1076, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:37:37');
INSERT INTO `sys_logininfor` VALUES (1077, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误3次', '2024-01-11 17:37:49');
INSERT INTO `sys_logininfor` VALUES (1078, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:37:49');
INSERT INTO `sys_logininfor` VALUES (1079, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:38:17');
INSERT INTO `sys_logininfor` VALUES (1080, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误4次', '2024-01-11 17:38:17');
INSERT INTO `sys_logininfor` VALUES (1081, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:38:20');
INSERT INTO `sys_logininfor` VALUES (1082, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误5次', '2024-01-11 17:38:20');
INSERT INTO `sys_logininfor` VALUES (1083, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-11 17:38:26');
INSERT INTO `sys_logininfor` VALUES (1084, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误5次,帐户锁定10分钟', '2024-01-11 17:38:26');
INSERT INTO `sys_logininfor` VALUES (1085, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:38:51');
INSERT INTO `sys_logininfor` VALUES (1086, '18224358736', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误1次', '2024-01-11 17:38:53');
INSERT INTO `sys_logininfor` VALUES (1087, '18224358736', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:38:53');
INSERT INTO `sys_logininfor` VALUES (1088, '18224358736', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误2次', '2024-01-11 17:38:58');
INSERT INTO `sys_logininfor` VALUES (1089, '18224358736', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-11 17:38:58');
INSERT INTO `sys_logininfor` VALUES (1090, '18224358736', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-11 17:39:10');
INSERT INTO `sys_logininfor` VALUES (1091, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:46:43');
INSERT INTO `sys_logininfor` VALUES (1092, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:46:47');
INSERT INTO `sys_logininfor` VALUES (1093, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:47:00');
INSERT INTO `sys_logininfor` VALUES (1094, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:47:32');
INSERT INTO `sys_logininfor` VALUES (1095, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:49:20');
INSERT INTO `sys_logininfor` VALUES (1096, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:49:36');
INSERT INTO `sys_logininfor` VALUES (1097, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:50:04');
INSERT INTO `sys_logininfor` VALUES (1098, '18224358736', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:50:35');
INSERT INTO `sys_logininfor` VALUES (1099, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-11 17:55:08');
INSERT INTO `sys_logininfor` VALUES (1100, '15102879064', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-11 17:59:27');
INSERT INTO `sys_logininfor` VALUES (1101, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 08:55:03');
INSERT INTO `sys_logininfor` VALUES (1102, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-01-12 09:00:35');
INSERT INTO `sys_logininfor` VALUES (1103, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-01-12 09:00:35');
INSERT INTO `sys_logininfor` VALUES (1104, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:00:40');
INSERT INTO `sys_logininfor` VALUES (1105, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:02:09');
INSERT INTO `sys_logininfor` VALUES (1106, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-12 09:21:52');
INSERT INTO `sys_logininfor` VALUES (1107, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-12 09:21:56');
INSERT INTO `sys_logininfor` VALUES (1108, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-12 09:22:21');
INSERT INTO `sys_logininfor` VALUES (1109, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-12 09:27:41');
INSERT INTO `sys_logininfor` VALUES (1110, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:46:12');
INSERT INTO `sys_logininfor` VALUES (1111, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:46:49');
INSERT INTO `sys_logininfor` VALUES (1112, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:47:21');
INSERT INTO `sys_logininfor` VALUES (1113, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:47:45');
INSERT INTO `sys_logininfor` VALUES (1114, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 09:58:56');
INSERT INTO `sys_logininfor` VALUES (1115, 'admin', '192.168.110.106', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 10:34:09');
INSERT INTO `sys_logininfor` VALUES (1116, '18782688863', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-12 11:55:35');
INSERT INTO `sys_logininfor` VALUES (1117, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 14:05:45');
INSERT INTO `sys_logininfor` VALUES (1118, '18782688863', '192.168.110.22', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-12 14:12:02');
INSERT INTO `sys_logininfor` VALUES (1119, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 14:12:29');
INSERT INTO `sys_logininfor` VALUES (1120, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 14:15:25');
INSERT INTO `sys_logininfor` VALUES (1121, '15731511109', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-12 15:24:59');
INSERT INTO `sys_logininfor` VALUES (1122, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-12 16:21:39');
INSERT INTO `sys_logininfor` VALUES (1123, '15731511109', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-12 16:22:13');
INSERT INTO `sys_logininfor` VALUES (1124, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 16:31:50');
INSERT INTO `sys_logininfor` VALUES (1125, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 17:38:30');
INSERT INTO `sys_logininfor` VALUES (1126, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 17:39:19');
INSERT INTO `sys_logininfor` VALUES (1127, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 17:39:52');
INSERT INTO `sys_logininfor` VALUES (1128, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 17:42:03');
INSERT INTO `sys_logininfor` VALUES (1129, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:07:39');
INSERT INTO `sys_logininfor` VALUES (1130, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:08:05');
INSERT INTO `sys_logininfor` VALUES (1131, '18782688863', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:08:39');
INSERT INTO `sys_logininfor` VALUES (1132, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:10:01');
INSERT INTO `sys_logininfor` VALUES (1133, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:11:28');
INSERT INTO `sys_logininfor` VALUES (1134, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:11:35');
INSERT INTO `sys_logininfor` VALUES (1135, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:11:57');
INSERT INTO `sys_logininfor` VALUES (1136, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:22:02');
INSERT INTO `sys_logininfor` VALUES (1137, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:22:49');
INSERT INTO `sys_logininfor` VALUES (1138, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:23:28');
INSERT INTO `sys_logininfor` VALUES (1139, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:23:44');
INSERT INTO `sys_logininfor` VALUES (1140, '15731511109', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-12 18:24:15');
INSERT INTO `sys_logininfor` VALUES (1141, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-12 18:34:50');
INSERT INTO `sys_logininfor` VALUES (1142, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-15 08:36:44');
INSERT INTO `sys_logininfor` VALUES (1143, '18782688863', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-15 08:42:09');
INSERT INTO `sys_logininfor` VALUES (1144, '15731511109', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-15 09:08:29');
INSERT INTO `sys_logininfor` VALUES (1145, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-15 09:20:49');
INSERT INTO `sys_logininfor` VALUES (1146, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-15 15:25:50');
INSERT INTO `sys_logininfor` VALUES (1147, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-15 15:27:22');
INSERT INTO `sys_logininfor` VALUES (1148, '17780483325', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-15 15:29:08');
INSERT INTO `sys_logininfor` VALUES (1149, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-15 15:51:45');
INSERT INTO `sys_logininfor` VALUES (1150, NULL, '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '* 必须填写', '2024-01-15 18:14:55');
INSERT INTO `sys_logininfor` VALUES (1151, NULL, '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '* 必须填写', '2024-01-15 18:17:27');
INSERT INTO `sys_logininfor` VALUES (1152, NULL, '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '1', '* 必须填写', '2024-01-15 18:17:42');
INSERT INTO `sys_logininfor` VALUES (1153, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-15 18:18:20');
INSERT INTO `sys_logininfor` VALUES (1154, '18224358736', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-15 18:18:58');
INSERT INTO `sys_logininfor` VALUES (1155, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-16 11:44:44');
INSERT INTO `sys_logininfor` VALUES (1156, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 11:52:01');
INSERT INTO `sys_logininfor` VALUES (1157, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 11:54:47');
INSERT INTO `sys_logininfor` VALUES (1158, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 11:58:47');
INSERT INTO `sys_logininfor` VALUES (1159, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 11:59:09');
INSERT INTO `sys_logininfor` VALUES (1160, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 11:59:15');
INSERT INTO `sys_logininfor` VALUES (1161, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-16 14:02:58');
INSERT INTO `sys_logininfor` VALUES (1162, NULL, '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 14:14:18');
INSERT INTO `sys_logininfor` VALUES (1163, NULL, '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 14:15:01');
INSERT INTO `sys_logininfor` VALUES (1164, NULL, '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 14:15:37');
INSERT INTO `sys_logininfor` VALUES (1165, NULL, '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '* 必须填写', '2024-01-16 14:18:47');
INSERT INTO `sys_logininfor` VALUES (1166, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-16 14:20:08');
INSERT INTO `sys_logininfor` VALUES (1167, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误1次', '2024-01-16 14:20:08');
INSERT INTO `sys_logininfor` VALUES (1168, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误2次', '2024-01-16 14:24:33');
INSERT INTO `sys_logininfor` VALUES (1169, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-16 14:24:33');
INSERT INTO `sys_logininfor` VALUES (1170, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '用户不存在/密码错误', '2024-01-16 14:24:44');
INSERT INTO `sys_logininfor` VALUES (1171, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '1', '密码输入错误3次', '2024-01-16 14:24:44');
INSERT INTO `sys_logininfor` VALUES (1172, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-16 14:35:33');
INSERT INTO `sys_logininfor` VALUES (1173, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-16 14:37:35');
INSERT INTO `sys_logininfor` VALUES (1174, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-16 14:38:11');
INSERT INTO `sys_logininfor` VALUES (1175, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-16 14:38:37');
INSERT INTO `sys_logininfor` VALUES (1176, '18224358736', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-01-16 14:42:05');
INSERT INTO `sys_logininfor` VALUES (1177, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-16 14:57:38');
INSERT INTO `sys_logininfor` VALUES (1178, '17780483321', '192.168.110.8', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-01-16 15:29:38');
INSERT INTO `sys_logininfor` VALUES (1179, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-16 18:05:27');
INSERT INTO `sys_logininfor` VALUES (1180, 'admin', '192.168.110.34', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-16 18:15:50');
INSERT INTO `sys_logininfor` VALUES (1181, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-29 17:30:55');
INSERT INTO `sys_logininfor` VALUES (1182, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-29 17:33:38');
INSERT INTO `sys_logininfor` VALUES (1183, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-29 17:34:11');
INSERT INTO `sys_logininfor` VALUES (1184, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-29 17:34:18');
INSERT INTO `sys_logininfor` VALUES (1185, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-30 11:57:37');
INSERT INTO `sys_logininfor` VALUES (1186, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-30 14:15:35');
INSERT INTO `sys_logininfor` VALUES (1187, 'admin', '192.168.110.22', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-30 15:18:39');
INSERT INTO `sys_logininfor` VALUES (1188, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-01-30 15:19:55');
INSERT INTO `sys_logininfor` VALUES (1189, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-03-01 09:35:35');
INSERT INTO `sys_logininfor` VALUES (1190, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-03-01 10:30:29');
INSERT INTO `sys_logininfor` VALUES (1191, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-03-01 10:30:52');
INSERT INTO `sys_logininfor` VALUES (1192, 'admin', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-03-01 10:32:39');
INSERT INTO `sys_logininfor` VALUES (1193, '19522115070', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '用户不存在/密码错误', '2024-03-01 10:42:39');
INSERT INTO `sys_logininfor` VALUES (1194, '19522115070', '192.168.10.1', '内网IP', 'Chrome 12', 'Windows 10', '1', '密码输入错误1次', '2024-03-01 10:42:39');
INSERT INTO `sys_logininfor` VALUES (1195, 'admin', '192.168.110.91', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-03-04 09:16:47');
INSERT INTO `sys_logininfor` VALUES (1196, 'admin', '192.168.110.6', '内网IP', 'Chrome 12', 'Windows 10', '0', '登录成功', '2024-03-04 09:33:38');
INSERT INTO `sys_logininfor` VALUES (1197, '17780483325', '192.168.110.91', '内网IP', 'Mobile Safari', 'iOS 11 (iPhone)', '0', '登录成功', '2024-03-04 10:03:38');
INSERT INTO `sys_logininfor` VALUES (1198, '17780483325', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-03-04 10:19:27');
INSERT INTO `sys_logininfor` VALUES (1199, '17780483325', '192.168.110.29', '内网IP', 'Chrome Mobile', 'Android 1.x', '0', '登录成功', '2024-03-04 10:34:13');
INSERT INTO `sys_logininfor` VALUES (1200, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '密码输入错误1次', '2025-01-20 17:46:06');
INSERT INTO `sys_logininfor` VALUES (1201, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '用户不存在/密码错误', '2025-01-20 17:46:06');
INSERT INTO `sys_logininfor` VALUES (1202, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:47:51');
INSERT INTO `sys_logininfor` VALUES (1203, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '密码输入错误1次', '2025-01-20 17:48:50');
INSERT INTO `sys_logininfor` VALUES (1204, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '用户不存在/密码错误', '2025-01-20 17:48:50');
INSERT INTO `sys_logininfor` VALUES (1205, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:48:56');
INSERT INTO `sys_logininfor` VALUES (1206, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:49:19');
INSERT INTO `sys_logininfor` VALUES (1207, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:49:21');
INSERT INTO `sys_logininfor` VALUES (1208, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:49:35');
INSERT INTO `sys_logininfor` VALUES (1209, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:51:29');
INSERT INTO `sys_logininfor` VALUES (1210, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:51:32');
INSERT INTO `sys_logininfor` VALUES (1211, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:51:48');
INSERT INTO `sys_logininfor` VALUES (1212, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '密码输入错误1次', '2025-01-20 17:52:06');
INSERT INTO `sys_logininfor` VALUES (1213, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '用户不存在/密码错误', '2025-01-20 17:52:06');
INSERT INTO `sys_logininfor` VALUES (1214, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:52:10');
INSERT INTO `sys_logininfor` VALUES (1215, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '用户不存在/密码错误', '2025-01-20 17:52:27');
INSERT INTO `sys_logininfor` VALUES (1216, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '密码输入错误1次', '2025-01-20 17:52:27');
INSERT INTO `sys_logininfor` VALUES (1217, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:52:30');
INSERT INTO `sys_logininfor` VALUES (1218, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:53:47');
INSERT INTO `sys_logininfor` VALUES (1219, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:54:08');
INSERT INTO `sys_logininfor` VALUES (1220, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:54:54');
INSERT INTO `sys_logininfor` VALUES (1221, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '密码输入错误1次', '2025-01-20 17:56:04');
INSERT INTO `sys_logininfor` VALUES (1222, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '1', '用户不存在/密码错误', '2025-01-20 17:56:04');
INSERT INTO `sys_logininfor` VALUES (1223, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:56:08');
INSERT INTO `sys_logininfor` VALUES (1224, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:56:52');
INSERT INTO `sys_logininfor` VALUES (1225, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:57:27');
INSERT INTO `sys_logininfor` VALUES (1226, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 17:59:48');
INSERT INTO `sys_logininfor` VALUES (1227, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:00:29');
INSERT INTO `sys_logininfor` VALUES (1228, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:00:44');
INSERT INTO `sys_logininfor` VALUES (1229, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:01:05');
INSERT INTO `sys_logininfor` VALUES (1230, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:01:20');
INSERT INTO `sys_logininfor` VALUES (1231, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:01:46');
INSERT INTO `sys_logininfor` VALUES (1232, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:02:04');
INSERT INTO `sys_logininfor` VALUES (1233, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:02:29');
INSERT INTO `sys_logininfor` VALUES (1234, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:02:46');
INSERT INTO `sys_logininfor` VALUES (1235, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:03:46');
INSERT INTO `sys_logininfor` VALUES (1236, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:04:02');
INSERT INTO `sys_logininfor` VALUES (1237, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:04:41');
INSERT INTO `sys_logininfor` VALUES (1238, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:04:52');
INSERT INTO `sys_logininfor` VALUES (1239, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:05:43');
INSERT INTO `sys_logininfor` VALUES (1240, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:05:55');
INSERT INTO `sys_logininfor` VALUES (1241, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:06:01');
INSERT INTO `sys_logininfor` VALUES (1242, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:06:30');
INSERT INTO `sys_logininfor` VALUES (1243, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:06:42');
INSERT INTO `sys_logininfor` VALUES (1244, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:08:52');
INSERT INTO `sys_logininfor` VALUES (1245, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:09:34');
INSERT INTO `sys_logininfor` VALUES (1246, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:10:06');
INSERT INTO `sys_logininfor` VALUES (1247, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:10:09');
INSERT INTO `sys_logininfor` VALUES (1248, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:10:17');
INSERT INTO `sys_logininfor` VALUES (1249, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:10:45');
INSERT INTO `sys_logininfor` VALUES (1250, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:11:13');
INSERT INTO `sys_logininfor` VALUES (1251, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:11:20');
INSERT INTO `sys_logininfor` VALUES (1252, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:12:41');
INSERT INTO `sys_logininfor` VALUES (1253, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:12:51');
INSERT INTO `sys_logininfor` VALUES (1254, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:13:43');
INSERT INTO `sys_logininfor` VALUES (1255, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:14:14');
INSERT INTO `sys_logininfor` VALUES (1256, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-20 18:16:44');
INSERT INTO `sys_logininfor` VALUES (1257, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 10:47:15');
INSERT INTO `sys_logininfor` VALUES (1258, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:08:28');
INSERT INTO `sys_logininfor` VALUES (1259, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:09:55');
INSERT INTO `sys_logininfor` VALUES (1260, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:20:23');
INSERT INTO `sys_logininfor` VALUES (1261, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:21:07');
INSERT INTO `sys_logininfor` VALUES (1262, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:24:52');
INSERT INTO `sys_logininfor` VALUES (1263, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:51:22');
INSERT INTO `sys_logininfor` VALUES (1264, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:57:01');
INSERT INTO `sys_logininfor` VALUES (1265, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:58:29');
INSERT INTO `sys_logininfor` VALUES (1266, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 11:59:22');
INSERT INTO `sys_logininfor` VALUES (1267, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:18:17');
INSERT INTO `sys_logininfor` VALUES (1268, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:24:19');
INSERT INTO `sys_logininfor` VALUES (1269, 'admin', '192.168.110.10', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:24:48');
INSERT INTO `sys_logininfor` VALUES (1270, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:25:00');
INSERT INTO `sys_logininfor` VALUES (1271, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:27:32');
INSERT INTO `sys_logininfor` VALUES (1272, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:28:40');
INSERT INTO `sys_logininfor` VALUES (1273, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:47:20');
INSERT INTO `sys_logininfor` VALUES (1274, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 13:55:52');
INSERT INTO `sys_logininfor` VALUES (1275, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 14:18:41');
INSERT INTO `sys_logininfor` VALUES (1276, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 14:22:44');
INSERT INTO `sys_logininfor` VALUES (1277, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 14:23:53');
INSERT INTO `sys_logininfor` VALUES (1278, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 14:30:34');
INSERT INTO `sys_logininfor` VALUES (1279, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 14:44:08');
INSERT INTO `sys_logininfor` VALUES (1280, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 14:45:20');
INSERT INTO `sys_logininfor` VALUES (1281, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:06:27');
INSERT INTO `sys_logininfor` VALUES (1282, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:07:13');
INSERT INTO `sys_logininfor` VALUES (1283, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:08:22');
INSERT INTO `sys_logininfor` VALUES (1284, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:09:26');
INSERT INTO `sys_logininfor` VALUES (1285, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:09:55');
INSERT INTO `sys_logininfor` VALUES (1286, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:11:01');
INSERT INTO `sys_logininfor` VALUES (1287, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:12:25');
INSERT INTO `sys_logininfor` VALUES (1288, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:13:00');
INSERT INTO `sys_logininfor` VALUES (1289, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:13:36');
INSERT INTO `sys_logininfor` VALUES (1290, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:14:17');
INSERT INTO `sys_logininfor` VALUES (1291, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:16:40');
INSERT INTO `sys_logininfor` VALUES (1292, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:17:16');
INSERT INTO `sys_logininfor` VALUES (1293, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:28:50');
INSERT INTO `sys_logininfor` VALUES (1294, 'admin', '192.168.110.103', '内网IP', 'Chrome 13', 'Windows 10', '0', '登录成功', '2025-01-21 15:39:35');
 
-- ----------------------------
-- Table structure for sys_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_menu`;
CREATE TABLE `sys_menu`  (
  `menu_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
  `menu_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称',
  `parent_id` bigint(0) NULL DEFAULT 0 COMMENT '父菜单ID',
  `order_num` int(0) NULL DEFAULT 0 COMMENT '显示顺序',
  `path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '路由地址',
  `component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '组件路径',
  `query` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '路由参数',
  `is_frame` int(0) NULL DEFAULT 1 COMMENT '是否为外链(0是 1否)',
  `is_cache` int(0) NULL DEFAULT 0 COMMENT '是否缓存(0缓存 1不缓存)',
  `menu_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
  `visible` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '菜单状态(0显示 1隐藏)',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
  `perms` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限标识',
  `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '#' COMMENT '菜单图标',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注',
  PRIMARY KEY (`menu_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2008 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '菜单权限表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_menu
-- ----------------------------
INSERT INTO `sys_menu` VALUES (1, '系统设置', 0, 0, '/setting', NULL, NULL, 1, 0, 'M', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (2, '机房管理', 0, 0, '/manage', NULL, NULL, 1, 0, 'M', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (3, '光缆巡检管理', 0, 0, '/inspection', NULL, NULL, 1, 0, 'M', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (4, '区县管理', 1, 0, '/setting/country', './Setting/country', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (5, '账户管理', 1, 0, '/setting/account', './Setting/account', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (6, '新建账户', 1, 0, '/setting/account/add', './Setting/account/addAccount', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (7, '角色权限', 1, 0, '/setting/role', './Setting/role', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (8, '问题反馈', 1, 0, '/setting/feedback', './Setting/feedback', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (9, '详情', 1, 0, '/setting/feedback/detail', './Setting/feedback/detail', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (11, '协议设置', 1, 0, '/setting/agreement', './Setting/agreement', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (12, '机房工单列表', 2, 0, '/manage/order', './Manage/order', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (13, '新建机房工单列表', 2, 0, '/manage/order/add', './Manage/order/components/addAndEdits', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (14, '检查项管理', 2, 0, '/manage/inspect', './Manage/inspect', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (15, '新增检查项', 2, 0, '/manage/inspect/add', './Manage/inspect/addAndEdits', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (16, '隐患库', 2, 0, '/manage/danger', './Manage/danger', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (17, '新建隐患库', 2, 0, '/manage/danger/add', './Manage/danger/addAndEdit', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (18, '光缆巡检列表', 3, 0, '/inspection/list', './Inspection/list', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (19, '新增光缆巡检列表', 3, 0, '/inspection/list/add', './Inspection/list/addAndEdits', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (20, '光缆设备列表', 3, 0, '/inspection/list/equipment', './Inspection/list/components/equipment', NULL, 1, 0, 'C', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (23, '新增', 5, 0, '', 'account:list:add', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (24, '删除', 5, 0, '', 'account:list:delete', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (25, '停用', 5, 0, '', 'account:list:off', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (26, '恢复', 5, 0, '', 'account:list:start', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (27, '详情', 5, 0, '', 'account:list:detail', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (28, '编辑', 5, 0, '', 'account:list:edits', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (29, '新增', 7, 0, '', 'role:list:add', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (30, '删除', 7, 0, '', 'role:list:delete', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (31, '停用', 7, 0, '', 'role:list:off', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (32, '恢复', 7, 0, '', 'role:list:start', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (33, '详情', 7, 0, '', 'role:list:detail', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (34, '编辑', 7, 0, '', 'role:list:edit', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (35, '编辑', 11, 0, '', 'agreement:edit', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (40, '新增', 12, 0, '', 'order:list:add', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (41, '详情', 12, 0, '', 'order:list:detail', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (42, '删除/批量删除', 12, 0, '', 'order:list:delete', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (43, '派单', 12, 0, '', 'order:list:sendOrder', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (44, '新增', 14, 0, '', 'inspect:list:add', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (45, '编辑', 14, 0, '', 'inspect:list:edits', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (46, '删除/批量删除', 14, 0, '', 'inspect:list:delete', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (47, '新增', 16, 0, '', 'danger:list:add', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (48, '详情', 16, 0, '', 'dange:list:detail', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (49, '删除/批量删除', 16, 0, '', 'dange:list:delete', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (50, '新增', 18, 0, '', 'inspection:list:add', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (51, '编辑', 18, 0, '', 'inspection:list:edit', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (52, '派单', 18, 0, '', 'inspection:list:sendOrder', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (53, '删除', 18, 0, '', 'inspection:list:delete', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
INSERT INTO `sys_menu` VALUES (54, '导出', 18, 0, '', 'inspection:repair:export', NULL, 1, 0, 'F', '0', '0', NULL, '#', '', NULL, '', NULL, '');
 
-- ----------------------------
-- Table structure for sys_notice
-- ----------------------------
DROP TABLE IF EXISTS `sys_notice`;
CREATE TABLE `sys_notice`  (
  `notice_id` int(0) NOT NULL AUTO_INCREMENT COMMENT '公告ID',
  `notice_title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告标题',
  `notice_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告类型(1通知 2公告)',
  `notice_content` longblob NULL COMMENT '公告内容',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  PRIMARY KEY (`notice_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '通知公告表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_notice
-- ----------------------------
INSERT INTO `sys_notice` VALUES (1, '温馨提醒:2018-07-01 若依新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 'admin', '2023-10-02 14:09:11', '', NULL, '管理员');
INSERT INTO `sys_notice` VALUES (2, '维护通知:2018-07-01 若依系统凌晨维护', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 'admin', '2023-10-02 14:09:11', '', NULL, '管理员');
 
-- ----------------------------
-- Table structure for sys_oper_log
-- ----------------------------
DROP TABLE IF EXISTS `sys_oper_log`;
CREATE TABLE `sys_oper_log`  (
  `oper_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '日志主键',
  `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '模块标题',
  `business_type` int(0) NULL DEFAULT 0 COMMENT '业务类型(0其它 1新增 2修改 3删除)',
  `method` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '方法名称',
  `request_method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '请求方式',
  `operator_type` int(0) NULL DEFAULT 0 COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
  `oper_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作人员',
  `dept_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '部门名称',
  `oper_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '请求URL',
  `oper_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '主机地址',
  `oper_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作地点',
  `oper_param` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '请求参数',
  `json_result` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '返回参数',
  `status` int(0) NULL DEFAULT 0 COMMENT '操作状态(0正常 1异常)',
  `error_msg` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '错误消息',
  `oper_time` datetime(0) NULL DEFAULT NULL COMMENT '操作时间',
  `cost_time` bigint(0) NULL DEFAULT 0 COMMENT '消耗时间',
  `companyName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '公司名称',
  `roleName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '角色名称',
  `phonenumber` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '手机号',
  `userId` bigint(0) NULL DEFAULT NULL COMMENT '用户id',
  `nickName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '操作人员名称',
  PRIMARY KEY (`oper_id`) USING BTREE,
  INDEX `idx_sys_oper_log_bt`(`business_type`) USING BTREE,
  INDEX `idx_sys_oper_log_s`(`status`) USING BTREE,
  INDEX `idx_sys_oper_log_ot`(`oper_time`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2856 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '操作日志记录' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_oper_log
-- ----------------------------
INSERT INTO `sys_oper_log` VALUES (505, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, 'admin', '开发部', '/user/exportUserQrCode', '127.0.0.1', '内网IP', '{\"userIdS\":[103]}', NULL, 1, '\r\n### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'t.operationsId\' in \'where clause\'\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TQrcodeMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: select t.*,t2.nick_name as qrCodeName from t_qrcode t         left join sys_user t2 on t.otherId = t2.user_id          WHERE  t.operationsId IN                 (                     ?                 )                          and t.type = 1\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'t.operationsId\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'t.operationsId\' in \'where clause\'', '2023-10-24 10:34:48', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (506, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, 'admin', '开发部', '/user/exportUserQrCode', '127.0.0.1', '内网IP', '{\"userIdS\":[103]}', NULL, 0, NULL, '2023-10-24 10:36:05', 710, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (507, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":2,\"remark\":\"11111111\"}', NULL, 1, '', '2023-10-24 15:38:09', 12, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (508, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":2,\"recordId\":6,\"remark\":\"事实上事实上事实上\"}', NULL, 1, '', '2023-10-24 15:40:51', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (509, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":2,\"recordId\":6,\"remark\":\"事实上事实上事实上\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-24 15:46:15', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (510, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{}', NULL, 1, '', '2023-10-24 17:53:53', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (511, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{}', NULL, 1, '', '2023-10-24 18:10:03', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (512, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 10:01:30\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:01:30', 64, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (513, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 10:01:31\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:01:31', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (514, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 10:01:33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:01:33', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (515, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 10:01:42\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:01:42', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (516, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 10:01:43\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:01:43', 55, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (517, '现场作业-现场作业导入', 6, 'com.ruoyi.web.controller.api.TOperationsController.importContract()', 'POST', 1, 'admin', '开发部', '/operations/importContract', '127.0.0.1', '内网IP', '', '{\"msg\":\"作业导入失败!\",\"code\":500}', 0, NULL, '2023-10-25 10:34:21', 285, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (518, '现场作业-现场作业导入', 6, 'com.ruoyi.web.controller.api.TOperationsController.importContract()', 'POST', 1, 'admin', '开发部', '/operations/importContract', '127.0.0.1', '内网IP', '', '{\"msg\":\"作业导入失败!\",\"code\":500}', 0, NULL, '2023-10-25 10:37:41', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (519, '现场作业-现场作业导入', 6, 'com.ruoyi.web.controller.api.TOperationsController.importContract()', 'POST', 1, 'admin', '开发部', '/operations/importContract', '127.0.0.1', '内网IP', '', '{\"msg\":\"作业导入失败!\",\"code\":500}', 0, NULL, '2023-10-25 10:45:36', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (520, '现场作业-现场作业导入', 6, 'com.ruoyi.web.controller.api.TOperationsController.importContract()', 'POST', 1, 'admin', '开发部', '/operations/importContract', '127.0.0.1', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:47:05', 1445, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (521, '现场作业-现场作业导入', 6, 'com.ruoyi.web.controller.api.TOperationsController.importContract()', 'POST', 1, 'admin', '开发部', '/operations/importContract', '192.168.110.103', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 10:51:40', 897, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (522, '培训信息-导出培训信息列表', 5, 'com.ruoyi.web.controller.api.TTrainController.trainInfoExport()', 'POST', 1, 'admin', '开发部', '/train/trainInfoExport', '192.168.110.34', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 11:30:31', 139, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (523, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 11:36:17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 11:36:17', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (524, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 11:36:17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 11:36:17', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (525, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"singleNum\":\"3057583772\",\"trainFileVideos\":[{\"fileSize\":null},{\"fileSize\":null}],\"trainFiles\":[{\"fileSize\":null},{\"fileSize\":null}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.LONG', '2023-10-25 12:38:36', 1307, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (526, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"singleNum\":\"3062280906\",\"trainFileVideos\":[{\"fileSize\":null},{\"fileSize\":null}],\"trainFiles\":[{\"fileSize\":null},{\"fileSize\":null}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.LONG', '2023-10-25 12:39:56', 841, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (527, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"singleNum\":\"3079840400\",\"trainFileVideos\":[{\"fileSize\":null},{\"fileSize\":null}],\"trainFiles\":[{\"fileSize\":null},{\"fileSize\":null}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.STRING', '2023-10-25 12:42:03', 803, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (528, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 12:42:34\",\"id\":4,\"singleNum\":\"3008389951\",\"trainFileVideos\":[{\"fileSize\":null,\"trainId\":4},{\"fileSize\":null,\"trainId\":4}],\"trainFiles\":[{\"fileSize\":null,\"trainId\":4},{\"fileSize\":null,\"trainId\":4},{\"fileSize\":null,\"trainId\":4},{\"fileSize\":null,\"trainId\":4}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.LONG', '2023-10-25 12:42:34', 834, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (529, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 12:49:02\",\"id\":5,\"singleNum\":\"3079999238\",\"trainFileVideos\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":5}],\"trainFiles\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/文字文稿1.docx\",\"fileName\":\"文字文稿1.docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/新建 DOC 文档.doc\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":null,\"fileType\":1,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":5},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":5}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.LONG', '2023-10-25 12:49:02', 918, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (530, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 12:50:29\",\"id\":6,\"singleNum\":\"3070116144\",\"trainFileVideos\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":6}],\"trainFiles\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/文字文稿1.docx\",\"fileName\":\"文字文稿1.docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/新建 DOC 文档.doc\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":null,\"fileType\":1,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":6},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":6}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.LONG', '2023-10-25 12:50:29', 783, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (531, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 12:51:00\",\"id\":7,\"singleNum\":\"3021298532\",\"trainFileVideos\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":7}],\"trainFiles\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/文字文稿1.docx\",\"fileName\":\"文字文稿1.docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/新建 DOC 文档.doc\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":null,\"fileType\":1,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":7},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":7}],\"trainTypeId\":22,\"userIds\":[1,102,103]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 12:51:00', 897, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (532, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.103', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 14:12:54\",\"id\":8,\"singleNum\":\"3066405785\",\"trainFileVideos\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":8,\"videoDuration\":58},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":8,\"videoDuration\":58},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":8,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":8},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/文字文稿1.docx\",\"fileName\":\"文字文稿1.docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":8},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/新建 DOC 文档.doc\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":null,\"fileType\":1,\"trainId\":8},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":8,\"videoDuration\":58},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":8,\"videoDuration\":58},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":8,\"videoDuration\":58}],\"trainName\":\"安全说法\",\"trainTypeId\":22,\"userIds\":[1,102,103]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 14:12:55', 1083, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (533, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.34', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 14:20:11\",\"id\":9,\"singleNum\":\"3012335924\",\"trainFileVideos\":[{\"fileAddress\":\"org.apache.tomcat.util.http.fileupload.FileUploadException: Cannot write uploaded file to disk!\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":9}],\"trainFiles\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/接口文档.docx\",\"fileName\":\"接口文档.docx\",\"fileSize\":null,\"fileType\":1,\"trainId\":9},{\"fileAddress\":\"org.apache.tomcat.util.http.fileupload.FileUploadException: Cannot write uploaded file to disk!\",\"fileName\":\"video.mp4\",\"fileSize\":null,\"fileType\":2,\"trainId\":9}],\"trainName\":\"MP4\",\"trainTypeId\":22,\"userIds\":[102]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 14:20:11', 918, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (534, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.34', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 14:24:02\",\"id\":10,\"singleNum\":\"3038175526\",\"trainFileVideos\":[{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":10,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"org.apache.tomcat.util.http.fileupload.FileUploadException: Cannot write uploaded file to disk!\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":13824.0,\"fileType\":1,\"trainId\":10},{\"fileAddress\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":10,\"videoDuration\":58}],\"trainName\":\"MP45\",\"trainTypeId\":22,\"userIds\":[103]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 14:24:03', 1085, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (535, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.34', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 14:27:34\",\"id\":11,\"singleNum\":\"3029986265\",\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":11,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"trainId\":11},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":11,\"videoDuration\":58}],\"trainName\":\"MP456\",\"trainTypeId\":22,\"userIds\":[102]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 14:27:34', 986, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (536, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.34', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 14:29:15\",\"id\":12,\"singleNum\":\"3015706402\",\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":12,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"trainId\":12},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":12,\"videoDuration\":58}],\"trainName\":\"MP4567\",\"trainTypeId\":22,\"userIds\":[103]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 14:31:00', 106292, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (537, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.34', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 14:33:40\",\"id\":13,\"singleNum\":\"3014133775\",\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"userIds\":[103]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 14:33:41', 951, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (538, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[1],\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:07:52', 73, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (539, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":105,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 15:09:38\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:09:38', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (540, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '开发部', '/system/role/deleteById/105', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 15:09:40', 90, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (541, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"roleName\":\"低级管理员\"}', NULL, 1, '', '2023-10-25 15:09:45', 93, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (542, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":106,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 15:14:01\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:14:01', 96, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (543, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '开发部', '/system/role/deleteById/106', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 15:14:04', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (544, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"roleName\":\"低级管理员\"}', NULL, 1, '', '2023-10-25 15:14:10', 75, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (545, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"roleName\":\"低级管理员\"}', '{\"msg\":\"新增角色\'低级管理员\'失败,角色名称已存在\",\"code\":500}', 0, NULL, '2023-10-25 15:14:16', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (546, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":107,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 15:14:36\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:14:36', 71, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (547, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '开发部', '/system/role/deleteById/107', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 15:14:38', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (548, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"roleName\":\"低级管理员\"}', NULL, 1, '', '2023-10-25 15:14:45', 75, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (549, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":108,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 15:15:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:15:11', 654, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (550, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '开发部', '/system/role/deleteById/108', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 15:15:13', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (551, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,48,49,50,40,41,42,43,44,45,46,47],\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:16:16', 187, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (552, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:17:56', 93, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (553, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[4,20,21,22],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:18:25', 75, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (554, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[2,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,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,4,20,21,22,1],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 15:24:38', 105, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (555, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"trainFileVideos\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":34,\"videoDuration\":58}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":33},{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":34,\"videoDuration\":58}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:01:01\",\"userIds\":[103,102]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 16:01:02', 366, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (556, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":34,\"trainId\":13,\"videoDuration\":58}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":33,\"trainId\":13},{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":34,\"trainId\":13,\"videoDuration\":58}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:04:53\",\"userIds\":[102]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 16:04:53', 199, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (557, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":37,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:05:40\",\"userIds\":[]}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 2\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TTrainToUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO t_train_to_user (`userId`, `trainId`)         VALUES\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 2\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 2', '2023-10-25 16:05:40', 288, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (558, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,1],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 16:06:29', 89, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (559, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":40,\"trainId\":13},{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":41,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":39,\"trainId\":13}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:07:50\",\"userIds\":[]}', NULL, 1, '', '2023-10-25 16:07:50', 106, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (560, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":40,\"trainId\":13},{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":41,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":39,\"trainId\":13}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:08:15\",\"userIds\":[]}', NULL, 1, '', '2023-10-25 16:08:15', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (561, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.103', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":36,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":35,\"trainId\":13}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:12:05\",\"userIds\":[]}', NULL, 1, '', '2023-10-25 16:12:05', 110, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (562, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":36,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":35,\"trainId\":13}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:12:05\",\"userIds\":[]}', NULL, 1, '', '2023-10-25 16:12:05', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (563, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.34', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:13:18\",\"userIds\":[]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 16:13:19', 238, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (564, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '192.168.110.103', '内网IP', '{\"id\":13,\"trainFileVideos\":[{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":43,\"trainId\":13},{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":44,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainFiles\":[{\"disabled\":false,\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/部署文档.docx\",\"fileName\":\"部署文档.docx\",\"fileSize\":758402.0,\"fileType\":1,\"id\":42,\"trainId\":13},{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":43,\"trainId\":13},{\"disabled\":false,\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":44,\"trainId\":13},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":13,\"videoDuration\":58}],\"trainName\":\"MP45678\",\"trainTypeId\":22,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 16:13:31\",\"userIds\":[]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 16:13:31', 164, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (565, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:22:50', 60, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (566, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:22:51', 13, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (567, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:22:51', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (568, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:22:54', 11, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (569, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:22:54', 11, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (570, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:22:54', 10, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (571, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:23:00', 9, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (572, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:23:00', 9, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (573, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:23:00', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (574, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:23:48', 10, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (575, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:23:57', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (576, '操作日志-查询操作日志列表导出', 5, 'com.ruoyi.web.controller.monitor.SysOperlogController.exportOperLog()', 'POST', 1, 'admin', '开发部', '/monitor/operlog/exportOperLog', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:37:38', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (577, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[null,null],\"borrowUserIds\":[null],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-25 18:37:50\",\"endTime\":\"2023-10-25 18:37:18\",\"engineeringName\":\"名称\",\"id\":8,\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":3,\"safetyOfficer\":102,\"sceneName\":\"现场\",\"singleNum\":\"3011108000\",\"startTime\":\"2023-10-25 18:37:18\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"地点\",\"workHeader\":103,\"workPeopleNum\":3}', NULL, 1, 'nested exception is org.apache.ibatis.builder.BuilderException: Error resolving JdbcType. Cause: java.lang.IllegalArgumentException: No enum constant org.apache.ibatis.type.JdbcType.LONG', '2023-10-25 18:37:50', 96, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (578, '操作日志-查询操作日志列表导出', 5, 'com.ruoyi.web.controller.monitor.SysOperlogController.exportOperLog()', 'POST', 1, 'admin', '开发部', '/monitor/operlog/exportOperLog', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 18:38:05', 13, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (579, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,102],\"borrowUserIds\":[103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-25 18:38:44\",\"endTime\":\"2023-10-25 18:38:20\",\"engineeringName\":\"名称\",\"id\":9,\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":3,\"safetyOfficer\":102,\"sceneName\":\"现场\",\"singleNum\":\"3031106249\",\"startTime\":\"2023-10-25 18:38:20\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"地点\",\"workHeader\":103,\"workPeopleNum\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 18:38:45', 585, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (580, '二维码-二维码列表导出', 5, 'com.ruoyi.web.controller.api.TQrcodeController.exportQrCode()', 'POST', 1, 'admin', '开发部', '/qrcode/exportQrCode', '192.168.110.10', '内网IP', '{\"type\":1}', NULL, 0, NULL, '2023-10-25 18:42:15', 491, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (581, '二维码-二维码列表导出', 5, 'com.ruoyi.web.controller.api.TQrcodeController.exportQrCode()', 'POST', 1, 'admin', '开发部', '/qrcode/exportQrCode', '192.168.110.10', '内网IP', '{\"type\":2}', NULL, 0, NULL, '2023-10-25 18:42:29', 10, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (582, '二维码-二维码列表导出', 5, 'com.ruoyi.web.controller.api.TQrcodeController.exportQrCode()', 'POST', 1, 'admin', '开发部', '/qrcode/exportQrCode', '192.168.110.10', '内网IP', '{\"type\":3}', NULL, 0, NULL, '2023-10-25 18:42:44', 330, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (583, '单位-新增单位', 1, 'com.ruoyi.web.controller.api.TCompanyController.add()', 'POST', 1, 'admin', '开发部', '/company/add', '192.168.110.10', '内网IP', '{\"companyName\":\"新能源\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:24:39\",\"id\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:24:39', 81, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (584, '部门-新增部门', 1, 'com.ruoyi.web.controller.api.TDeptController.add()', 'POST', 1, 'admin', '开发部', '/dept/add', '192.168.110.10', '内网IP', '{\"companyId\":3,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:28:46\",\"deptName\":\"维修部\",\"id\":4}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:28:46', 97, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (585, '单位-删除单位', 3, 'com.ruoyi.web.controller.api.TCompanyController.remove()', 'DELETE', 1, 'admin', '开发部', '/company/deleteByIds/2', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:30:32', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (586, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:01\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:01', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (587, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:03', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (588, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:06\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:06', 73, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (589, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:08\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:08', 76, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (590, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:10', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (591, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:12', 75, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (592, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:24', 76, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (593, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/role/changeStatus', '192.168.110.10', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 20:31:31\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:31:31', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (594, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '开发部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[4,20,21,22],\"roleName\":\"维修组\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:32:22', 207, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (595, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '192.168.110.10', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:33:56\",\"deductIntegral\":2,\"id\":7,\"pictures\":\"\",\"remark\":\"违规\",\"userId\":103}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:33:56', 123, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (596, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/user/changeStatus', '192.168.110.10', '内网IP', '{\"status\":1,\"userId\":103}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:36:42', 135, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (597, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', '开发部', '/system/user/changeStatus', '192.168.110.10', '内网IP', '{\"status\":0,\"userId\":103}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:36:43', 119, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (598, '用户信息-导出用户列表', 5, 'com.ruoyi.web.controller.system.SysUserController.exportUser()', 'POST', 1, 'admin', '开发部', '/system/user/exportUser', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 20:36:48', 331, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (599, '代打卡配置-批量新增代打卡配置项', 1, 'com.ruoyi.web.controller.api.TClockInConfigController.addBatch()', 'POST', 1, 'admin', '开发部', '/clockInConfig/addBatch', '192.168.110.10', '内网IP', '{\"clockInConfigs\":[{\"content\":\"老年人\",\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:40:03\",\"id\":7},{\"content\":\"12\",\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:40:03\",\"id\":8}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:40:03', 226, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (600, '代打卡配置-批量删除代打卡配置项', 3, 'com.ruoyi.web.controller.api.TClockInConfigController.remove()', 'DELETE', 1, 'admin', '开发部', '/clockInConfig/deleteByIds/8', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:40:23', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (601, '二维码-二维码列表导出', 5, 'com.ruoyi.web.controller.api.TQrcodeController.exportQrCode()', 'POST', 1, 'admin', '开发部', '/qrcode/exportQrCode', '192.168.110.10', '内网IP', '{\"type\":1}', NULL, 0, NULL, '2023-10-25 20:40:56', 426, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (602, '操作日志-查询操作日志列表导出', 5, 'com.ruoyi.web.controller.monitor.SysOperlogController.exportOperLog()', 'POST', 1, 'admin', '开发部', '/monitor/operlog/exportOperLog', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 20:41:30', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (603, '培训类别-新增培训类别', 1, 'com.ruoyi.web.controller.api.TTrainTypeController.add()', 'POST', 1, 'admin', '开发部', '/trainType/add', '192.168.110.10', '内网IP', '{\"content\":\"学习类\",\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:43:00\",\"id\":27}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:43:00', 76, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (604, '培训类别-删除培训类别', 3, 'com.ruoyi.web.controller.api.TTrainTypeController.remove()', 'DELETE', 1, 'admin', '开发部', '/trainType/deleteByIds/25', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:44:17', 55, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (605, '培训类别-删除培训类别', 3, 'com.ruoyi.web.controller.api.TTrainTypeController.remove()', 'DELETE', 1, 'admin', '开发部', '/trainType/deleteByIds/26', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:44:19', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (606, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '192.168.110.10', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-25 20:46:45\",\"id\":14,\"singleNum\":\"3054928082\",\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/ef2a97feab424d3abb330c23f2171118.mp4\",\"fileName\":\"ef2a97feab424d3abb330c23f2171118.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":14,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/滴滴电子发票 (1).pdf\",\"fileName\":\"滴滴电子发票 (1).pdf\",\"fileSize\":39260.0,\"fileType\":1,\"trainId\":14},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-25/ef2a97feab424d3abb330c23f2171118.mp4\",\"fileName\":\"ef2a97feab424d3abb330c23f2171118.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":14,\"videoDuration\":58}],\"trainName\":\"喜喜喜喜喜喜喜喜喜喜\",\"trainTypeId\":22,\"userIds\":[1,102,103]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 20:46:46', 818, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (607, '培训信息-批量删除培训', 3, 'com.ruoyi.web.controller.api.TTrainController.deleteByIds()', 'DELETE', 1, 'admin', '开发部', '/train/deleteByIds/6', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:47:12', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (608, '培训信息-批量删除培训', 3, 'com.ruoyi.web.controller.api.TTrainController.deleteByIds()', 'DELETE', 1, 'admin', '开发部', '/train/deleteByIds/7,4,5', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, NULL, '2023-10-25 20:47:21', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (609, '培训信息-导出培训学习列表', 5, 'com.ruoyi.web.controller.api.TTrainController.trainStudyExport()', 'POST', 1, 'admin', '开发部', '/train/trainStudyExport', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 20:48:28', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (610, '培训信息-导出培训学习列表', 5, 'com.ruoyi.web.controller.api.TTrainController.trainStudyExport()', 'POST', 1, 'admin', '开发部', '/train/trainStudyExport', '192.168.110.10', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-25 20:49:26', 21, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (611, '培训信息-批量删除培训', 3, 'com.ruoyi.web.controller.api.TTrainController.deleteByIds()', 'DELETE', 1, 'admin', '开发部', '/train/deleteByIds/13', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 20:50:10', 257, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (612, '培训信息-批量删除培训', 3, 'com.ruoyi.web.controller.api.TTrainController.deleteByIds()', 'DELETE', 1, 'admin', '开发部', '/train/deleteByIds/12,11', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2}', 0, NULL, '2023-10-25 20:52:40', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (613, '现场作业-修改现场作业', 2, 'com.ruoyi.web.controller.api.TOperationsController.edit()', 'POST', 1, 'admin', '开发部', '/operations/edit', '192.168.110.103', '内网IP', '{\"content\":\"检修\",\"endTime\":\"2023-10-25 18:38:20\",\"engineeringName\":\"名称\",\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":102,\"sceneName\":\"现场\",\"startTime\":\"2023-10-25 18:38:20\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"地点\",\"workHeader\":103,\"workPeopleNum\":3}', NULL, 1, '', '2023-10-25 21:26:01', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (614, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, 'admin', '开发部', '/operations/editProjectManager', '192.168.110.103', '内网IP', '{\"id\":9,\"projectManager\":103}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 21:26:43', 61, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (615, '现场作业-修改现场作业负责人', 12, 'com.ruoyi.web.controller.api.TOperationsController.editWorkHeader()', 'POST', 1, 'admin', '开发部', '/operations/editWorkHeader', '192.168.110.103', '内网IP', '{\"id\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 21:27:54', 134, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (616, '现场作业-修改现场作业负责人', 12, 'com.ruoyi.web.controller.api.TOperationsController.editWorkHeader()', 'POST', 1, 'admin', '开发部', '/operations/editWorkHeader', '192.168.110.103', '内网IP', '{\"id\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 21:31:01', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (617, '现场作业-修改现场作业负责人', 12, 'com.ruoyi.web.controller.api.TOperationsController.editWorkHeader()', 'POST', 1, 'admin', '开发部', '/operations/editWorkHeader', '192.168.110.103', '内网IP', '{\"id\":9,\"workHeader\":103}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 21:33:06', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (618, '现场作业-修改现场作业', 2, 'com.ruoyi.web.controller.api.TOperationsController.edit()', 'POST', 1, 'admin', '开发部', '/operations/edit', '192.168.110.103', '内网IP', '{\"content\":\"检修\",\"endTime\":\"2023-10-25 18:38:20\",\"engineeringName\":\"名称\",\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":102,\"sceneName\":\"现场\",\"startTime\":\"2023-10-25 18:38:20\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"地点\",\"workHeader\":103,\"workPeopleNum\":3}', NULL, 1, '', '2023-10-25 21:33:33', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (619, '现场作业-修改现场作业', 2, 'com.ruoyi.web.controller.api.TOperationsController.edit()', 'POST', 1, 'admin', '开发部', '/operations/edit', '192.168.110.103', '内网IP', '{\"content\":\"检修\",\"endTime\":\"2023-10-25 18:38:20\",\"engineeringName\":\"名称\",\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":102,\"sceneName\":\"现场\",\"startTime\":\"2023-10-25 18:38:20\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"地点\",\"workHeader\":103,\"workPeopleNum\":3}', NULL, 1, '', '2023-10-25 21:34:33', 19752, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (620, '现场作业-修改现场作业', 2, 'com.ruoyi.web.controller.api.TOperationsController.edit()', 'POST', 1, 'admin', '开发部', '/operations/edit', '192.168.110.103', '内网IP', '{\"content\":\"检修\",\"engineeringName\":\"名称\",\"id\":9,\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":102,\"sceneName\":\"现场\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-25 21:34:54\",\"voltageLevel\":\"4\",\"workAddress\":\"地点\",\"workHeader\":103,\"workPeopleNum\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-25 21:34:54', 73, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (621, '现场作业-减少现场作业人员', 14, 'com.ruoyi.web.controller.api.TOperationsController.removeUser()', 'POST', 1, 'admin', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":9,\"reduceUserId\":1,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 22:19:43', 160, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (622, '现场作业-减少现场作业人员', 14, 'com.ruoyi.web.controller.api.TOperationsController.removeUser()', 'POST', 1, 'admin', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":9,\"reduceUserId\":102,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 22:20:22', 267, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (623, '现场作业-减少现场作业人员', 14, 'com.ruoyi.web.controller.api.TOperationsController.removeUser()', 'POST', 1, 'admin', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":9,\"reduceUserId\":103,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-25 22:21:04', 129, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (624, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,102,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 09:46:20\",\"endTime\":\"2023-10-26 09:00:00\",\"engineeringName\":\"名称88\",\"id\":10,\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3072528618\",\"startTime\":\"2023-10-26 09:00:00\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"1\",\"workAddress\":\"天府新谷\",\"workHeader\":102,\"workPeopleNum\":3}', NULL, 1, '', '2023-10-26 09:46:20', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (625, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,102,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 09:46:22\",\"endTime\":\"2023-10-26 09:00:00\",\"engineeringName\":\"名称88\",\"id\":11,\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3065185707\",\"startTime\":\"2023-10-26 09:00:00\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"1\",\"workAddress\":\"天府新谷\",\"workHeader\":102,\"workPeopleNum\":3}', NULL, 1, '', '2023-10-26 09:46:22', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (626, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,102,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 09:48:59\",\"endTime\":\"2023-10-26 09:00:00\",\"engineeringName\":\"名称88\",\"id\":12,\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3075118855\",\"startTime\":\"2023-10-26 09:00:00\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"1\",\"workAddress\":\"天府新谷\",\"workHeader\":102,\"workPeopleNum\":3}', NULL, 1, '', '2023-10-26 09:48:59', 123, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (627, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,102,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 09:51:48\",\"endTime\":\"2023-10-26 09:00:00\",\"engineeringName\":\"名称88\",\"id\":13,\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3014147587\",\"startTime\":\"2023-10-26 09:00:00\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"1\",\"workAddress\":\"天府新谷\",\"workHeader\":102,\"workPeopleNum\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 09:51:50', 2648, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (628, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, 'admin', '开发部', '/operations/editProjectManager', '192.168.110.103', '内网IP', '{\"id\":13,\"projectManager\":103}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 09:54:36', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (629, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":1,\"recordId\":18}', NULL, 1, '', '2023-10-26 09:55:02', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (630, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":1,\"recordId\":18}', NULL, 1, '', '2023-10-26 09:55:10', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (631, '现场作业-批量删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.remove()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteByIds/13,12,11,10', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2023-10-26 10:16:15', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (632, '现场作业-批量删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.remove()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteByIds/5,7,6,8,9', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":5}', 0, NULL, '2023-10-26 10:16:24', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (633, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[102,1],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 10:17:18\",\"endTime\":\"2023-10-24 10:16:32\",\"engineeringName\":\"名称881\",\"id\":14,\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3078273023\",\"startTime\":\"2023-10-24 10:16:32\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"天府新谷\",\"workHeader\":102,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 10:17:19', 797, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (634, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":14}', NULL, 1, '', '2023-10-26 10:18:35', 69193, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (635, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":14}', NULL, 1, '', '2023-10-26 10:19:01', 19573, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (636, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":14}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-26 10:20:58', 61, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (637, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, 'admin', '开发部', '/operations/editProjectManager', '192.168.110.103', '内网IP', '{\"id\":14,\"projectManager\":102}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 10:21:16', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (638, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":1,\"recordId\":19}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 10:21:23', 131, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (639, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, 'admin', '开发部', '/operations/editProjectManager', '192.168.110.103', '内网IP', '{\"id\":14,\"projectManager\":103}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 10:24:10', 156, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (640, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":2,\"recordId\":20,\"remark\":\"不适合\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 10:24:36', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (641, '现场作业-查询现场作业列表导出', 5, 'com.ruoyi.web.controller.api.TOperationsController.exportOperations()', 'POST', 1, 'admin', '开发部', '/operations/exportOperations', '192.168.110.103', '内网IP', '{\"engineeringName\":\"\",\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-10-26 10:26:09', 164, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (642, '现场作业-现场作业导入', 6, 'com.ruoyi.web.controller.api.TOperationsController.importContract()', 'POST', 1, 'admin', '开发部', '/operations/importContract', '192.168.110.103', '内网IP', '', '{\"msg\":\"作业导入失败!\",\"code\":500}', 0, NULL, '2023-10-26 10:26:51', 237, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (643, '现场作业-批量删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.remove()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteByIds/3', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-26 10:30:42', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (644, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '开发部', '/system/user/deleteById/102', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-26 11:44:26', 156, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (645, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', '开发部', '/system/user/add', '192.168.110.10', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":3,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-26 11:45:09\",\"deptId\":4,\"healthCondition\":1,\"idCard\":\"51234124323412341234\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3012423971\",\"status\":\"0\",\"userId\":104,\"userName\":\"18008172471\",\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 11:45:10', 1048, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (646, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '192.168.110.10', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-26 15:58:25\",\"deductIntegral\":1,\"id\":8,\"pictures\":\"\",\"remark\":\"效率太高\",\"userId\":104}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-26 15:58:25', 148, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (647, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 18:20:56\",\"endTime\":\"2023-10-24 18:18:09\",\"engineeringName\":\"名称88\",\"id\":15,\"lat\":\"30.661853\",\"lon\":\"104.061901\",\"projectDepartment\":\"项目\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3054123843\",\"startTime\":\"2023-10-24 18:18:09\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"3\",\"workAddress\":\"30.661853,104.061901\",\"workHeader\":103,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 18:20:56', 405, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (648, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 18:33:52\",\"endTime\":\"2023-10-24 18:22:28\",\"engineeringName\":\"名称88\",\"id\":16,\"lat\":\"30.668538\",\"lon\":\"103.827764\",\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":3,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3076642224\",\"startTime\":\"2023-10-24 18:22:28\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市温江区利兴路东段555号\",\"workHeader\":1,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 18:33:52', 367, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (649, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 18:42:51\",\"endTime\":\"2023-10-26 18:42:08\",\"engineeringName\":\"名称88\",\"id\":17,\"lat\":\"30.586922\",\"lon\":\"104.055732\",\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3078617115\",\"startTime\":\"2023-10-26 18:42:08\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"3\",\"workAddress\":\"\",\"workHeader\":1,\"workPeopleNum\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 18:42:52', 366, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (650, '现场作业-删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.deleteById()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteById/17', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-26 18:43:41', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (651, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 18:44:41\",\"endTime\":\"2023-10-24 18:43:47\",\"engineeringName\":\"名称88\",\"id\":18,\"lat\":\"30.668538\",\"lon\":\"103.827764\",\"projectDepartment\":\"项目1部\",\"projectManager\":103,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":1,\"sceneName\":\"现场顾666\",\"singleNum\":\"3043124875\",\"startTime\":\"2023-10-24 18:43:47\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"3\",\"workAddress\":\"\",\"workHeader\":1,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 18:44:42', 334, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (652, '现场作业-删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.deleteById()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteById/18', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-26 18:45:06', 98, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (653, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-26 18:46:14\",\"endTime\":\"2023-10-24 18:45:35\",\"engineeringName\":\"名称881\",\"id\":19,\"lat\":\"30.586922\",\"lon\":\"104.055732\",\"projectDepartment\":\"项目1部\",\"projectManager\":1,\"projectType\":3,\"riskLevel\":3,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3045201699\",\"startTime\":\"2023-10-24 18:45:35\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道西段399号\",\"workHeader\":1,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-26 18:46:15', 342, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (654, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, '18008172471', '维修部', '/operations/auditWork', '192.168.110.10', '内网IP', '{\"auditState\":1,\"id\":15}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 11:41:52', 42, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (655, '现场作业-新增现场作业人员', 13, 'com.ruoyi.web.controller.api.TOperationsController.editWorkUser()', 'POST', 1, '18008172471', '维修部', '/operations/editWorkUser', '192.168.110.10', '内网IP', '{\"addUserIds\":[1,103,104],\"id\":15}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 14:31:50', 50, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (656, '现场作业-新增现场作业人员', 13, 'com.ruoyi.web.controller.api.TOperationsController.editWorkUser()', 'POST', 1, '18008172471', '维修部', '/operations/editWorkUser', '192.168.110.10', '内网IP', '{\"borrowUserIds\":[104],\"id\":16}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 14:32:24', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (657, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":2,\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:20:41', 235, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (658, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":2,\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:20:45', 83, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (659, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":2,\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:21:04', 48, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (660, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":1,\"roleId\":2,\"roleName\":\"普通角色\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:21:11', 54, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (661, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":103,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"}]}', 0, NULL, '2023-10-27 15:30:45', 33, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (662, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":103,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"}]}', 0, NULL, '2023-10-27 15:30:53', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (663, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":103,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"}]}', 0, NULL, '2023-10-27 15:32:25', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (664, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":103,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"}]}', 0, NULL, '2023-10-27 15:32:36', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (665, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":103,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"}]}', 0, NULL, '2023-10-27 15:36:11', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (666, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":103,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"}]}', 0, NULL, '2023-10-27 15:36:25', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (667, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":3,\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:43:49', 72, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (668, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":1,\"roleId\":2,\"roleName\":\"普通角色\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:45:46', 54, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (669, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":1,\"roleId\":2,\"roleName\":\"普通角色\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:46:04', 54, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (670, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, '18008172471', '维修部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":1,\"roleName\":\"魔法师\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:47:21', 63, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (671, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,null,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],\"postType\":1,\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2023-10-27 15:48:43', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (672, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, '18008172471', '维修部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:49:12', 59, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (673, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, '18008172471', '维修部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":1,\"roleName\":\"魔法师1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:51:05', 78, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (674, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, '18008172471', '维修部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":1,\"roleName\":\"剑士\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:53:51', 77, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (675, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, '18008172471', '维修部', '/system/role/add', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":1,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:56:19', 70, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (676, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:56:26', 80, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (677, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:56:29', 82, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (678, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":3,\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 15:56:39', 63, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (679, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,103],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:05:59\",\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":103,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":103,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:06:00', 354, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (680, '部门-新增部门', 1, 'com.ruoyi.web.controller.api.TDeptController.add()', 'POST', 1, '18008172471', '维修部', '/dept/add', '192.168.110.10', '内网IP', '{\"companyId\":3,\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:09:49\",\"deptName\":\"开发部\",\"id\":5}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:09:49', 53, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (681, '单位-新增单位', 1, 'com.ruoyi.web.controller.api.TCompanyController.add()', 'POST', 1, '18008172471', '维修部', '/company/add', '192.168.110.10', '内网IP', '{\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:10:41\",\"id\":4}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:10:41', 41, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (682, '部门-新增部门', 1, 'com.ruoyi.web.controller.api.TDeptController.add()', 'POST', 1, '18008172471', '维修部', '/dept/add', '192.168.110.10', '内网IP', '{\"companyId\":4,\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:11:01\",\"deptName\":\"分部门1\",\"id\":6}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:11:01', 42, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (683, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, '18008172471', '维修部', '/system/user/edit', '192.168.110.10', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":4,\"companyType\":1,\"deptId\":3,\"healthCondition\":1,\"idCard\":\"51234124323412341234\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":11,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:24:56\",\"userId\":104,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:24:56', 42, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (684, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, '18008172471', '维修部', '/system/user/edit', '192.168.110.10', '内网IP', '{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"deptId\":3,\"healthCondition\":1,\"idCard\":\"51234124323412341234\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:25:30\",\"userId\":1,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:25:30', 50, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (685, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, '18008172471', '维修部', '/system/user/edit', '192.168.110.10', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":3,\"companyType\":1,\"deptId\":4,\"healthCondition\":1,\"idCard\":\"51234124323412341234\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":11,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:30:35\",\"userId\":104,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:30:35', 57, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (686, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, '18008172471', '维修部', '/system/user/edit', '192.168.110.10', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":3,\"companyType\":1,\"deptId\":4,\"healthCondition\":1,\"idCard\":\"51234124323412341234\",\"idCardPicture\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-21/shezhi@2x.png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-21/shezhi@2x.png\",\"medicalExaminationPicture\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-21/shezhi@2x.png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:\\\\Users\\\\Admin\\\\Desktop\\\\qrcode\\\\2023-10-21/shezhi@2x.png\",\"roleId\":2,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:33:25\",\"userId\":103,\"workType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-27 17:33:25', 73, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (687, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, '18008172471', '维修部', '/operations/add', '192.168.110.10', '内网IP', '{\"addUserIds\":[103],\"content\":\"作业1\",\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:38:42\",\"endTime\":\"2023-10-27 17:33:46\",\"engineeringName\":\"工程1\",\"id\":21,\"lat\":\"30.702371\",\"lon\":\"104.1909\",\"projectDepartment\":\"项目部1\",\"projectManager\":104,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":103,\"sceneName\":\"现场1\",\"singleNum\":\"3010919254\",\"startTime\":\"2023-10-27 17:33:46\",\"subcontractingUnit\":\"分包1\",\"typeId\":2,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市成华区龙港路399号\",\"workHeader\":104,\"workPeopleNum\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:38:43', 363, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (688, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, '18008172471', '维修部', '/operations/add', '192.168.110.10', '内网IP', '{\"addUserIds\":[104,103],\"borrowUserIds\":[104,103],\"content\":\"12\",\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:41:46\",\"endTime\":\"2023-10-27 17:40:06\",\"engineeringName\":\"工程2\",\"id\":22,\"lat\":\"21.651041\",\"lon\":\"110.925975\",\"projectDepartment\":\"项目部1\",\"projectManager\":104,\"projectType\":1,\"riskLevel\":2,\"safetyOfficer\":104,\"sceneName\":\"现场2\",\"singleNum\":\"3084759368\",\"startTime\":\"2023-10-27 17:40:06\",\"subcontractingUnit\":\"分包2\",\"typeId\":1,\"voltageLevel\":\"1\",\"workAddress\":\"广东省茂名市茂南区光华南路178号\",\"workHeader\":104,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:41:47', 273, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (689, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, '18008172471', '维修部', '/operations/add', '192.168.110.10', '内网IP', '{\"addUserIds\":[103,104],\"content\":\"豆腐干岁的法国岁的法国岁的法国反对\",\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:43:23\",\"endTime\":\"2023-10-27 17:42:15\",\"engineeringName\":\"工程3\",\"id\":23,\"lat\":\"23.662887\",\"lon\":\"111.402345\",\"projectDepartment\":\"项目部4\",\"projectManager\":104,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场4\",\"singleNum\":\"3083144754\",\"startTime\":\"2023-10-27 17:42:15\",\"subcontractingUnit\":\"分包4\",\"typeId\":2,\"voltageLevel\":\"2\",\"workAddress\":\"广西壮族自治区梧州市苍梧县旺甫镇\",\"workHeader\":104,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:43:23', 299, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (690, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, '18008172471', '维修部', '/operations/editProjectManager', '192.168.110.10', '内网IP', '{\"id\":15,\"projectManager\":104}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:44:25', 45, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (691, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, '18008172471', '维修部', '/operations/editProjectManager', '192.168.110.10', '内网IP', '{\"id\":15,\"projectManager\":104}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:44:39', 45, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (692, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, '18008172471', '维修部', '/operations/editProjectManager', '192.168.110.10', '内网IP', '{\"id\":20,\"projectManager\":104}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:45:29', 48, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (693, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, '18008172471', '维修部', '/operations/editProjectManager', '192.168.110.10', '内网IP', '{\"id\":20,\"projectManager\":104}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:45:50', 36, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (694, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, '18008172471', '维修部', '/operations/auditWorkUpdate', '192.168.110.10', '内网IP', '{\"auditState\":1,\"recordId\":25}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:46:14', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (695, '现场作业-修改现场作业负责人', 12, 'com.ruoyi.web.controller.api.TOperationsController.editWorkHeader()', 'POST', 1, '18008172471', '维修部', '/operations/editWorkHeader', '192.168.110.10', '内网IP', '{\"id\":20,\"workHeader\":104}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:48:53', 47, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (696, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, '18008172471', '维修部', '/operations/auditWorkUpdate', '192.168.110.10', '内网IP', '{\"auditState\":1,\"recordId\":27}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:49:48', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (697, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, '18008172471', '维修部', '/operations/add', '192.168.110.10', '内网IP', '{\"addUserIds\":[103,104],\"content\":\"作业5\",\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 17:53:45\",\"endTime\":\"2023-10-27 17:52:15\",\"engineeringName\":\"工程5\",\"id\":24,\"lat\":\"\",\"lon\":\"\",\"projectDepartment\":\"项目部1\",\"projectManager\":104,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":104,\"sceneName\":\"现场5\",\"singleNum\":\"3070111974\",\"startTime\":\"2023-10-27 17:52:15\",\"subcontractingUnit\":\"分包1\",\"typeId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"\",\"workHeader\":104,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 17:53:45', 273, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (698, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, '18008172471', '维修部', '/operations/add', '192.168.110.10', '内网IP', '{\"addUserIds\":[103,104],\"content\":\"学习类\",\"createBy\":\"18008172471\",\"createTime\":\"2023-10-27 18:16:41\",\"endTime\":\"2023-10-27 18:16:01\",\"engineeringName\":\"工程6\",\"id\":25,\"lat\":\"21.651041\",\"lon\":\"110.925975\",\"projectDepartment\":\"项目部1\",\"projectManager\":104,\"projectType\":1,\"riskLevel\":5,\"safetyOfficer\":104,\"sceneName\":\"现场6\",\"singleNum\":\"3040115448\",\"startTime\":\"2023-10-27 18:16:01\",\"subcontractingUnit\":\"分包1\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"广东省茂名市茂南区光华南路178号\",\"workHeader\":104,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-27 18:16:41', 292, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (699, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, '18008172471', '维修部', '/system/user/deleteById/103', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 09:43:25', 41, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (700, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, '18008172471', '维修部', '/system/user/add', '192.168.110.10', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":3,\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"deptId\":4,\"healthCondition\":1,\"idCard\":\"51234124323412341234\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 09:44:23', 411, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (701, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:51:43', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (702, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:51:53', 22, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (703, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:51:58', 22, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (704, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:53:03', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (705, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:53:09', 21, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (706, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:54:21', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (707, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:57:05', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (708, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:57:16', 29, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (709, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 09:58:08', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (710, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', '开发部', '/system/user/add', '192.168.110.103', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199906012156\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":110,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 10:01:58', 515, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (711, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:02:02', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (712, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"endTime\":\"2023-10-28 10:03:12\",\"engineeringName\":\"名称88\",\"id\":26,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-28 10:03:12\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 10:05:48', 258, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (713, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:06:14', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (714, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:08:07', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (715, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:08:22', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (716, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3077652142\",\"startTime\":\"2023-10-28 10:06:38\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 10:08:33', 282, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (717, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:08:40', 25, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (718, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:09:10', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (719, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:09:33', 25, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (720, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:10:16\",\"endTime\":\"2023-10-28 10:09:33\",\"engineeringName\":\"名称8812\",\"id\":28,\"lat\":\"30.586922\",\"lon\":\"104.055732\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场顾666\",\"singleNum\":\"3078106914\",\"startTime\":\"2023-10-28 10:09:33\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道西段399号\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 10:10:16', 282, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (721, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:10:18', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (722, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:10:58', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (723, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:11:16', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (724, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:14:00', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (725, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:15:05', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (726, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:15:14', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (727, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:15:54', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (728, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:16:33', 59, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (729, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:17:31', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (730, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:17:56', 24, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (731, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:19:11', 30, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (732, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:19:40', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (733, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:20:37', 44, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (734, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:30:07', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (735, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:30:49', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (736, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:31:10', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (737, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:32:13', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (738, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:32:38', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (739, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:33:41', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (740, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:33:56', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (741, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:34:14', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (742, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:36:55', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (743, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:37:43', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (744, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:38:57', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (745, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:40:40', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (746, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:42:25', 30, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (747, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:42:43', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (748, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:45:26', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (749, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:45:36', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (750, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:46:52', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (751, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:47:39', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (752, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:47:47', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (753, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:47:58', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (754, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:51:59', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (755, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:52:29', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (756, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 10:53:16', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (757, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:07:25', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (758, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:15:16', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (759, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:16:42', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (760, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:17:19', 24, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (761, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:19:32', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (762, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:19:44', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (763, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:20:08', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (764, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:20:30', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (765, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:20:53', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (766, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:21:04', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (767, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:21:07', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (768, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:21:35', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (769, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:21:56', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (770, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:22:52', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (771, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:23:32', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (772, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:23:53', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (773, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:24:04', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (774, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:24:13', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (775, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:24:24', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (776, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:24:36', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (777, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:24:51', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (778, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:25:13', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (779, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 11:25:58\",\"pictures\":\"http://tmp/4EdsJFiTDyLe6c564420f68dae0d2fcc8ae57d63c929.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"1552\",\"userId\":105}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createTime\' in \'field list\'\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TProblemMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.TProblemMapper.insertTProblem-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into t_problem          ( userId,             problemFeedback,             pictures,             positioning,             positionLon,             positionLat,             createTime,                                       createBy )           values ( ?,             ?,             ?,             ?,             ?,             ?,             ?,                                       ? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createTime\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'createTime\' in \'field list\'', '2023-10-28 11:26:02', 138, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (780, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.29', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:27:24', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (781, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:28:30', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (782, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, 'admin', '开发部', '/problem/addProblem', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-28 11:29:58\",\"pictures\":\"string\",\"positionLat\":\"string\",\"positionLon\":\"string\",\"positioning\":\"string\",\"problemFeedback\":\"string\",\"userId\":1}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createTime\' in \'field list\'\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TProblemMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.TProblemMapper.insertTProblem-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into t_problem          ( userId,             problemFeedback,             pictures,             positioning,             positionLon,             positionLat,             createTime,                                       createBy )           values ( ?,             ?,             ?,             ?,             ?,             ?,             ?,                                       ? )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'createTime\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'createTime\' in \'field list\'', '2023-10-28 11:30:02', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (783, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:30:47', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (784, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, 'admin', '开发部', '/problem/addProblem', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-10-28 11:30:46\",\"id\":13,\"pictures\":\"string\",\"positionLat\":\"string\",\"positionLon\":\"string\",\"positioning\":\"string\",\"problemFeedback\":\"string\",\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 11:30:50', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (785, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 11:31:06\",\"id\":14,\"pictures\":\"http://tmp/1z8lOXk1uuJj22ab24850bba9fef7f0325cedf8cfdd2.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"3\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 11:31:10', 45, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (786, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:31:34', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (787, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:32:22', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (788, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:34:08', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (789, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:34:47', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (790, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:35:41', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (791, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:38:25', 39, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (792, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:38:48', 76, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (793, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:39:03', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (794, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:39:36', 24, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (795, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:40:38', 30, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (796, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:41:01', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (797, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:41:50', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (798, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:42:53', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (799, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:43:42', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (800, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:44:28', 22, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (801, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:44:39', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (802, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:44:49', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (803, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:45:12', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (804, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 11:45:10\",\"id\":15,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/65c6adc776d64c339c7bca33ea08f816.jpg,https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/636ea96fb3b94f4391ccf3e527d4cde9.jpg,https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/812700da358d47e8b28a57f5b1438c9b.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"12312\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 11:45:13', 57, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (805, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:45:23', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (806, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:45:46', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (807, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:45:48', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (808, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:46:46', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (809, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:47:58', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (810, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 11:48:07\",\"id\":16,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/a625fc01d66b470aba70fd1b82d8e049.jpg,https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/9031e65ec4714b48a410ab01065d580e.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"反馈问题啊哈哈哈\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 11:48:10', 49, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (811, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 11:48:35\",\"id\":17,\"pictures\":\"\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"反馈问题啊哈哈哈\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 11:48:38', 41, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (812, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:48:53', 21, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (813, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 11:49:05\",\"id\":18,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/10ea959528914b3eb2074ae3a745e178.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"1\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 11:49:09', 48, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (814, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:49:19', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (815, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:49:42', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (816, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:50:26', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (817, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 11:50:52', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (818, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 12:01:51', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (819, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:13:06', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (820, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:13:49', 24, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (821, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:14:04', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (822, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:16:02', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (823, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:16:19', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (824, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:18:21', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (825, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:20:08', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (826, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:20:40', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (827, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:21:09', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (828, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:22:41', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (829, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:22:46', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (830, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:24:33', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (831, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:25:41', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (832, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:26:12', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (833, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:30:15', 28, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (834, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"开发\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"}]}', 0, NULL, '2023-10-28 14:30:42', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (835, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.103', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":110,\"roleName\":\"维修组\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 14:33:06', 95, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (836, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.103', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":110,\"roleName\":\"维修组\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 14:34:22', 84, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (837, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18008172471', '维修部', '/system/role', '192.168.110.10', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":110,\"roleName\":\"维修组\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 14:34:34', 79, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (838, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '192.168.110.103', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":110,\"roleName\":\"维修组\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 14:34:36', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (839, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, '18008172471', '维修部', '/system/user/edit', '192.168.110.10', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyType\":1,\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199906012156\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-28 14:35:30\",\"userId\":106,\"workType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 14:35:30', 32, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (840, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 14:45:44', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (841, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 14:59:06\",\"id\":19,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/8732f5e57d4a43b5b02ad8d16782d80c.jpg,https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/a0405d11d70d4be191d7ad3c9fdeb897.jpg,https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/f5912ea7ebfd43ed8b396d04a95ab2a9.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"1312\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 14:59:10', 47, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (842, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:00:16', 21, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (843, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:02:24', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (844, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:02:50', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (845, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:05:33', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (846, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:07:27', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (847, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:07:40', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (848, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":28}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:08:25', 45, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (849, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":27}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:08:28', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (850, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:12:22', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (851, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:14:07', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (852, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:14:17', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (853, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:17:22', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (854, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:18:09', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (855, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:21:23', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (856, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106,104,105]}', NULL, 0, NULL, '2023-10-28 15:21:28', 731, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (857, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:25:26', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (858, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[]}', NULL, 0, NULL, '2023-10-28 15:25:31', 652, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (859, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:25:45', 364, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (860, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:26:15', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (861, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:26:18', 355, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (862, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.29', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:27:34', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (863, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:29:54', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (864, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:29:59', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (865, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.29', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:30:17', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (866, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:32:44', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (867, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:33:07', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (868, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 15:39:12\",\"id\":20,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/ae81a90ace07451a931f06fd4446a7e3.jpg\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"123131\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:39:16', 54, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (869, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 15:39:18\",\"id\":21,\"pictures\":\"\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"123131\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:39:22', 47, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (870, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 15:39:18\",\"id\":22,\"pictures\":\"\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"123131\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:39:22', 32, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (871, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 15:39:18\",\"id\":23,\"pictures\":\"\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"123131\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:39:22', 26, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (872, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 15:39:19\",\"id\":24,\"pictures\":\"\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"123131\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:39:23', 46, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (873, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '15983795014', '维修部', '/problem/addProblem', '192.168.110.13', '内网IP', '{\"createBy\":\"15983795014\",\"createTime\":\"2023-10-28 15:39:19\",\"id\":25,\"pictures\":\"\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"positioning\":\"四川省成都市武侯区武侯祠大街264号\",\"problemFeedback\":\"123131\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-28 15:39:23', 37, NULL, '超级管理员', '15983795014', 105, '龚金宝');
INSERT INTO `sys_oper_log` VALUES (874, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:41:26', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (875, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:41:29', 443, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (876, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.29', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:42:43', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (877, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.29', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:42:53', 537, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (878, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:43:05', 33, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (879, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:43:08', 345, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (880, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:43:40', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (881, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:43:42', 277, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (882, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:44:24', 21, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (883, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:44:27', 381, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (884, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:45:14', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (885, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:45:17', 381, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (886, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:47:25', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (887, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:47:27', 379, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (888, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.29', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:47:46', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (889, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.29', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:47:51', 312, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (890, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 15:50:34', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (891, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18008172471', '维修部', '/user/exportUserQrCode', '192.168.110.10', '内网IP', '{\"userIdS\":[1,106]}', NULL, 0, NULL, '2023-10-28 15:50:39', 395, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (892, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 16:36:39', 26, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (893, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, 'admin', '开发部', '/message/readAll', '127.0.0.1', '内网IP', '', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'ifRead\' not found. Available parameters are [userId, param1]', '2023-10-28 16:47:11', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (894, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, 'admin', '开发部', '/message/readAll', '127.0.0.1', '内网IP', '', NULL, 1, 'Mapper method \'com.ruoyi.system.mapper.TMessageMapper.readAll\' has an unsupported return type: class java.lang.String', '2023-10-28 16:47:47', 64, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (895, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, 'admin', '开发部', '/message/readAll', '127.0.0.1', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":11}', 0, NULL, '2023-10-28 16:48:48', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (896, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, '18008172471', '维修部', '/train/add', '192.168.110.10', '内网IP', '{\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 16:51:14\",\"id\":15,\"singleNum\":\"3072158558\",\"trainFileVideos\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":15,\"videoDuration\":58}],\"trainFiles\":[{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/11.25产品沟通修改意见.docx\",\"fileName\":\"11.25产品沟通修改意见.docx\",\"fileSize\":894710.0,\"fileType\":1,\"trainId\":15},{\"fileAddress\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":15,\"videoDuration\":58}],\"trainName\":\"喜喜喜喜喜喜喜喜喜喜\",\"trainTypeId\":22,\"userIds\":[104,105]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-28 16:51:15', 961, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (897, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, '18008172471', '维修部', '/message/readAll', '192.168.110.13', '内网IP', '', NULL, 1, 'nested exception is org.apache.ibatis.binding.BindingException: Parameter \'ifRead\' not found. Available parameters are [userId, param1]', '2023-10-28 16:51:23', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (898, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, 'admin', '开发部', '/message/readAll', '127.0.0.1', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":11}', 0, NULL, '2023-10-28 16:53:32', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (899, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, '18008172471', '维修部', '/message/readAll', '192.168.110.13', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, NULL, '2023-10-28 16:53:47', 50, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (900, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 17:42:07', 32, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (901, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 17:42:13', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (902, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 17:42:52', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (903, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-28 17:54:08', 36, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (904, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '192.168.110.103', '内网IP', '{\"endTime\":\"2023-10-31 00:00:00\",\"id\":28,\"startTime\":\"2023-10-30 00:00:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 10:13:56', 82, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (905, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '192.168.110.103', '内网IP', '{\"endTime\":\"2023-10-31 00:00:00\",\"id\":28,\"startTime\":\"2023-10-30 00:00:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 10:23:29', 45, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (906, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '127.0.0.1', '内网IP', '{\"changeDescription\":\"2023-10-31 12:00\",\"id\":28,\"startTime\":\"2023-10-31 14:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 10:27:20', 2839, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (907, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '127.0.0.1', '内网IP', '{\"endTime\":\"2023-10-31 12:00\",\"id\":28,\"startTime\":\"2023-10-31 14:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 10:27:58', 46, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (908, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '192.168.110.103', '内网IP', '{\"endTime\":\"2023-10-31 10:10\",\"id\":28,\"startTime\":\"2023-10-30 10:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 10:29:31', 98, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (909, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 11:13:05\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =null\' at line 3\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TOperationsToUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update  t_operations_to_user set positionLon =?,positionLat=?                               ifClockIn =1                                            where userId =?\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =null\' at line 3\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =null\' at line 3', '2023-10-30 11:13:13', 67, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (910, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:15:11\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =null\' at line 3\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TOperationsToUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update  t_operations_to_user set positionLon =?,positionLat=?                               ifClockIn =1                                            where userId =?\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =null\' at line 3\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =null\' at line 3', '2023-10-30 11:15:19', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (911, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:17:34\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =106\' at line 3\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TOperationsToUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update  t_operations_to_user set positionLon =?,positionLat=?                               ifClockIn =1                                            where userId =?\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =106\' at line 3\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =106\' at line 3', '2023-10-30 11:17:42', 36, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (912, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:17:47\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =106\' at line 3\r\n### The error may exist in file [D:\\MingXingDianLi\\ruoyi-system\\target\\classes\\mapper\\system\\TOperationsToUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update  t_operations_to_user set positionLon =?,positionLat=?                               ifClockIn =1                                            where userId =?\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =106\' at line 3\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'ifClockIn =1\n             \n             \n               where userId =106\' at line 3', '2023-10-30 11:18:07', 12176, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (913, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:19:14\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:19:22', 31, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (914, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:21:16\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:21:24', 59, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (915, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:22:48\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:22:57', 58, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (916, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:23:53\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:24:01', 70, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (917, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-10-30 11:24:06\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:24:14', 43, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (918, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 11:25:02\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:25:10', 31, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (919, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, '18008172471', '维修部', '/train/add', '192.168.110.10', '内网IP', '{\"createBy\":\"18008172471\",\"createTime\":\"2023-10-30 11:27:40\",\"id\":16,\"singleNum\":\"3029159661\",\"trainFileVideos\":[{\"fileAddress\":\"操作成功\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":16},{\"fileSize\":null,\"trainId\":16}],\"trainFiles\":[{\"fileAddress\":\"操作成功\",\"fileName\":\"切换端口.docx\",\"fileSize\":10557.0,\"fileType\":1,\"trainId\":16},{\"fileAddress\":\"操作成功\",\"fileName\":\"11.25产品沟通修改意见.docx\",\"fileSize\":894710.0,\"fileType\":1,\"trainId\":16},{\"fileAddress\":\"操作成功\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":16},{\"fileSize\":null,\"trainId\":16}],\"trainName\":\"学习1\",\"trainTypeId\":27,\"userIds\":[104,105]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:27:41', 512, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (920, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":28,\"suspendReason\":\"暂停\",\"workState\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 11:50:22', 47, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (921, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 14:57:09', 36, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (922, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:01:58', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (923, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:10:25\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:10:34', 807, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (924, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":28,\"workState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:10:44', 52, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (925, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":28,\"workState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:12:34', 51, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (926, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":28,\"workState\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:13:00', 29, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (927, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:18:01\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":2,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:18:10', 58, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (928, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-10-30 15:18:31.395\",\"id\":8,\"trainFileId\":52,\"userId\":106,\"watchLocation\":50,\"watchRecordDuration\":60}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:18:39', 39, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (929, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:25:57', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (930, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:27:43\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:27:51', 56, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (931, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:28:08\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:28:16', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (932, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:29:54\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:30:02', 44, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (933, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:30:56\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:31:04', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (934, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 15:34:29\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:34:38', 119, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (935, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":27,\"workState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 15:43:24', 106, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (936, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:50:45', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (937, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:52:36', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (938, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:53:50', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (939, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 15:57:54', 22, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (940, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:58:07', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (941, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:58:18', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (942, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 15:59:35', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (943, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:00:18', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (944, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 16:00:28', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (945, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:01:09', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (946, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 16:01:44', 26402, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (947, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 16:02:25', 19402, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (948, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 16:04:07', 18669, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (949, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:04:43', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (950, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 16:05:11', 11422, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (951, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:05:24', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (952, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', NULL, 1, 'Text \'2432-34-12\' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 34', '2023-10-30 16:06:07', 23859, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (953, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3077652142\",\"startTime\":\"2023-10-28 10:06:38\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-30 10:44:52\",\"loginIp\":\"192.168.110.34\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-28 15:08:28\",\"userId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":3},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":10', 0, NULL, '2023-10-30 16:06:30', 35, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (954, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:06:48', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (955, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:08:48', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (956, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:09:28', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (957, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:10:21', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (958, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.13', '内网IP', '{\"headerId\":104,\"id\":27,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 16:10:25', 111, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (959, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:10:51', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (960, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.13', '内网IP', '{\"headerId\":105,\"id\":27,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 16:10:57', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (961, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:12:14', 24, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (962, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.13', '内网IP', '{\"headerId\":104,\"id\":27,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 16:12:17', 50, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (963, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:23:01', 28, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (964, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.13', '内网IP', '{\"headerId\":1,\"id\":27,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 16:23:07', 59, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (965, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:23:39', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (966, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:26:53', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (967, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:29:42', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (968, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:31:09', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (969, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:33:50', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (970, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:35:51', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (971, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:36:29', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (972, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:37:16', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (973, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:38:15', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (974, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:42:16', 28, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (975, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18008172471', '维修部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:42:58', 24, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (976, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:43:06', 24, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (977, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:46:21', 23, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (978, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:47:40', 25, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (979, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.13', '内网IP', '{\"headerId\":1,\"id\":27,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 16:48:01', 54, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (980, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:48:29', 21, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (981, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.13', '内网IP', '{\"headerId\":1,\"id\":27,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 16:48:48', 47, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (982, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:55:31', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (983, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:57:58', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (984, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:58:14', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (985, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 16:58:25', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (986, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"borrowUserIds\":[104],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:14:31\",\"endTime\":\"2023-10-28 17:12:45\",\"engineeringName\":\"专属项目\",\"id\":30,\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场444\",\"singleNum\":\"3021117805\",\"startTime\":\"2023-10-28 17:12:45\",\"subcontractingUnit\":\"单位\",\"typeId\":2,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:14:32', 332, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (987, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":30}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-30 17:14:35', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (988, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 17:15:24', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (989, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 17:15:36', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (990, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 17:15:53', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (991, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '13404089107', '开发部', '/operations/editWorkUser', '192.168.110.13', '内网IP', '{\"addUserIds\":[],\"borrowUserIds\":[],\"id\":30}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:15:56', 67, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (992, '现场作业-取消现场作业', 3, 'com.ruoyi.applet.controller.OperationsController.deleteById()', 'DELETE', 2, '13404089107', '开发部', '/operations/deleteById/30', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-30 17:16:07', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (993, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 17:16:21', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (994, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[106,1],\"borrowUserIds\":[105,104],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"typeId\":2,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:17:38', 322, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (995, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":31}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-30 17:17:42', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (996, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 17:17:47\",\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:17:55', 54, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (997, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"suspendReason\":\"暂停\",\"workState\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:18:59', 34, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (998, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 17:19:00', 26, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (999, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '13404089107', '开发部', '/operations/editWorkUser', '192.168.110.13', '内网IP', '{\"addUserIds\":[1,106],\"borrowUserIds\":[],\"id\":27}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:19:06', 116, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1000, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"suspendReason\":\"暂停\",\"workState\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:19:34', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1001, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"workState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:21:11', 44, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1002, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"suspendReason\":\"暂停\",\"workState\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:21:20', 118, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1003, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"workState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:21:23', 102, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1004, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"workState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:48:46', 60, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1005, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"workState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:49:41', 9, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1006, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"workState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:51:55', 103, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1007, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":31,\"workState\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 17:55:40', 165, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1008, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 18:01:52', 22, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1009, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 18:07:40', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1010, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 18:24:23', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1011, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.103', '内网IP', '{\"headerId\":1,\"id\":27,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 18:24:35', 45, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1012, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 18:30:58', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1013, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.103', '内网IP', '{\"headerId\":106,\"id\":27,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 18:31:02', 45, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1014, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 18:39:37', 34, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1015, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.13', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-30 18:58:12', 31, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1016, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-10-30 19:29:34.257\",\"id\":9,\"trainFileId\":19,\"watchLocation\":6,\"watchRecordDuration\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 19:29:34', 65, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1017, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-10-30 19:29:54.688\",\"id\":10,\"trainFileId\":19,\"watchLocation\":3,\"watchRecordDuration\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 19:29:54', 141, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1018, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-10-30 19:31:08.226\",\"id\":11,\"trainFileId\":19,\"watchLocation\":1,\"watchRecordDuration\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 19:31:08', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1019, '现场作业-调整时间申请', 2, 'com.ruoyi.applet.controller.OperationsController.updateTime()', 'POST', 2, '13404089107', '开发部', '/operations/updateTime', '127.0.0.1', '内网IP', '{\"endTime\":\"2023-10-30 12:00\",\"operationsId\":27,\"startTime\":\"2023-10-30 14:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 19:46:30', 520, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1020, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-10-30 20:50:06.678\",\"id\":12,\"trainFileId\":19,\"userId\":104,\"watchLocation\":10,\"watchRecordDuration\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:50:06', 62, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1021, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":2,\"watchRecordDuration\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:51:34', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1022, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":12,\"watchRecordDuration\":12}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:52:10', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1023, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":14,\"watchRecordDuration\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:53:26', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1024, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-10-30 20:53:48.157\",\"id\":13,\"trainFileId\":20,\"userId\":104,\"watchLocation\":2,\"watchRecordDuration\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:53:48', 42, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1025, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":3,\"watchRecordDuration\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:55:17', 12907, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1026, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":10,\"watchRecordDuration\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:56:19', 45766, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1027, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":7,\"watchRecordDuration\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:57:48', 61, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1028, '现场作业-人员代打卡', 2, 'com.ruoyi.applet.controller.OperationsController.helpClockIn()', 'POST', 2, '13404089107', '开发部', '/operations/helpClockIn', '192.168.110.103', '内网IP', '{\"clockInRemark\":\"忘记带手机\",\"clockInTime\":\"2023-10-30 20:57:57\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"replaceClockInUserId\":106,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:57:57', 62, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1029, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-30 20:58:16\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":1,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:58:16', 46, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1030, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkState', '192.168.110.103', '内网IP', '{\"operationsId\":27,\"workState\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:58:19', 43, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1031, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":20,\"watchRecordDuration\":20}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:58:25', 33, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1032, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":39,\"watchRecordDuration\":39}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:58:36', 49, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1033, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":78,\"watchRecordDuration\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:59:34', 109, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1034, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":80,\"watchRecordDuration\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 20:59:44', 47, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1035, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":90,\"watchRecordDuration\":8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 21:00:10', 55, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1036, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":117,\"watchRecordDuration\":27}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-30 21:00:58', 32, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1037, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:46:55', 62, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1038, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:47:47', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1039, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:48:17', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1040, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:49:34', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1041, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:53:53', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1042, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":9,\"watchRecordDuration\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:54:07', 51, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1043, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":-8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 09:55:02', 51, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1044, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-10-31 10:17:51.491\",\"id\":14,\"trainFileId\":22,\"userId\":106,\"watchLocation\":20,\"watchRecordDuration\":20}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:17:53', 17023, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1045, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":22,\"watchLocation\":40,\"watchRecordDuration\":30}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:18:16', 5553, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1046, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":121,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:22:26', 13658, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1047, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-10-31 10:22:35.927\",\"id\":15,\"trainFileId\":22,\"userId\":104,\"watchLocation\":4,\"watchRecordDuration\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:22:37', 54, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1048, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":22,\"watchLocation\":11,\"watchRecordDuration\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:22:56', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1049, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":22,\"watchLocation\":13,\"watchRecordDuration\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:23:04', 36, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1050, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":22,\"watchLocation\":20,\"watchRecordDuration\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:23:50', 48, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1051, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:29:39', 33, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1052, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.83', '内网IP', '{\"trainFileId\":19,\"watchLocation\":5,\"watchRecordDuration\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:30:51', 47, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1053, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18008172471', '维修部', '/train/addViewTime', '192.168.110.83', '内网IP', '{\"trainFileId\":19,\"watchLocation\":8,\"watchRecordDuration\":8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:31:54', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1054, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '13404089107', '开发部', '/operations/sign', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-31 10:44:56\",\"operationsId\":28,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"type\":2,\"userId\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 10:44:57', 53, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1055, '培训信息-阅读文件', 1, 'com.ruoyi.applet.controller.TTrainController.readTime()', 'POST', 2, '18008172471', '维修部', '/train/readTime', '192.168.110.10', '内网IP', '{\"trainFileId\":19,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 11:47:42', 69, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1056, '现场作业-人员代签退', 2, 'com.ruoyi.applet.controller.OperationsController.helpClockOut()', 'POST', 2, '13404089107', '开发部', '/operations/helpClockOut', '192.168.110.103', '内网IP', '{\"clockInTime\":\"2023-10-31 14:47:42\",\"operationsId\":27,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"replaceClockInUserId\":106,\"userId\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 14:47:43', 46, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1057, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:18', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1058, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:23', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1059, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:28', 19, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1060, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:33', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1061, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:38', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1062, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:43', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1063, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:48', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1064, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:53', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1065, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:27:58', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1066, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:28:03', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1067, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:28:08', 0, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1068, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:43:10', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1069, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:43:14', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1070, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:43:20', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1071, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:27', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1072, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:31', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1073, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:37', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1074, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:41', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1075, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:47', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1076, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:51', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1077, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:44:56', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1078, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:02', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1079, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:06', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1080, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:11', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1081, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:17', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1082, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:21', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1083, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:26', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1084, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:32', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1085, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"operationsId\":20}', NULL, 1, '', '2023-10-31 15:45:36', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1086, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 15:47:37', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1087, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 15:47:41', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1088, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 15:47:47', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1089, '现场作业-30M定位刷新', 1, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 15:47:51', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1090, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-31 16:10:19', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1091, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.103', '内网IP', '{\"headerId\":104,\"id\":26,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 16:10:24', 60, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1092, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '192.168.110.103', '内网IP', '{\"endTime\":\"2023-11-01 11:11\",\"id\":26,\"startTime\":\"2023-10-31 04:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 16:14:17', 57, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1093, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-31 17:33:43', 32, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1094, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '13404089107', '开发部', '/operations/updateWorkHeader', '192.168.110.103', '内网IP', '{\"headerId\":105,\"id\":26,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:33:47', 47, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1095, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '13404089107', '开发部', '/operations/editWorkTime', '192.168.110.103', '内网IP', '{\"endTime\":\"2023-11-30 05:11\",\"id\":26,\"startTime\":\"2023-10-31 05:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:34:31', 47, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1096, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":44,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:34:42', 109, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1097, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":41,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:48:11', 125, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1098, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":2,\"id\":42,\"remark\":\"拒绝\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:48:28', 47, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1099, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":43,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:48:46', 94, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1100, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":48,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:49:02', 109, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1101, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":49,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:52:56', 189315, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1102, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:55:26', 39527, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1103, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:57:09', 67048, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1104, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:57:56', 30845, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1105, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":28,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:58:29', 11018, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1106, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":29,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:58:40', 4343, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1107, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":31,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:59:02', 16822, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1108, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":2,\"id\":32,\"remark\":\"拒绝\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:59:48', 47, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1109, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":56,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:59:53', 91, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1110, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 17:59:54', 95, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1111, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":57,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:00:08', 87, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1112, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:00:44', 105, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1113, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:01:17', 103, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1114, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:02:08', 27863, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1115, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:04:46', 9437, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1116, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:06:39', 178, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1117, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"borrowUserIds\":[105],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-31 18:07:08\",\"endTime\":\"2023-11-01 18:05:22\",\"engineeringName\":\"专属项目1111\",\"id\":32,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":4,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3081130905\",\"startTime\":\"2023-11-01 18:05:22\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:07:09', 455, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1118, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":32}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-31 18:07:30', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1119, '消息中心-一键已读', 2, 'com.ruoyi.applet.controller.TMessageController.readAll()', 'POST', 1, '18008172471', '维修部', '/message/readAll', '192.168.110.10', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":7}', 0, NULL, '2023-10-31 18:10:34', 43, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1120, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":47,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:18:31', 344, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1121, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:49:20', 33, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1122, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:49:27', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1123, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:52:17', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1124, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 18:52:29', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1125, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:52:30', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1126, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 18:52:30', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1127, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 18:57:33', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1128, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:57:35', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1129, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 18:57:35', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1130, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 18:57:53', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1131, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:57:54', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1132, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 18:57:54', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1133, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[],\"two\":[1,106,105]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 18:59:17', 156, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1134, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":2,\"id\":65,\"remark\":\"sss\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:00:40', 55, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1135, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":2,\"id\":66,\"remark\":\"sss\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:00:43', 40, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1136, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":2,\"id\":67,\"remark\":\"sss\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:00:44', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1137, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:01:05', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1138, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:01:07', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1139, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:01:07', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1140, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[1,105],\"two\":[106]}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3', '2023-10-31 19:01:18', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1141, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:01:20', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1142, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:01:21', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1143, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:01:21', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1144, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:02:14', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1145, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:02:15', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1146, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:02:15', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1147, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:02:35', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1148, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:02:36', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1149, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:02:36', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1150, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:04:03', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1151, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:04:04', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1152, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:04:04', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1153, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:05:19', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1154, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:05:20', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1155, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:05:20', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1156, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:06:05', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1157, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:06:06', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1158, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:06:06', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1159, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:06:20', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1160, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:06:21', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1161, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:06:21', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1162, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:06:33', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1163, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:06:34', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1164, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:06:34', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1165, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[1,105],\"two\":[106]}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3', '2023-10-31 19:07:16', 46502, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1166, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[1,105],\"two\":[106]}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 3', '2023-10-31 19:08:18', 45266, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1167, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:09:31', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1168, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:09:32', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1169, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:09:32', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1170, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:10:07', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1171, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[1,105],\"two\":[106]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:10:08', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1172, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:10:08', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1173, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:10:08', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1174, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:10:15', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1175, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:10:16', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1176, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:10:16', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1177, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:10:52', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1178, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:10:53', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1179, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:10:53', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1180, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[1,105],\"two\":[106]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:10:55', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1181, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:11:07', 25, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1182, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:11:08', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1183, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:11:08', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1184, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:11:49', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1185, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:11:50', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1186, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:11:50', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1187, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:12:25', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1188, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:12:26', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1189, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:12:26', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1190, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:12:29', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1191, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:12:30', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1192, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:12:30', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1193, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":32,\"one\":[1,105],\"two\":[106]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:13:12', 34335, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1194, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:13:21', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1195, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:13:23', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1196, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:13:24', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1197, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:13:25', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1198, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":70,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:13:30', 73, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1199, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:13:46', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1200, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:13:47', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1201, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:13:47', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1202, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:14:13', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1203, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:14:14', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1204, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:14:14', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1205, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:15:36', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1206, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:15:37', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1207, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:15:37', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1208, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:16:07', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1209, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:16:08', 4, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1210, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:16:08', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1211, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:16:41', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1212, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:16:42', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1213, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:16:42', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1214, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:06', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1215, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:17:07', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1216, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:07', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1217, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:42', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1218, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:17:43', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1219, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:43', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1220, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:50', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1221, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:17:51', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1222, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:51', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1223, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:17:59', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1224, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":20,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:18:00', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1225, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":103,\"sceneName\":\"现场顾666\",\"singleNum\":\"3049116349\",\"startTime\":\"2023-10-28 17:04:19\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-10-31 18:05:10\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"18008172471\",\"updateTime\":\"2023-10-27 17:49:48\",\"userId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":2,\"workState\":5},{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-27 17:06:00\",\"disabled\":false,\"endTime\":\"2023-10-28 17:04:19\",\"engineeringName\":\"名称8812\",\"id\":20,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer', 0, NULL, '2023-10-31 19:18:00', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1226, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"borrowUserIds\":[105],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-31 19:21:12\",\"endTime\":\"2024-10-01 19:19:53\",\"engineeringName\":\"专属项目sss\",\"id\":33,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3029534794\",\"startTime\":\"2024-10-01 19:19:53\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":106,\"workPeopleNum\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:21:12', 418, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1227, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":33}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-31 19:21:29', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1228, '现场作业-修改现场作业', 2, 'com.ruoyi.web.controller.api.TOperationsController.edit()', 'POST', 1, 'admin', '开发部', '/operations/edit', '192.168.110.103', '内网IP', '{\"content\":\"检修\",\"endTime\":\"2023-11-01 19:19:53\",\"engineeringName\":\"专属项目sss\",\"id\":33,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"startTime\":\"2023-11-01 19:19:53\",\"subcontractingUnit\":\"单位\",\"suspendReason\":\"是大家好的\",\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-31 19:22:30\",\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":106}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-31 19:22:30', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1229, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '192.168.110.103', '内网IP', '{\"auditState\":1,\"recordId\":71}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:22:41', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1230, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":33,\"one\":[1,105],\"two\":[106]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:26:57', 232, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1231, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":74,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:27:03', 84, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1232, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-31 19:33:56', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1233, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '13404089107', '开发部', '/operations/editWorkUser', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"borrowUserIds\":[],\"id\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:34:00', 130, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1234, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-31 19:34:06', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1235, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '13404089107', '开发部', '/operations/editWorkUser', '192.168.110.103', '内网IP', '{\"addUserIds\":[104],\"borrowUserIds\":[],\"id\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:34:10', 111, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1236, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":33,\"one\":[1,104],\"two\":[106]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:34:17', 203, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1237, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":79,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:35:00', 40077, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1238, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-31 19:37:16', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1239, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '13404089107', '开发部', '/operations/editWorkUser', '192.168.110.103', '内网IP', '{\"addUserIds\":[1,106],\"borrowUserIds\":[],\"id\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:37:19', 131, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1240, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.103', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-10-31 19:37:22', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1241, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '13404089107', '开发部', '/operations/editWorkUser', '192.168.110.103', '内网IP', '{\"addUserIds\":[105],\"borrowUserIds\":[],\"id\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:37:26', 95, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1242, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '13404089107', '开发部', '/operations/removeUser', '192.168.110.103', '内网IP', '{\"id\":33,\"one\":[1,105],\"two\":[106]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:37:32', 196, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1243, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '13404089107', '开发部', '/operations/examine', '192.168.110.103', '内网IP', '{\"auditState\":1,\"id\":84,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-10-31 19:37:35', 97, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1244, '现场作业-删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.deleteById()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteById/33', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-31 19:38:39', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1245, '现场作业-删除现场作业', 3, 'com.ruoyi.web.controller.api.TOperationsController.deleteById()', 'DELETE', 1, 'admin', '开发部', '/operations/deleteById/32', '192.168.110.103', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-10-31 19:38:41', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1246, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3077652142\",\"startTime\":\"2023-10-28 10:06:38\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 08:54:33\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"13404089107\",\"updateTime\":\"2023-10-31 17:52:44\",\"userId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":1,\"workPeopleNum\":4,\"workState\":5},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"1', 0, NULL, '2023-11-01 09:32:31', 69, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1247, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3077652142\",\"startTime\":\"2023-10-28 10:06:38\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 08:54:33\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,\"updateBy\":\"13404089107\",\"updateTime\":\"2023-10-31 17:52:44\",\"userId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":1,\"workPeopleNum\":4,\"workState\":5},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"1', 0, NULL, '2023-11-01 09:34:02', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1248, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3077652142\",\"startTime\":\"2023-10-28 10:06:38\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 08:54:33\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userN', 0, NULL, '2023-11-01 09:35:13', 82, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1249, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"27\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:08:33\",\"disabled\":false,\"endTime\":\"2023-10-28 10:06:38\",\"engineeringName\":\"名称881sss\",\"id\":27,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":5,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3077652142\",\"startTime\":\"2023-10-28 10:06:38\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 08:54:33\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status', 0, NULL, '2023-11-01 09:36:47', 80, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1250, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', '开发部', '/system/user/add', '192.168.110.103', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":4,\"companyType\":1,\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"workType\":4}', '{\"msg\":\"新增用户\'null\'失败,手机号码已存在\",\"code\":500}', 0, NULL, '2023-11-01 09:42:32', 11, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1251, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', '开发部', '/system/user/add', '192.168.110.103', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 09:42:44', 533, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1252, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 11:10:08\",\"deductIntegral\":1,\"id\":9,\"pictures\":\"\",\"remark\":\"1\",\"userId\":105,\"videos\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:10:08', 595, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1253, '扣除明细-删除扣除明细', 3, 'com.ruoyi.web.controller.api.TDeductIntegralController.remove()', 'DELETE', 1, 'admin', '开发部', '/deductIntegral/deleteByIds/9', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:10:31', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1254, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 11:10:43\",\"deductIntegral\":1,\"id\":10,\"pictures\":\"\",\"remark\":\"1\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:10:43', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1255, '扣除明细-修改扣除明细', 2, 'com.ruoyi.web.controller.api.TDeductIntegralController.edit()', 'POST', 1, 'admin', '开发部', '/deductIntegral/edit', '127.0.0.1', '内网IP', '{\"deductIntegral\":1,\"pictures\":\"\",\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 11:11:15\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2023-11-01 11:11:15', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1256, '扣除明细-修改扣除明细', 2, 'com.ruoyi.web.controller.api.TDeductIntegralController.edit()', 'POST', 1, 'admin', '开发部', '/deductIntegral/edit', '127.0.0.1', '内网IP', '{\"deductIntegral\":1,\"pictures\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/1@2x(1).png\",\"remark\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 11:11:55\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2023-11-01 11:11:55', 15, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1257, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 11:12:20\",\"deductIntegral\":1,\"id\":11,\"pictures\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/1@2x(1).png\",\"remark\":\"是的\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:12:20', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1258, '扣除明细-删除扣除明细', 3, 'com.ruoyi.web.controller.api.TDeductIntegralController.remove()', 'DELETE', 1, 'admin', '开发部', '/deductIntegral/deleteByIds/10', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:12:38', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1259, '扣除明细-删除扣除明细', 3, 'com.ruoyi.web.controller.api.TDeductIntegralController.remove()', 'DELETE', 1, 'admin', '开发部', '/deductIntegral/deleteByIds/11', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:12:43', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1260, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 11:13:56\",\"deductIntegral\":1,\"id\":12,\"pictures\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/1667184912843.jpg\",\"remark\":\"12\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:13:56', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1261, '扣除明细-修改扣除明细', 2, 'com.ruoyi.web.controller.api.TDeductIntegralController.edit()', 'POST', 1, 'admin', '开发部', '/deductIntegral/edit', '127.0.0.1', '内网IP', '{\"deductIntegral\":1,\"pictures\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/1@2x(1).png\",\"remark\":\"12\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 11:14:05\",\"userId\":105}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, NULL, '2023-11-01 11:14:05', 13, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1262, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', '开发部', '/train/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 11:24:08\",\"id\":17,\"singleNum\":\"3301125949\",\"trainFileVideos\":[{\"fileAddress\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":17,\"videoDuration\":0}],\"trainFiles\":[{\"fileAddress\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/11.25产品沟通修改意见.docx\",\"fileName\":\"11.25产品沟通修改意见.docx\",\"fileSize\":894710.0,\"fileType\":1,\"trainId\":17},{\"fileAddress\":\"http://vwpmxwbhv59i.guyubao.com/images/2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":17,\"videoDuration\":0}],\"trainName\":\"测试上传的图片\",\"trainTypeId\":23,\"userIds\":[1,106,107]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:24:09', 1352, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1263, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-11-01 11:26:07.36\",\"id\":16,\"trainFileId\":58,\"userId\":106,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:26:07', 49, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1264, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"createTime\":\"2023-11-01 11:29:11.41\",\"id\":17,\"trainFileId\":26,\"userId\":106,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:29:11', 121, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1265, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":58,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:29:26', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1266, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":58,\"watchLocation\":6,\"watchRecordDuration\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:30:25', 40, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1267, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":58,\"watchLocation\":7,\"watchRecordDuration\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:31:16', 36, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1268, '培训信息-记录播放视频时长', 1, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '13404089107', '开发部', '/train/addViewTime', '192.168.110.10', '内网IP', '{\"trainFileId\":58,\"watchLocation\":12,\"watchRecordDuration\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 11:33:26', 41, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1269, '扣除明细-新增扣除明细', 1, 'com.ruoyi.web.controller.api.TDeductIntegralController.add()', 'POST', 1, 'admin', '开发部', '/deductIntegral/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 11:50:09\",\"deductIntegral\":1,\"id\":13,\"pictures\":\"2023-11-01/14bd238f5f0b4ec6aeb85eb5dee38ed3.jpg\",\"remark\":\"1212\",\"userId\":105,\"videos\":\"2023-11-01/video.mp4\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:50:09', 86, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1270, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/25', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:33', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1271, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/22', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:35', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1272, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/23', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:36', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1273, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/24', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:38', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1274, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/21', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:40', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1275, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/20', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:42', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1276, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/19', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 11:55:44', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1277, '问题反馈-批量删除问题反馈', 3, 'com.ruoyi.web.controller.api.TProblemController.remove()', 'DELETE', 1, 'admin', '开发部', '/problem/deleteByIds/18,17,16,15,14,13,12,1,2', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":9}', 0, NULL, '2023-11-01 11:55:49', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1278, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, '13198619869', '开发部', '/train/add', '127.0.0.1', '内网IP', '{\"createBy\":\"13198619869\",\"createTime\":\"2023-11-01 12:01:29\",\"id\":18,\"singleNum\":\"3300860019\",\"trainFileVideos\":[{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":18,\"videoDuration\":0},{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":18,\"videoDuration\":0}],\"trainFiles\":[{\"fileAddress\":\"2023-11-01/医疗费用合规性检测模型需求说明书.docx\",\"fileName\":\"医疗费用合规性检测模型需求说明书.docx\",\"fileSize\":18982.0,\"fileType\":1,\"trainId\":18},{\"fileAddress\":\"2023-11-01/新建 DOC 文档.doc\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":13824.0,\"fileType\":1,\"trainId\":18},{\"fileAddress\":\"2023-11-01/12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":20894.0,\"fileType\":1,\"trainId\":18},{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":18,\"videoDuration\":0},{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":18,\"videoDuration\":0}],\"trainName\":\"安全说法\",\"trainTypeId\":27,\"userIds\":[1,106,107]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 12:01:30', 1421, NULL, '低级管理员', '13198619869', 107, '陈昆');
INSERT INTO `sys_oper_log` VALUES (1279, '培训信息-修改培训', 2, 'com.ruoyi.web.controller.api.TTrainController.edit()', 'PUT', 1, 'admin', '开发部', '/train/edit', '127.0.0.1', '内网IP', '{\"id\":18,\"trainFileVideos\":[{\"disabled\":false,\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":62,\"trainId\":18,\"videoDuration\":0},{\"disabled\":false,\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":63,\"trainId\":18,\"videoDuration\":0}],\"trainFiles\":[{\"disabled\":false,\"fileName\":\"医疗费用合规性检测模型需求说明书.docx\",\"fileSize\":18982.0,\"fileType\":1,\"id\":59,\"trainId\":18},{\"disabled\":false,\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":13824.0,\"fileType\":1,\"id\":60,\"trainId\":18},{\"disabled\":false,\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":20894.0,\"fileType\":1,\"id\":61,\"trainId\":18},{\"fileAddress\":\"2023-11-01/12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileName\":\"12【商户】授权结算委托书(对私结算)(纸质合同版).docx\",\"fileSize\":20894.0,\"fileType\":1,\"trainId\":18},{\"disabled\":false,\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":62,\"trainId\":18,\"videoDuration\":0},{\"disabled\":false,\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"id\":63,\"trainId\":18,\"videoDuration\":0}],\"trainName\":\"安全说法\",\"trainTypeId\":27,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 14:03:02\",\"userIds\":[]}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 14:03:02', 114, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1280, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 15:12:43', 498, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1281, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:25:11', 59, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1282, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 15:25:11', 23, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1283, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:25:12', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1284, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:26:45', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1285, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 15:26:45', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1286, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:26:45', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1287, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:27:59', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1288, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 15:28:00', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1289, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:28:00', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1290, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:28:03', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1291, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 15:28:04', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1292, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:28:04', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1293, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:28:06', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1294, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '192.168.110.10', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 15:28:07', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1295, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '192.168.110.10', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 14:19:03\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 15:28:07', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1296, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '13404089107', '开发部', '/operations/userAddList', '192.168.110.10', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 15:30:41', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1297, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:24:25', 23, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1298, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.585928276909723\",\"positionLon\":\"104.05562798394097\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:24:26', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1299, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:24:26', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1300, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:24:37', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1301, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.5856787109375\",\"positionLon\":\"104.0558412000868\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:24:38', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1302, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:24:38', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1303, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:24:55', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1304, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.58560275607639\",\"positionLon\":\"104.0559263780382\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:24:55', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1305, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:24:56', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1306, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.58560275607639\",\"positionLon\":\"104.0559263780382\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:25:02', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1307, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:25:02', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1308, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:25:03', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1309, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.58560275607639\",\"positionLon\":\"104.0559263780382\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:25:04', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1310, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:25:04', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1311, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:25:17', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1312, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.585630696614583\",\"positionLon\":\"104.0558544921875\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:25:18', 27, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1313, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:25:18', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1314, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.585630696614583\",\"positionLon\":\"104.0558544921875\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:25:22', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1315, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:25:22', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1316, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:23:59\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:25:25', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1317, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585630696614583\",\"positionLon\":\"104.0558544921875\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:25:25', 31, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1318, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585630696614583\",\"positionLon\":\"104.0558544921875\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:23:59\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:25:25', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1319, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:26:15', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1320, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.585682779947916\",\"positionLon\":\"104.05585259331598\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:26:16', 34, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1321, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:26:16', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1322, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585630696614583\",\"positionLon\":\"104.0558544921875\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:23:59\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:26:34', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1323, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:26:34', 35, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1324, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:23:59\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:26:34', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1325, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:29:16', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1326, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585677625868055\",\"positionLon\":\"104.05585557725695\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:29:17', 34, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1327, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585677625868055\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:29:17', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1328, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585677625868055\",\"positionLon\":\"104.05585557725695\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:29:20', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1329, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585677625868055\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:29:20', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1330, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585677625868055\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:29:51', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1331, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:29:52', 22, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1332, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:29:52', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1333, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:30:08', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1334, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:30:09', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1335, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:30:09', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1336, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:30:37', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1337, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585670572916666\",\"positionLon\":\"104.0558615451389\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:30:38', 23, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1338, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585670572916666\",\"positionLon\":\"104.0558615451389\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:30:38', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1339, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585670572916666\",\"positionLon\":\"104.0558615451389\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:32:19', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1340, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:32:23', 3426, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1341, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:32:23', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1342, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:34:16', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1343, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58563720703125\",\"positionLon\":\"104.05586588541667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:34:16', 44, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1344, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:34:16', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1345, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58563720703125\",\"positionLon\":\"104.05586588541667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:34:22', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1346, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:34:23', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1347, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:37:38', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1348, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:37:39', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1349, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:37:39', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1350, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:37:57', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1351, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58569254557292\",\"positionLon\":\"104.05585557725695\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:37:58', 36, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1352, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58569254557292\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:37:58', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1353, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58569254557292\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:39:06', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1354, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:39:07', 32, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1355, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:39:07', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1356, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:41:11', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1357, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585682779947916\",\"positionLon\":\"104.05585259331598\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:41:12', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1358, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585682779947916\",\"positionLon\":\"104.05585259331598\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:41:12', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1359, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585682779947916\",\"positionLon\":\"104.05585259331598\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:41:19', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1360, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:41:20', 38, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1361, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:41:20', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1362, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58569254557292\",\"positionLon\":\"104.05585557725695\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:41:25', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1363, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58569254557292\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:41:25', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1364, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58569254557292\",\"positionLon\":\"104.05585557725695\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:41:33', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1365, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:41:35', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1366, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:41:35', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1367, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:41:41', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1368, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:41:41', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1369, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:41:44', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1370, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:41:44', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1371, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:42:23', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1372, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:42:25', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1373, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:42:25', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1374, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:42:27', 30, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1375, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:42:27', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1376, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05585340711805\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:42:33', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1377, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.0558203125\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:42:35', 24, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1378, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.0558203125\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":', 0, NULL, '2023-11-01 17:42:35', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1379, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.0558203125\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:42:39', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1380, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.0558203125\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":', 0, NULL, '2023-11-01 17:42:39', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1381, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.0558203125\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":', 0, NULL, '2023-11-01 17:42:50', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1382, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:42:51', 24, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1383, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:42:51', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1384, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:43:15', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1385, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:43:16', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1386, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:43:16', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1387, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585675726996527\",\"positionLon\":\"104.05587944878472\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:43:26', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1388, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585675726996527\",\"positionLon\":\"104.05587944878472\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:43:26', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1389, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585675726996527\",\"positionLon\":\"104.05587944878472\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:43:32', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1390, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:43:34', 26, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1391, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:43:34', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1392, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:44:03', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1393, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:44:04', 22, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1394, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:44:04', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1395, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:44:09', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1396, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:44:09', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1397, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:45:41', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1398, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:45:42', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1399, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:45:43', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1400, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:45:48', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1401, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:45:49', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1402, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:45:50', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1403, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:45:50', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1404, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:45:50', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1405, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58558566623264\",\"positionLon\":\"104.05594156901041\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:45:59', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1406, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585611979166668\",\"positionLon\":\"104.0560337999132\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:46:06', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1407, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585611979166668\",\"positionLon\":\"104.0560337999132\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:46:06', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1408, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585611979166668\",\"positionLon\":\"104.0560337999132\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:46:27', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1409, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:46:28', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1410, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:46:28', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1411, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585584852430557\",\"positionLon\":\"104.05596869574653\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:46:32', 22, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1412, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585584852430557\",\"positionLon\":\"104.05596869574653\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:46:33', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1413, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:46:37', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1414, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585584852430557\",\"positionLon\":\"104.05596869574653\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:46:41', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1415, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.5856787109375\",\"positionLon\":\"104.05587863498263\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:46:45', 39, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1416, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.5856787109375\",\"positionLon\":\"104.05587863498263\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disable', 0, NULL, '2023-11-01 17:46:45', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1417, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:46:49', 9, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1418, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":26,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:46:50', 32, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1419, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:05:48\",\"disabled\":false,\"endTime\":\"2023-11-30 05:11:00\",\"engineeringName\":\"名称88\",\"id\":26,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3001114428\",\"startTime\":\"2023-10-31 05:10:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:14:21\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"typeId\":1,', 0, NULL, '2023-11-01 17:46:50', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1420, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.5856787109375\",\"positionLon\":\"104.05587863498263\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disable', 0, NULL, '2023-11-01 17:47:07', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1421, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:47:08', 37, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1422, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:47:08', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1423, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:47:51', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1424, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:47:52', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1425, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:47:52', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1426, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:47:58', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1427, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58570068359375\",\"positionLon\":\"104.05579616970486\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:47:58', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1428, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58570068359375\",\"positionLon\":\"104.05579616970486\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:47:59', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1429, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58570068359375\",\"positionLon\":\"104.05579616970486\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:50:03', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1430, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:50:04', 41, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1431, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:04', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1432, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:13', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1433, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:50:14', 4, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1434, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:14', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1435, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:27', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1436, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:50:28', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1437, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:28', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1438, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:44', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1439, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:50:45', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1440, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:45', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1441, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', '开发部', '/system/user/add', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"2023-11-01/1.jpeg\",\"companyId\":4,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:50:45\",\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199506012156\",\"idCardPicture\":\"2023-11-01/2.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"2023-11-01/2.jpeg\",\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278701\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"2023-11-01/2.jpeg\",\"roleId\":1,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"3301765414\",\"status\":\"0\",\"userId\":108,\"userName\":\"18384278701\",\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:50:46', 1452, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1442, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:50:56', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1443, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.05586452907986\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:50:57', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1444, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.05586452907986\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:50:57', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1445, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.05586452907986\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabl', 0, NULL, '2023-11-01 17:51:17', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1446, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:51:18', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1447, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:51:18', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1448, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:51:34', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1449, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:51:35', 4, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1450, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:51:35', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1451, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:51:43', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1452, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:51:44', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1453, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:51:44', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1454, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:51:50', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1455, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05586642795139\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:51:51', 30, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1456, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05586642795139\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:51:51', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1457, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05586642795139\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:52:38', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1458, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585742730034724\",\"positionLon\":\"104.0558181423611\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:52:39', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1459, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05586642795139\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:52:39', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1460, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05586642795139\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disab', 0, NULL, '2023-11-01 17:52:53', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1461, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:52:53', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1462, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:52:54', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1463, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:52:57', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1464, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585668674045138\",\"positionLon\":\"104.05586263020834\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:52:58', 40, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1465, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:52:58', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1466, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:53:21', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1467, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585718587239583\",\"positionLon\":\"104.0558091905382\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:53:23', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1468, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:53:23', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1469, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:53:44', 25, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1470, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585690646701387\",\"positionLon\":\"104.05587754991319\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:53:45', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1471, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:53:45', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1472, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585689561631945\",\"positionLon\":\"104.05587348090278\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:53:57', 26, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1473, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:53:57', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1474, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:54:28', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1475, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:54:29', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1476, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:54:29', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1477, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:54:35', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1478, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05587239583333\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:54:36', 39, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1479, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:54:36', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1480, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:55:19', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1481, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:55:20', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1482, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:55:20', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1483, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:55:47', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1484, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585681694878474\",\"positionLon\":\"104.05584852430556\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:55:48', 36, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1485, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:55:48', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1486, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585681694878474\",\"positionLon\":\"104.05584852430556\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:55:54', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1487, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:55:55', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1488, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585681694878474\",\"positionLon\":\"104.05584852430556\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:55:57', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1489, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:55:57', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1490, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', '开发部', '/operations/add', '127.0.0.1', '内网IP', '{\"addUserIds\":[1],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:06\",\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"5\",\"workAddress\":\"四川省遂宁市船山区南津北路76号\",\"workHeader\":107,\"workPeopleNum\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:56:07', 1048, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1491, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', '开发部', '/operations/auditWork', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":34}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 17:56:18', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1492, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:20', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1493, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:56:21', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1494, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:21', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1495, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:36', 29, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1496, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:56:37', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1497, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:37', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1498, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:40', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1499, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:56:41', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1500, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:41', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1501, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:49', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1502, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585689561631945\",\"positionLon\":\"104.0558412000868\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:56:49', 37, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1503, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:50', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1504, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:58', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1505, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585689561631945\",\"positionLon\":\"104.0558412000868\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:56:58', 4, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1506, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:56:58', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1507, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:17', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1508, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:57:18', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1509, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:18', 20, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1510, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:36', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1511, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:57:37', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1512, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:37', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1513, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:48', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1514, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58557590060764\",\"positionLon\":\"104.056005859375\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:57:49', 34, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1515, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:49', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1516, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:54', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1517, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58557590060764\",\"positionLon\":\"104.056005859375\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:57:55', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1518, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:57:55', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1519, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:18', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1520, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:58:19', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1521, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:19', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1522, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568874782986\",\"positionLon\":\"104.0558753797743\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:58:25', 36, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1523, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:25', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1524, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:31', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1525, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585662706163195\",\"positionLon\":\"104.05582817925347\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:58:32', 44, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1526, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:32', 21, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1527, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:49', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1528, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:58:50', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1529, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:50', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1530, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585662706163195\",\"positionLon\":\"104.05582817925347\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:58:52', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1531, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:52', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1532, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:58:58', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1533, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58547580295139\",\"positionLon\":\"104.05590250651042\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 17:58:59', 38, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1534, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 17:59:00', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1535, '现场作业-修改现场作业总包项目经理', 11, 'com.ruoyi.web.controller.api.TOperationsController.editProjectManager()', 'POST', 1, 'admin', '开发部', '/operations/editProjectManager', '127.0.0.1', '内网IP', '{\"id\":34,\"projectManager\":106}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:03:02', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1536, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '127.0.0.1', '内网IP', '{\"auditState\":1,\"recordId\":85}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:03:32', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1537, '现场作业-修改现场作业负责人', 12, 'com.ruoyi.web.controller.api.TOperationsController.editWorkHeader()', 'POST', 1, 'admin', '开发部', '/operations/editWorkHeader', '127.0.0.1', '内网IP', '{\"id\":34,\"workHeader\":108}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:04:00', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1538, '现场作业-现场作业变更审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWorkUpdate()', 'POST', 1, 'admin', '开发部', '/operations/auditWorkUpdate', '127.0.0.1', '内网IP', '{\"auditState\":1,\"recordId\":86}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:04:08', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1539, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', '开发部', '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"2023-11-01/1.jpeg\",\"companyId\":4,\"companyType\":1,\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199506012156\",\"idCardPicture\":\"2023-11-01/2.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"2023-11-01/2.jpeg\",\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278701\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"2023-11-01/2.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:04:57\",\"userId\":108,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:04:58', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1540, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:06:31', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1541, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:06:32', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1542, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:06:33', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1543, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:06:46', 31, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1544, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58569363064236\",\"positionLon\":\"104.055849609375\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:06:48', 30, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1545, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:06:48', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1546, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:07:32', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1547, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:07:33', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1548, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:07:34', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1549, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58569363064236\",\"positionLon\":\"104.055849609375\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:07:38', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1550, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:07:38', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1551, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:07:44', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1552, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568359375\",\"positionLon\":\"104.05583034939237\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:07:45', 32, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1553, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:07:45', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1554, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:11', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1555, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:08:12', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1556, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:12', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1557, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:29', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1558, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:08:30', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1559, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:30', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1560, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:42', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1561, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:08:43', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1562, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:43', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1563, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:47', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1564, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:08:49', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1565, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:49', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1566, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:56', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1567, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585706651475693\",\"positionLon\":\"104.0558412000868\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:08:57', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1568, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:08:57', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1569, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:09:33', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1570, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:09:34', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1571, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:09:34', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1572, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:09:42', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1573, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585687662760417\",\"positionLon\":\"104.05588541666667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:09:43', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1574, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:09:44', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1575, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:10:19', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1576, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:10:20', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1577, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:10:20', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1578, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:10:28', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1579, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:10:29', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1580, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:10:29', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1581, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '开发部', '/system/role', '127.0.0.1', '内网IP', '{\"menuIds\":[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,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],\"postType\":2,\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:10:43', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1582, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:10:59', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1583, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58569363064236\",\"positionLon\":\"104.05583333333334\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:11:05', 27, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1584, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:05', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1585, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:15', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1586, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', '开发部', '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"2023-11-01/1.jpeg\",\"companyId\":4,\"companyType\":1,\"deptId\":3,\"healthCondition\":1,\"idCard\":\"511321199506012156\",\"idCardPicture\":\"2023-11-01/2.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"2023-11-01/2.jpeg\",\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278701\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"2023-11-01/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:11:15\",\"userId\":108,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:11:15', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1587, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:11:16', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1588, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:16', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1589, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:22', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1590, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.05582817925347\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:11:24', 37, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1591, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:24', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1592, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:49', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1593, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:11:50', 4, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1594, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:11:50', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1595, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:06', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1596, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:12:07', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1597, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:07', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1598, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:21', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1599, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:12:22', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1600, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:22', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1601, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585594\",\"positionLon\":\"104.055873\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:12:27', 20, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1602, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585594\",\"positionLon\":\"104.055873\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:12:30', 5, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1603, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585594\",\"positionLon\":\"104.055873\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:12:30', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1604, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:34', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1605, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58565863715278\",\"positionLon\":\"104.05583713107639\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:12:35', 24, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1606, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:35', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1607, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:45', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1608, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:12:46', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1609, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:12:46', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1610, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:13:32', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1611, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:13:33', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1612, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:13:34', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1613, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:13:37', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1614, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:13:38', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1615, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:13:38', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1616, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:13:51', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1617, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:13:52', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1618, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:13:52', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1619, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:14:02', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1620, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58569363064236\",\"positionLon\":\"104.05585639105902\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:14:03', 21, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1621, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:14:03', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1622, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585602\",\"positionLon\":\"104.055893\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:14:42', 4, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1623, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:14:48', 12, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1624, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:15:01', 11, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1625, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:15:51', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1626, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:16:03', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1627, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '18384278701', '开发部', '/operations/editWorkUser', '127.0.0.1', '内网IP', '{\"addUserIds\":[104],\"borrowUserIds\":[],\"id\":34}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:16:08', 72, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1628, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:16:17', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1629, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:16:27', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1630, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:16:28', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1631, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:16:28', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1632, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:16:45', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1633, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568359375\",\"positionLon\":\"104.05586561414931\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:16:46', 38, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1634, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:16:46', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1635, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:16:52', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1636, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '18384278701', '开发部', '/operations/editWorkUser', '127.0.0.1', '内网IP', '{\"addUserIds\":[1],\"borrowUserIds\":[],\"id\":34}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:16:57', 69, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1637, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:17:21', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1638, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":34,\"positionLat\":\"30.585574273003473\",\"positionLon\":\"104.05595269097222\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:17:22', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1639, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:17:22', 12, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1640, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":34,\"positionLat\":\"30.585574273003473\",\"positionLon\":\"104.05595269097222\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:17:30', 9, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1641, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:17:30', 11, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1642, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:17:37', 11, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1643, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":34,\"positionLat\":\"30.585690646701387\",\"positionLon\":\"104.05586398654513\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:17:37', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1644, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:17:37', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1645, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:09', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1646, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:18:10', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1647, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:10', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1648, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:18', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1649, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:18:19', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1650, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:19', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1651, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:28', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1652, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:18:29', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1653, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:29', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1654, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585594\",\"positionLon\":\"104.055904\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:18:51', 5, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1655, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585594\",\"positionLon\":\"104.055904\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:18:55', 7, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1656, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:56', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1657, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:18:57', 9, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1658, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:18:57', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1659, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:19:03', 13, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1660, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":34,\"positionLat\":\"30.585587022569445\",\"positionLon\":\"104.05590711805556\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:19:03', 6, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1661, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:19:03', 12, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1662, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:19:06', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1663, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:19:07', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1664, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:19:07', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1665, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:19:09', 13, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1666, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":34,\"positionLat\":\"30.585587022569445\",\"positionLon\":\"104.05590711805556\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:19:09', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1667, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"34\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 17:56:07\",\"disabled\":false,\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"小顾的工程\",\"id\":34,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"userId\":1},{\"createBy\":\"若依\",\"createTime\":\"2023-10-21 16:47:45\",\"deductIntegral\":2,\"disabled\":false,\"id\":3,\"pictures\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/06682948d1464a2abe1cef4e0109c502.png\",\"remark\":\"扣起耍的\",\"userId\":1,\"videos\":\"https://zxll-platform.obs.cn-north-4.myhuaweicloud.com/admin/4f754fa7e63e47539c1410a5837c61a5.mp4\"}],\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":1,\"riskLevel\":1,\"safetyOfficer\":106,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3301828716\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":true,\"avatar\":\"https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-02 14:09:09\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"ry@163.com\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:47:44\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"nickName\":\"若依\",\"params\":{},\"phonenumber\":\"15888888888\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-27/1@2x(1).png\",\"remark\":\"管理员\",\"roleId\":1,\"safetyPoints\":10,\"secureTest\":1,\"sex\":\"1\",\"singleNum\":\"5261546589\",\"status\":\"0\",\"userId\":1,\"userName\":\"admin\",\"workType\":1},\"type', 0, NULL, '2023-11-01 18:19:09', 14, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1668, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:19:16', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1669, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.5856787109375\",\"positionLon\":\"104.05590060763889\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:19:18', 38, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1670, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:19:18', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1671, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:19:47', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1672, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:19:51', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1673, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:19:52', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1674, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:19:52', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1675, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:19:53', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1676, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:20:14', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1677, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:20:15', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1678, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:20:15', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1679, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585648\",\"positionLon\":\"104.055791\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:20:23', 6, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1680, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:20:32', 9, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1681, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '18384278701', '开发部', '/operations/removeUser', '127.0.0.1', '内网IP', '{\"id\":34,\"one\":[1],\"two\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:20:44', 89, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1682, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:20:50', 9, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1683, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '18384278701', '开发部', '/operations/editWorkUser', '127.0.0.1', '内网IP', '{\"addUserIds\":[1,106,107],\"borrowUserIds\":[],\"id\":34}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:20:55', 100, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1684, '现场作业-减少现场作业人员', 3, 'com.ruoyi.applet.controller.OperationsController.removeUser()', 'POST', 1, '18384278701', '开发部', '/operations/removeUser', '127.0.0.1', '内网IP', '{\"id\":34,\"one\":[104],\"two\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:21:02', 71, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1685, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:21:07', 7, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1686, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:21:10', 11, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1687, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:21:17', 11, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1688, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:21:20', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1689, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:21:21', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1690, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:21:21', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1691, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:21:27', 11, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1692, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:21:40', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1693, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:21:41', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1694, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:21:41', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1695, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '18384278701', '开发部', '/operations/editWorkTime', '127.0.0.1', '内网IP', '{\"endTime\":\"2023-11-01 10:11\",\"id\":34,\"startTime\":\"2023-11-01 07:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:21:49', 23, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1696, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:22:13', 12, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1697, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.585582\",\"positionLon\":\"104.055942\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:22:30', 6, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1698, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:22:36', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1699, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:22:37', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1700, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:22:37', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1701, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:00', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1702, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:01', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1703, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:01', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1704, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585401475694443\",\"positionLon\":\"104.05582221137153\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:06', 43, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1705, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:07', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1706, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:14', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1707, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58557807074653\",\"positionLon\":\"104.05604166666667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:16', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1708, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:16', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1709, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:31', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1710, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:32', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1711, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:32', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1712, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58557807074653\",\"positionLon\":\"104.05604166666667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:40', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1713, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:40', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1714, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58557807074653\",\"positionLon\":\"104.05604166666667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:41', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1715, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:41', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1716, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58557807074653\",\"positionLon\":\"104.05604166666667\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:41', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1717, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:41', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1718, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:47', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1719, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585555826822915\",\"positionLon\":\"104.05600884331598\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:23:48', 34, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1720, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:23:49', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1721, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:01', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1722, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:24:01', 9, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1723, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:02', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1724, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:09', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1725, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58568874782986\",\"positionLon\":\"104.05585557725695\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:24:11', 40, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1726, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:11', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1727, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:36', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1728, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:24:37', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1729, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:37', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1730, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:48', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1731, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58567165798611\",\"positionLon\":\"104.0558753797743\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:24:50', 35, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1732, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:24:50', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1733, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '18384278701', '开发部', '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":92,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:24:51', 69, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1734, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:25:01', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1735, '现场作业-新增现场作业人员', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkUser()', 'POST', 2, '18384278701', '开发部', '/operations/editWorkUser', '127.0.0.1', '内网IP', '{\"addUserIds\":[1],\"borrowUserIds\":[],\"id\":34}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:05', 57, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1736, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:25:06', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1737, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:07', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1738, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:25:07', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1739, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58567165798611\",\"positionLon\":\"104.0558753797743\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:10', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1740, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:25:10', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1741, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:25:13', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1742, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58567165798611\",\"positionLon\":\"104.0558753797743\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:14', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1743, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:25:14', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1744, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', '开发部', '/operations/sign', '127.0.0.1', '内网IP', '{\"operationsId\":34,\"positionLat\":\"30.58558\",\"positionLon\":\"104.05595\",\"type\":1}', '{\"msg\":\"不在打卡范围内\",\"code\":500}', 0, NULL, '2023-11-01 18:25:15', 6, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1745, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '18384278701', '开发部', '/operations/editWorkTime', '127.0.0.1', '内网IP', '{\"endTime\":\"2023-11-02 06:11\",\"id\":34,\"startTime\":\"2023-11-01 06:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:23', 47, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1746, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:25:29', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1747, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发部', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-11-01 18:25:45.762\",\"id\":18,\"trainFileId\":1,\"userId\":108,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:45', 47, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1748, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发部', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":1,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:25:50', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1749, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:25:59', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1750, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:26:00', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1751, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:00', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1752, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发部', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-11-01 18:26:02.004\",\"id\":19,\"trainFileId\":5,\"userId\":108,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:26:02', 38, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1753, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:12', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1754, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585550672743057\",\"positionLon\":\"104.05585557725695\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:26:13', 34, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1755, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:13', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1756, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:31', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1757, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:26:32', 15, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1758, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:26:32', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1759, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:32', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1760, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发部', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":1,\"title\":\"若依\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":3,\"title\":\"开发部\"},{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"}],\"flag\":false,\"key\":4,\"title\":\"维修部\"},{\"children\":[],\"flag\":false,\"key\":5,\"title\":\"开发部\"},{\"children\":[],\"flag\":false,\"key\":6,\"title\":\"分部门1\"}]}', 0, NULL, '2023-11-01 18:26:38', 7, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1761, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:45', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1762, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:26:46', 9, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1763, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:47', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1764, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58559787326389\",\"positionLon\":\"104.0560267469618\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:26:52', 29, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1765, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:26:52', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1766, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:27:00', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1767, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', '维修部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.5856787109375\",\"positionLon\":\"104.05586452907986\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:27:01', 40, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1768, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', '维修部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:27:01', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1769, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', '开发部', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"companyName\":\"成都喜望科技\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[{\"deductIntegral\":1,\"disabled\":false,\"id\":1,\"userId\":1},{\"deductIntegral\":2,\"disabled\":false,\"id\":2,\"', 0, NULL, '2023-11-01 18:27:15', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1770, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', '开发部', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:27:16', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1771, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sceneName\":\"现场\",\"singleNum\":\"3068270218\",\"startTime\":\"2023-10-30 17:16:32\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":4,\"createBy\":\"admin\",\"createTime\":\"2023-10-28 10:01:58\",\"delFlag\":\"0\",\"deptId\":3,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"loginDate\":\"2023-11-01 17:29:08\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3035167445\",\"status\":\"0\",\"userId\":106,\"userName\":\"13404089107\",\"workType\":2},\"typeId\":2,\"updateBy\":\"admin\",\"updateTime\":\"2023-10-30 17:17:42\",\"userId\":106,\"voltageLevel\":\"5\",\"workAddress\":\"四川省成都市武侯区府城大道399号天府新谷6栋3楼\",\"workHeader\":106,\"workPeopleNum\":2,\"workState\":2},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-10-30 17:17:38\",\"disabled\":false,\"endTime\":\"2023-10-30 17:16:32\",\"engineeringName\":\"专属项目\",\"id\":31,\"integrals\":[],\"lat\":\"30.586717\",\"lon\":\"104.055066\",\"projectDepartment\":\"项目1部\",\"projectManager\":106,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":106,\"sc', 0, NULL, '2023-11-01 18:27:17', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1772, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:27:23', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1773, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05583224826388\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:27:24', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1774, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:27:24', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1775, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:27:31', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1776, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.585679796006943\",\"positionLon\":\"104.05583224826388\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:27:32', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1777, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:27:32', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1778, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:27:36', 30, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1779, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:27:37', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1780, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:27:37', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1781, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '18384278701', NULL, '/problem/addProblem', '127.0.0.1', '内网IP', '{\"createBy\":\"18384278701\",\"createTime\":\"2023-11-01 18:27:47\",\"id\":26,\"pictures\":\"2023-11-01/tmp_b074e7bd247e24a85d1e47f0b3025906.jpg\",\"positionLat\":\"30.585589\",\"positionLon\":\"104.055871\",\"positioning\":\"四川省成都市武侯区锦晖西二街126号\",\"problemFeedback\":\"……11111\",\"userId\":108}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:27:47', 40, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1782, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:29:21', 10, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1783, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:29:25', 8, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1784, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:29:28', 14, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1785, '单位-新增单位', 1, 'com.ruoyi.web.controller.api.TCompanyController.add()', 'POST', 1, 'admin', NULL, '/company/add', '127.0.0.1', '内网IP', '{\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:30:17\",\"id\":5}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:30:17', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1786, '部门-新增部门', 1, 'com.ruoyi.web.controller.api.TDeptController.add()', 'POST', 1, 'admin', NULL, '/dept/add', '127.0.0.1', '内网IP', '{\"companyId\":5,\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:30:29\",\"deptName\":\"开发\",\"id\":7}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:30:30', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1787, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"2023-11-01/1.jpeg\",\"companyId\":5,\"companyType\":1,\"deptId\":7,\"healthCondition\":1,\"idCard\":\"511321199506012156\",\"idCardPicture\":\"2023-11-01/2.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"2023-11-01/2.jpeg\",\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278701\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"2023-11-01/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:31:05\",\"userId\":108,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:31:05', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1788, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":5,\"companyType\":1,\"deptId\":7,\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":11,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:31:17\",\"userId\":104,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:31:17', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1789, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"companyId\":5,\"companyType\":1,\"deptId\":7,\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg\",\"nickName\":\"蒲卫\",\"params\":{},\"phonenumber\":\"13404089107\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/2.jpeg\",\"roleId\":112,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:31:26\",\"userId\":106,\"workType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:31:26', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1790, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyType\":1,\"deptId\":7,\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:31:33\",\"userId\":107,\"workType\":4}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:31:33', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1791, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyType\":1,\"deptId\":7,\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:31:42\",\"userId\":105,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:31:42', 60, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1792, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":31,\"positionLat\":\"30.58565863715278\",\"positionLon\":\"104.05589436848959\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:37:04', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1793, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"31\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[]}', 0, NULL, '2023-11-01 18:37:04', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1794, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', NULL, '/operations/add', '127.0.0.1', '内网IP', '{\"addUserIds\":[105,106,107,108],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:40:15', 1324, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1795, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', NULL, '/operations/auditWork', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":35}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:40:20', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1796, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"', 0, NULL, '2023-11-01 18:40:40', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1797, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:40:41', 34, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1798, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:40:41', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1799, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:40:56', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1800, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585569932725694\",\"positionLon\":\"104.0560107421875\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:40:57', 4, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1801, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:40:57', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1802, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:11', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1803, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:41:12', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1804, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:13', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1805, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05592149522569\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:41:18', 5, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1806, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:18', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1807, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:23', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1808, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05592149522569\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:41:23', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1809, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:23', 12, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1810, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:36', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1811, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:41:37', 4, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1812, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:38', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1813, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:45', 25, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1814, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:41:46', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1815, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:41:46', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1816, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', NULL, '/operations/add', '127.0.0.1', '内网IP', '{\"addUserIds\":[107,106,105],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"endTime\":\"2023-11-02 13:40:49\",\"engineeringName\":\"专属项目1\",\"id\":36,\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-02 13:40:49\",\"subcontractingUnit\":\"单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":108,\"workPeopleNum\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:41:53', 1165, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1817, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', NULL, '/operations/auditWork', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":36}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:41:58', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1818, '现场作业-签到/签退', 0, 'com.ruoyi.applet.controller.OperationsController.sign()', 'POST', 2, '18384278701', NULL, '/operations/sign', '127.0.0.1', '内网IP', '{\"clockInTime\":\"2023-11-01 18:42:07\",\"operationsId\":36,\"positionLat\":\"30.585623\",\"positionLon\":\"104.055889\",\"type\":1,\"userId\":108}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:42:07', 39, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1819, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"positionLat\":\"30.585628526475695\",\"positionLon\":\"104.05584771050347\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:42:18', 6, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1820, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-01 18:42:53', 36, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1821, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:43:00', 33, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1822, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:43:01', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1823, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:43:01', 25, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1824, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-01 18:43:15', 18, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1825, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '18384278701', NULL, '/operations/updateWorkHeader', '127.0.0.1', '内网IP', '{\"headerId\":105,\"id\":36,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:43:20', 51, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1826, '现场作业-修改现场作业时间', 2, 'com.ruoyi.applet.controller.OperationsController.editWorkTime()', 'POST', 1, '18384278701', NULL, '/operations/editWorkTime', '127.0.0.1', '内网IP', '{\"endTime\":\"2023-11-01 06:11\",\"id\":36,\"startTime\":\"2023-11-01 06:11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:43:32', 54, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1827, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:43:33', 18, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1828, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585576985677083\",\"positionLon\":\"104.05597683376736\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:43:34', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1829, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:43:34', 22, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1830, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:43:49', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1831, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:43:50', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1832, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:43:50', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1833, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:44:44', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1834, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585450575086806\",\"positionLon\":\"104.05590250651042\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:44:45', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1835, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:44:46', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1836, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '18384278701', NULL, '/operations/updateWorkState', '127.0.0.1', '内网IP', '{\"operationsId\":36,\"workState\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:45:24', 35, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1837, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:45:33', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1838, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:45:34', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1839, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:45:34', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1840, '现场作业-修改现场作业状态', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkState()', 'POST', 2, '18384278701', NULL, '/operations/updateWorkState', '127.0.0.1', '内网IP', '{\"operationsId\":36,\"suspendReason\":\"下雨\",\"workState\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:45:40', 37, NULL, '低级管理员1', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1841, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:45:43', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1842, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58558376736111\",\"positionLon\":\"104.05591254340278\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:45:44', 7, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1843, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:45:44', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1844, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '127.0.0.1', '内网IP', '{\"address\":\"四川\",\"admin\":false,\"avatar\":\"2023-11-01/1.jpeg\",\"companyId\":5,\"companyType\":1,\"deptId\":7,\"healthCondition\":1,\"idCard\":\"511321199506012156\",\"idCardPicture\":\"2023-11-01/2.jpeg\",\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"2023-11-01/1.jpeg\",\"medicalExaminationPicture\":\"2023-11-01/2.jpeg\",\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278701\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"2023-11-01/2.jpeg\",\"roleId\":110,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:46:14\",\"userId\":108,\"workType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:46:14', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1845, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:46:25', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1846, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:26', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1847, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:46:26', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1848, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:46:35', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1849, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58568576388889\",\"positionLon\":\"104.05585259331598\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:36', 6, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1850, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:46:36', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1851, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '18384278701', NULL, '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":95,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:41', 74, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1852, '现场作业-项目经理审批', 2, 'com.ruoyi.applet.controller.OperationsController.examine()', 'POST', 2, '18384278701', NULL, '/operations/examine', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":96,\"type\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:43', 58, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1853, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:46:45', 32, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1854, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585594618055556\",\"positionLon\":\"104.05588568793402\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:46', 8, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1855, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:46:46', 12, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1856, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585594618055556\",\"positionLon\":\"104.05588568793402\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:49', 6, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1857, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:46:50', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1858, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585594618055556\",\"positionLon\":\"104.05588568793402\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:46:55', 5, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1859, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:46:55', 14, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1860, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-01 18:47:06', 8, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1861, '问题反馈-新增问题反馈', 1, 'com.ruoyi.applet.controller.ProblemController.add()', 'POST', 2, '18384278701', NULL, '/problem/addProblem', '127.0.0.1', '内网IP', '{\"createBy\":\"18384278701\",\"createTime\":\"2023-11-01 18:47:31\",\"id\":27,\"pictures\":\"2023-11-01/tmp_11e5e282f12d8ca4326efec410a5e4ff.jpg\",\"positionLat\":\"30.585598\",\"positionLon\":\"104.055905\",\"positioning\":\"四川省成都市武侯区锦晖西二街126号\",\"problemFeedback\":\"问题反馈111\",\"userId\":108}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:47:31', 34, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1862, '培训类别-新增培训类别', 1, 'com.ruoyi.web.controller.api.TTrainTypeController.add()', 'POST', 1, 'admin', NULL, '/trainType/add', '127.0.0.1', '内网IP', '{\"content\":\"安全类\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:48:19\",\"id\":28}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-01 18:48:19', 45, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1863, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:48:44', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1864, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:48:48', 22, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1865, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:48:49', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1866, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:48:49', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1867, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:48:57', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1868, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585684678819444\",\"positionLon\":\"104.05587456597222\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:48:58', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1869, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:48:59', 13, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1870, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:49:37', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1871, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:49:38', 10, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1872, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:49:38', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1873, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:49:56', 14, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1874, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58558376736111\",\"positionLon\":\"104.0559144422743\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:49:57', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1875, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:49:57', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1876, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', NULL, '/train/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:50:24\",\"id\":19,\"singleNum\":\"3302104851\",\"trainFileVideos\":[{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":19,\"videoDuration\":0},{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":19,\"videoDuration\":0}],\"trainFiles\":[{\"fileAddress\":\"2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"fileName\":\"人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"fileSize\":150700.0,\"fileType\":1,\"trainId\":19},{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":19,\"videoDuration\":0},{\"fileAddress\":\"2023-11-01/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":19,\"videoDuration\":0}],\"trainName\":\"安全说法\",\"trainTypeId\":28,\"userIds\":[105,104,106,107,108]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:50:25', 1295, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1877, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-11-01 18:50:45.568\",\"id\":20,\"trainFileId\":71,\"userId\":108,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:50:45', 64, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1878, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:50:52', 13, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1879, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:50:59', 16, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1880, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:51:00', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1881, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:51:00', 17, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1882, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":6,\"watchRecordDuration\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:51:05', 45, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1883, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:51:21', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1884, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585545789930556\",\"positionLon\":\"104.0558363172743\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:51:22', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1885, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:51:23', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1886, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-11-01 18:51:39.644\",\"id\":21,\"trainFileId\":72,\"userId\":108,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:51:39', 44, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1887, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:01', 22, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1888, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:02', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1889, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:02', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1890, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585596788194444\",\"positionLon\":\"104.05590657552084\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:05', 10, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1891, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:06', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1892, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', NULL, '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-01 18:52:09', 14, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1893, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:11', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1894, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585535753038194\",\"positionLon\":\"104.05588053385416\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:12', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1895, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:13', 22, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1896, '现场作业-修改负责人', 2, 'com.ruoyi.applet.controller.OperationsController.updateWorkHeader()', 'POST', 2, '18384278701', NULL, '/operations/updateWorkHeader', '127.0.0.1', '内网IP', '{\"headerId\":106,\"id\":36,\"type\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:14', 48, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1897, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":-6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:15', 52, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1898, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:22', 21, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1899, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:23', 7, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1900, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:23', 19, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1901, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:35', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1902, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:36', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1903, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:36', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1904, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:44', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1905, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:45', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1906, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:45', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1907, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:54', 23, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1908, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585549858940972\",\"positionLon\":\"104.05598470052084\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:52:55', 9, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1909, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:52:55', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1910, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:16', 18, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1911, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:53:17', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1912, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:17', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1913, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:33', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1914, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:53:34', 8, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1915, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:34', 25, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1916, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.585549858940972\",\"positionLon\":\"104.05598470052084\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:53:37', 11, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1917, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:37', 15, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1918, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:43', 16, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1919, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58559868706597\",\"positionLon\":\"104.05590250651042\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:53:44', 8, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1920, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:45', 17, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1921, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58568657769097\",\"positionLon\":\"104.05587646484375\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:53:54', 25, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1922, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18008172471', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:53:54', 20, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1923, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:55:02', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1924, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.58559868706597\",\"positionLon\":\"104.0559109157986\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:55:02', 5, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1925, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:55:03', 14, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1926, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:55:15', 25, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1927, '培训信息-阅读文件', 2, 'com.ruoyi.applet.controller.TTrainController.readTime()', 'POST', 2, '18384278701', NULL, '/train/readTime', '127.0.0.1', '内网IP', '{\"createTime\":\"2023-11-01 18:56:21.263\",\"id\":22,\"trainFileId\":70,\"userId\":108,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:56:21', 40, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1928, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:57:05', 14, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1929, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585611707899307\",\"positionLon\":\"104.05586751302083\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:57:05', 5, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1930, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 18:57:05', 24, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1931, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:57:49', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1932, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 18:57:50', 5, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1933, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 18:57:50', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1934, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:00:59', 34, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1935, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18008172471', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.58557074652778\",\"positionLon\":\"104.05583821614583\",\"userId\":104}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:00:59', 33, NULL, '超级管理员', '18008172471', 104, '蒲悦添');
INSERT INTO `sys_oper_log` VALUES (1936, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:00:59', 35, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1937, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:00:59', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1938, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:00:59', 42, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1939, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:00:59', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1940, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:02:16', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1941, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 19:02:25', 12, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1942, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585645616319443\",\"positionLon\":\"104.05589870876736\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:02:25', 6, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1943, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 19:02:25', 11, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1944, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585645616319443\",\"positionLon\":\"104.05589870876736\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:02:29', 6, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1945, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 19:02:29', 9, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1946, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:03:33', 12, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1947, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:03:34', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1948, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:03:34', 13, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1949, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 19:03:47', 14, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1950, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":36,\"positionLat\":\"30.585580783420138\",\"positionLon\":\"104.05587185329861\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:03:47', 7, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1951, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"36\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-24,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场顾666\",\"singleNum\":\"3301879055\",\"startTime\":\"2023-11-01 06:11:00\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"四川\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-01 09:42:44\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"511321199906012648\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"154545465111654156\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"loginDate\":\"2023-11-01 10:38:37\",\"loginIp\":\"192.168.110.103\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/人文关怀在ICU护理中的应用-文本复制检测报告单(简洁).pdf\",\"nickName\":\"陈昆\",\"params\":{},\"phonenumber\":\"13198619869\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"231156416556165100\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg\",\"roleId\":109,\"safetyPoints\":12,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3301259740\",\"status\":\"0\",\"userId\":107,\"userName\":\"13198619869\",\"workType\":4},\"typeId\":1,\"updateBy\":\"18384278701\",\"updateTime\":\"2023-11-01 18:46:44\",\"userId\":107,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":105,\"workPeopleNum\":3,\"workState\":4},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:41:52\",\"disabled\":false,\"endTime\":\"2023-11-01 06:11:00\",\"engineeringName\":\"专属项目1\",\"id\":36,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":3,\"riskLevel\":4,\"sa', 0, NULL, '2023-11-01 19:03:47', 12, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1952, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', NULL, '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:03:56', 9, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1953, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:04:38', 15, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1954, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:04:39', 4, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1955, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:04:39', 14, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1956, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '13404089107', NULL, '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"userId\":106}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-01 19:04:45', 6, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1957, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '13404089107', NULL, '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-01 19:04:45', 11, NULL, '低级管理员1', '13404089107', 106, '蒲卫');
INSERT INTO `sys_oper_log` VALUES (1958, '培训信息-阅读文件', 2, 'com.ruoyi.applet.controller.TTrainController.readTime()', 'POST', 2, '18384278701', '开发', '/train/readTime', '127.0.0.1', '内网IP', '{\"trainFileId\":70,\"watchLocation\":1,\"watchRecordDuration\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 06:28:41', 55, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1959, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 06:30:59', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1960, '培训信息-阅读文件', 2, 'com.ruoyi.applet.controller.TTrainController.readTime()', 'POST', 2, '18384278701', '开发', '/train/readTime', '127.0.0.1', '内网IP', '{\"trainFileId\":70,\"watchLocation\":2,\"watchRecordDuration\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 06:31:05', 41, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1961, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 06:31:17', 13, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1962, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":33,\"watchRecordDuration\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 06:31:57', 47, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1963, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 07:05:54', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1964, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 07:06:03', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1965, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 07:06:46', 9, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1966, '培训信息-阅读文件', 2, 'com.ruoyi.applet.controller.TTrainController.readTime()', 'POST', 2, '18384278701', '开发', '/train/readTime', '127.0.0.1', '内网IP', '{\"trainFileId\":70,\"watchLocation\":1,\"watchRecordDuration\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 07:07:26', 84, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1967, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 07:07:31', 9, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1968, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 07:07:47', 12, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1969, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 07:07:49', 10, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1970, '用户信息-二维码导出', 5, 'com.ruoyi.applet.controller.UserController.exportQrCode()', 'POST', 2, '18384278701', '开发', '/user/exportUserQrCode', '127.0.0.1', '内网IP', '{\"userIdS\":[104,105]}', NULL, 0, NULL, '2023-11-02 07:07:56', 659, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1971, '培训信息-记录播放视频时长', 2, 'com.ruoyi.applet.controller.TTrainController.addViewTime()', 'POST', 2, '18384278701', '开发', '/train/addViewTime', '127.0.0.1', '内网IP', '{\"trainFileId\":71,\"watchLocation\":0,\"watchRecordDuration\":-33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 07:08:29', 29, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1972, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-02 07:09:47', 15, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1973, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.628616807725695\",\"positionLon\":\"104.14091498480903\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 07:09:48', 41, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1974, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-02 07:09:48', 13, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1975, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.628616807725695\",\"positionLon\":\"104.14091498480903\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 07:09:51', 5, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1976, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-02 07:09:51', 17, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1977, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":35,\"positionLat\":\"30.628616807725695\",\"positionLon\":\"104.14091498480903\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 07:09:56', 7, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1978, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"35\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,\"projectType\":4,\"riskLevel\":4,\"safetyOfficer\":104,\"sceneName\":\"现场66\",\"singleNum\":\"3300156093\",\"startTime\":\"2023-11-02 10:39:15\",\"subcontractingUnit\":\"单位\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"18008172471\",\"createTime\":\"2023-10-28 09:44:22\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"loginDate\":\"2023-10-30 14:36:36\",\"loginIp\":\"192.168.110.13\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"nickName\":\"龚金宝\",\"params\":{},\"phonenumber\":\"15983795014\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":7,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3051128267\",\"status\":\"0\",\"userId\":105,\"userName\":\"15983795014\",\"workType\":1},\"typeId\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-01 18:40:21\",\"userId\":105,\"voltageLevel\":\"4\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":104,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":1,\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-01 18:40:14\",\"disabled\":false,\"endTime\":\"2023-11-02 10:39:15\",\"engineeringName\":\"专属项目\",\"id\":35,\"integrals\":[],\"lat\":\"30.586011\",\"lon\":\"104.055057\",\"positionLat\":\"30.64242\",\"positionLon\":\"104.04311\",\"projectDepartment\":\"项目1部\",\"projectManager\":104,', 0, NULL, '2023-11-02 07:09:56', 15, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1979, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', NULL, '/operations/add', '127.0.0.1', '内网IP', '{\"addUserIds\":[107,105,104],\"content\":\"检修\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:55:42\",\"endTime\":\"2023-11-02 09:00:00\",\"engineeringName\":\"演示项目\",\"id\":37,\"lat\":\"30.495111\",\"lon\":\"105.588076\",\"projectDepartment\":\"项目1部\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":5,\"safetyOfficer\":105,\"sceneName\":\"小顾的现场名称\",\"singleNum\":\"3304971410\",\"startTime\":\"2023-11-02 09:00:00\",\"subcontractingUnit\":\"分包单位\",\"typeId\":1,\"voltageLevel\":\"4\",\"workAddress\":\"四川省遂宁市船山区南津北路76号\",\"workHeader\":106,\"workPeopleNum\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 08:55:43', 1224, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1980, '现场作业-现场作业审核', 2, 'com.ruoyi.web.controller.api.TOperationsController.auditWork()', 'POST', 1, 'admin', NULL, '/operations/auditWork', '127.0.0.1', '内网IP', '{\"auditState\":1,\"id\":37}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-02 08:55:47', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1981, '现场作业-新增现场作业', 1, 'com.ruoyi.web.controller.api.TOperationsController.add()', 'POST', 1, 'admin', NULL, '/operations/add', '127.0.0.1', '内网IP', '{\"addUserIds\":[104,105,106,107],\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11-02 08:56:06\",\"subcontractingUnit\":\"分包1\",\"typeId\":1,\"voltageLevel\":\"2\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":108,\"workPeopleNum\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 08:57:27', 1108, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1982, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"38\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"disabled\":false,\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"integrals\":[],\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11-02 08:56:06\",\"subcontractingUnit\":\"分包1\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-26 11:45:09\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:52:33\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":11,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3012423971\",\"status\":\"0\",\"userId\":104,\"userName\":\"18008172471\",\"workType\":1},\"typeId\":1,\"userId\":104,\"voltageLevel\":\"2\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":108,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":0,\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"disabled\":false,\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"integrals\":[],\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11', 0, NULL, '2023-11-02 11:33:50', 36, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1983, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":38,\"positionLat\":\"30.49496337890625\",\"positionLon\":\"105.5873765733507\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 11:33:50', 14, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1984, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"38\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"disabled\":false,\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"integrals\":[],\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11-02 08:56:06\",\"subcontractingUnit\":\"分包1\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-26 11:45:09\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:52:33\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":11,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3012423971\",\"status\":\"0\",\"userId\":104,\"userName\":\"18008172471\",\"workType\":1},\"typeId\":1,\"userId\":104,\"voltageLevel\":\"2\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":108,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":0,\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"disabled\":false,\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"integrals\":[],\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11', 0, NULL, '2023-11-02 11:33:50', 25, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1985, '现场作业-30M定位刷新', 2, 'com.ruoyi.applet.controller.OperationsController.refresh()', 'POST', 2, '18384278701', '开发', '/operations/refresh', '127.0.0.1', '内网IP', '{\"users\":[{\"operationsId\":38,\"positionLat\":\"30.494931911892362\",\"positionLon\":\"105.58728217230903\",\"userId\":108}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 11:34:01', 11, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1986, '现场作业-作业路线详情地图', 0, 'com.ruoyi.applet.controller.OperationsController.dataMap()', 'GET', 2, '18384278701', '开发', '/operations/dataMap', '127.0.0.1', '内网IP', '{\"operationsId\":\"38\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"age\":-23,\"auditState\":0,\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"disabled\":false,\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"integrals\":[],\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11-02 08:56:06\",\"subcontractingUnit\":\"分包1\",\"sysUser\":{\"address\":\"天府新谷\",\"admin\":false,\"avatar\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"companyId\":5,\"companyName\":\"喜旺\",\"companyType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-10-26 11:45:09\",\"delFlag\":\"0\",\"deptId\":7,\"email\":\"\",\"healthCondition\":1,\"idCard\":\"513902200006257079\",\"idCardPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"ifBlack\":0,\"insureEndTime\":\"2070-12-12 14:00:00\",\"insureNumber\":\"4655656326\",\"insurePicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"loginDate\":\"2023-11-01 17:52:33\",\"loginIp\":\"127.0.0.1\",\"medicalExaminationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"nickName\":\"蒲悦添\",\"params\":{},\"phonenumber\":\"18008172471\",\"qualificationEndTime\":\"2070-12-12 14:00:00\",\"qualificationNumber\":\"53642643226424\",\"qualificationPicture\":\"C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png\",\"roleId\":1,\"safetyPoints\":11,\"secureTest\":1,\"sex\":\"0\",\"singleNum\":\"3012423971\",\"status\":\"0\",\"userId\":104,\"userName\":\"18008172471\",\"workType\":1},\"typeId\":1,\"userId\":104,\"voltageLevel\":\"2\",\"workAddress\":\"四川省成都市武侯区府城大道天府新谷\",\"workHeader\":108,\"workPeopleNum\":4,\"workState\":1},{\"age\":-23,\"auditState\":0,\"content\":\"日常维护\",\"createBy\":\"admin\",\"createTime\":\"2023-11-02 08:57:26\",\"disabled\":false,\"endTime\":\"2023-11-02 08:56:06\",\"engineeringName\":\"日常任务\",\"id\":38,\"integrals\":[],\"lat\":\"30.58733\",\"lon\":\"104.055083\",\"projectDepartment\":\"项目部1\",\"projectManager\":108,\"projectType\":2,\"riskLevel\":4,\"safetyOfficer\":108,\"sceneName\":\"现场1\",\"singleNum\":\"3303396900\",\"startTime\":\"2023-11', 0, NULL, '2023-11-02 11:34:02', 17, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1987, '培训信息-阅读文件', 2, 'com.ruoyi.applet.controller.TTrainController.readTime()', 'POST', 2, '18384278701', '开发', '/train/readTime', '127.0.0.1', '内网IP', '{\"trainFileId\":70,\"watchLocation\":0,\"watchRecordDuration\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 11:34:07', 21, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1988, '人员新增列表-APP', 0, 'com.ruoyi.applet.controller.OperationsController.userAddList()', 'GET', 2, '18384278701', '开发', '/operations/userAddList', '127.0.0.1', '内网IP', '{\"name\":\"undefined\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":[{\"children\":[{\"children\":[],\"flag\":false,\"key\":104,\"title\":\"蒲悦添\"},{\"children\":[],\"flag\":false,\"key\":105,\"title\":\"龚金宝\"},{\"children\":[],\"flag\":false,\"key\":106,\"title\":\"蒲卫\"},{\"children\":[],\"flag\":false,\"key\":107,\"title\":\"陈昆\"},{\"children\":[],\"flag\":false,\"key\":108,\"title\":\"顾萍丹\"}],\"flag\":false,\"key\":7,\"title\":\"开发\"}]}', 0, NULL, '2023-11-02 11:34:11', 33, NULL, '维修组', '18384278701', 108, '顾萍丹');
INSERT INTO `sys_oper_log` VALUES (1989, '培训信息-新增培训', 1, 'com.ruoyi.web.controller.api.TTrainController.add()', 'POST', 1, 'admin', NULL, '/train/add', '127.0.0.1', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-02 14:35:19\",\"id\":20,\"singleNum\":\"3300191911\",\"trainFileVideos\":[{\"fileAddress\":\"2023-11-02/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":20,\"videoDuration\":0},{\"fileAddress\":\"2023-11-02/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":20,\"videoDuration\":0}],\"trainFiles\":[{\"fileAddress\":\"2023-11-02/医疗费用合规性检测模型需求说明书.docx\",\"fileName\":\"医疗费用合规性检测模型需求说明书.docx\",\"fileSize\":18982.0,\"fileType\":1,\"trainId\":20},{\"fileAddress\":\"2023-11-02/新建 DOC 文档.doc\",\"fileName\":\"新建 DOC 文档.doc\",\"fileSize\":13824.0,\"fileType\":1,\"trainId\":20},{\"fileAddress\":\"2023-11-02/文字文稿1.docx\",\"fileName\":\"文字文稿1.docx\",\"fileSize\":9921.0,\"fileType\":1,\"trainId\":20},{\"fileAddress\":\"2023-11-02/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":20,\"videoDuration\":0},{\"fileAddress\":\"2023-11-02/video.mp4\",\"fileName\":\"video.mp4\",\"fileSize\":7636906.0,\"fileType\":2,\"trainId\":20,\"videoDuration\":0}],\"trainName\":\"安全讲座\",\"trainTypeId\":28,\"userIds\":[104,105,106,107,108]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-02 14:35:21', 2023, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1990, '问题反馈-删除', 3, 'com.ruoyi.web.controller.api.TProblemBackController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBack/delete', '192.168.110.34', '内网IP', '{\"tProblemBackId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-06 10:19:32', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1991, '问题反馈-删除', 3, 'com.ruoyi.web.controller.api.TProblemBackController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBack/delete', '192.168.110.34', '内网IP', '{\"tProblemBackId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-06 10:19:48', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1992, '问题反馈-删除', 3, 'com.ruoyi.web.controller.api.TProblemBackController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBack/delete', '192.168.110.34', '内网IP', '{\"tProblemBackId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-06 10:19:48', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1993, '问题反馈-删除', 3, 'com.ruoyi.web.controller.api.TProblemBackController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBack/delete', '192.168.110.34', '内网IP', '{\"tProblemBackId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-06 10:19:48', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1994, '问题反馈-删除', 3, 'com.ruoyi.web.controller.api.TProblemBackController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBack/delete', '192.168.110.34', '内网IP', '{\"tProblemBackId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-06 10:19:48', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1995, '问题反馈-删除', 3, 'com.ruoyi.web.controller.api.TProblemBackController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBack/delete', '192.168.110.34', '内网IP', '{\"tProblemBackId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-06 10:20:40', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (1996, '问题库-删除', 3, 'com.ruoyi.web.controller.api.TProblemBaseController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBase/delete', '192.168.110.91', '内网IP', '{\"tProblemBaseId\":\"3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 09:49:53', 62, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (1997, '问题库-删除', 3, 'com.ruoyi.web.controller.api.TProblemBaseController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBase/delete', '192.168.110.91', '内网IP', '{\"tProblemBaseId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 10:59:02', 21, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (1998, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-21 11:01:35\",\"id\":4,\"problemContent\":\"21332\",\"problemType\":\"111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 11:01:35', 56, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (1999, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-21 11:03:51\",\"id\":5,\"problemContent\":\"烦请二位他仿佛全微分\",\"problemType\":\"而且为\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 11:03:51', 25, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2000, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-21 11:04:40\",\"id\":6,\"problemContent\":\"5445432福冈黄蜂队的\",\"problemType\":\"儿童微软\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 11:04:40', 34, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2001, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-21 11:07:59\",\"id\":7,\"problemContent\":\"微分全微分外国人我\",\"problemType\":\"为父亲为\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 11:07:59', 39, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2002, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-21 11:08:33\",\"id\":8,\"problemContent\":\"受到攻击放过机会\",\"problemType\":\"发生的事\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 11:08:33', 49, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2003, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-21 11:13:51\",\"id\":9,\"problemContent\":\"的发射点发射点士大夫\",\"problemType\":\"问题类型\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 11:13:51', 24, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2004, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域1\",\"checkIds\":[2,3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-21 15:11:00\",\"district\":\"新建区县1\",\"id\":1,\"site\":\"新建站点1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 15:11:00', 91, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2005, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域2\",\"checkIds\":[3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-21 15:13:01\",\"district\":\"新建区县2\",\"id\":2,\"site\":\"新建站点2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 15:13:01', 24, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2006, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"checkIds\":[1,2,3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-21 15:17:48\",\"id\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-21 15:17:48', 30, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2007, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"31.901974,102.217566\",\"createBy\":\"admin\",\"createTime\":\"2023-11-22 10:25:06\",\"endTime\":\"2023-11-16 10:25:02\",\"id\":1,\"lat\":\"31.901974\",\"lon\":\"102.217566\",\"planCycle\":1,\"startTime\":\"2023-11-02 10:24:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 10:25:06', 64, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2008, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市\",\"createBy\":\"admin\",\"createTime\":\"2023-11-22 10:42:47\",\"endTime\":\"2023-11-23 10:41:38\",\"id\":2,\"inspectionCount\":67,\"inspectionName\":\"新建巡检\",\"lat\":\"31.901974\",\"lon\":\"102.217566\",\"planCycle\":1,\"startTime\":\"2023-11-15 10:41:33\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 10:42:47', 72, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2009, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省攀枝花市仁和区彩虹路\",\"createBy\":\"admin\",\"createTime\":\"2023-11-22 10:49:16\",\"endTime\":\"2023-11-29 10:48:32\",\"id\":3,\"inspectionCount\":2,\"inspectionName\":\"新增巡检2\",\"lat\":\"26.54378\",\"lon\":\"101.850774\",\"planCycle\":2,\"startTime\":\"2023-11-22 10:48:29\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 10:49:16', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2010, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:07:19', 133, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2011, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:07:33', 10, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2012, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10,\"planCycle\":1,\"state\":1}', NULL, 0, NULL, '2023-11-22 11:22:22', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2013, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:22:54', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2014, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:23:49', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2015, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:25:16', 12, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2016, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:26:30', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2017, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":1}', NULL, 0, NULL, '2023-11-22 11:27:48', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2018, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 11:28:28', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2019, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"1\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 11:49:32', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2020, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"2\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 11:49:45', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2021, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"3\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 14:38:18', 63, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2022, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 14:53:52', 278, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2023, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-22 14:57:12', 22, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2024, '报修工单-新增', 0, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市团结街179号\",\"createBy\":\"admin\",\"createTime\":\"2023-11-22 15:54:12\",\"faultDescription\":\"是的CAS啊\",\"id\":1,\"lat\":\"31.900597\",\"lon\":\"102.221582\",\"pictures\":\"2023-11-22/微信图片_20231122090317.jpg\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 15:54:12', 73, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2025, '报修工单-新增', 0, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市马尔康达萨街430号\",\"createBy\":\"admin\",\"createTime\":\"2023-11-22 15:55:19\",\"faultDescription\":\"HKH部门监管机构\",\"id\":2,\"lat\":\"31.905189\",\"lon\":\"102.208326\",\"pictures\":\"2023-11-22/微信图片_20231122090317.jpg\",\"repairType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 15:55:19', 36, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2026, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"3\",\"userId\":\"104\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-22 17:37:09', 59, NULL, '超级管理员', '15888888888', 1, 'Administrator');
INSERT INTO `sys_oper_log` VALUES (2027, '报修工单-派单', 2, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRepairWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"repairWorkOrderId\":\"1\",\"userId\":\"104\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 09:20:14', 45, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2028, '报修工单-新增', 0, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省攀枝花市东区攀枝花大道中段660号\",\"createBy\":\"admin\",\"createTime\":\"2023-11-23 09:22:25\",\"faultDescription\":\"机房隐患机房隐患机房隐患\",\"id\":3,\"lat\":\"26.540342\",\"lon\":\"101.707046\",\"pictures\":\"2023-11-23/微信图片_20231122090317.jpg\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 09:22:25', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2029, '报修工单-新增', 0, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省成都市双流区国际机场北二路6号\",\"createBy\":\"admin\",\"createTime\":\"2023-11-23 09:35:43\",\"faultDescription\":\"机房隐患222222222222\",\"id\":4,\"lat\":\"30.575149\",\"lon\":\"103.960666\",\"pictures\":\"2023-11-23/微信图片_20231122090317.jpg\",\"repairType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 09:35:43', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2030, '报修工单-修改', 2, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.update()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/update', '192.168.110.91', '内网IP', '{\"address\":\"四川省攀枝花市东区攀枝花大道中段660号\",\"faultDescription\":\"机房隐患22222编辑\",\"lat\":\"26.540342\",\"lon\":\"101.707046\",\"maintenanceResult\":1,\"pictures\":\"2023-11-23/微信图片_20231122090317.jpg\",\"remark\":\"光缆隐患光缆隐患\",\"repairType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 09:52:14', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2031, '报修工单-修改', 2, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.update()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/update', '192.168.110.91', '内网IP', '{\"address\":\"四川省广安市广安区枣山镇站前大道西段(万贯风情街西北)\",\"faultDescription\":\"机房隐患2光缆隐患\",\"lat\":\"30.451117\",\"lon\":\"106.592296\",\"maintenanceResult\":1,\"pictures\":\"2023-11-23/微信图片_20231122090317.jpg\",\"remark\":\"光缆隐患光缆隐患\",\"repairType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 10:00:38', 10, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2032, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"四川省成都市武侯区十二中街1号\",\"checkIds\":[3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-23 10:27:21\",\"district\":\"6\",\"id\":4,\"site\":\"3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 10:27:21', 59, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2033, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"4\",\"userId\":\"106\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 11:04:28', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2034, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.91', '内网IP', '{}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null\' at line 1\r\n### The error may exist in com/ruoyi/system/mapper/TProtocolConfigMapper.java (best guess)\r\n### The error may involve com.ruoyi.system.mapper.TProtocolConfigMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE t_protocol_config    WHERE id=?\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null\' at line 1', '2023-11-23 15:58:56', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2035, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.91', '内网IP', '{}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null\' at line 1\r\n### The error may exist in com/ruoyi/system/mapper/TProtocolConfigMapper.java (best guess)\r\n### The error may involve com.ruoyi.system.mapper.TProtocolConfigMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE t_protocol_config    WHERE id=?\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null\' at line 1', '2023-11-23 16:01:14', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2036, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.91', '内网IP', '{\"id\":1,\"protocolContent\":\"<p>协议</p>\",\"protocolType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 16:03:24', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2037, '问题库-删除', 3, 'com.ruoyi.web.controller.api.TProblemBaseController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBase/delete', '192.168.110.91', '内网IP', '{\"tProblemBaseId\":\"9\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 16:14:42', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2038, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市\",\"createBy\":\"admin\",\"createTime\":\"2023-11-23 16:18:37\",\"endTime\":\"2023-11-30 16:18:20\",\"id\":4,\"inspectionCount\":34,\"inspectionName\":\"最后测试巡检新建\",\"lat\":\"31.901974\",\"lon\":\"102.217566\",\"planCycle\":1,\"startTime\":\"2023-11-23 16:18:17\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 16:18:37', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2039, '报修工单-修改', 2, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.update()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/update', '192.168.110.91', '内网IP', '{\"address\":\"\",\"faultDescription\":\"机房隐患222222222222\",\"lat\":\"30.575149\",\"lon\":\"103.960666\",\"maintenanceResult\":0,\"pictures\":\"2023-11-23/微信图片_20231122090317.jpg\",\"repairType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 16:20:31', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2040, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"\",\"checkIds\":[3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-23 16:48:59\",\"id\":5,\"site\":\"212\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 16:48:59', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2041, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域2222\",\"checkIds\":[3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-23 16:52:08\",\"id\":6,\"site\":\"222\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 16:52:08', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2042, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域333\",\"checkIds\":[3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-23 17:02:19\",\"id\":7,\"site\":\"33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 17:02:19', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2043, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"问问群二群\",\"checkIds\":[1],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-23 17:05:01\",\"districtId\":1,\"id\":8,\"site\":\"111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-23 17:05:01', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2044, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 10:08:29', 817, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2045, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 10:10:13', 45, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2046, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 10:16:09', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2047, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 10:17:27', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2048, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 10:17:43', 21, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2049, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-24 11:37:14\",\"id\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 11:37:14', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2050, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"checkContent\":\"认为访问微博,儿童入预热图也让他让他\",\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 11:46:09\",\"id\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 11:46:09', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2051, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.91', '内网IP', '{\"orderToCheckId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 14:06:51', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2052, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.91', '内网IP', '{\"orderToCheckId\":\"15\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 14:59:21', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2053, '机房工单-批量移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeBatchDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeBatchDanger', '192.168.110.91', '内网IP', '{\"orderToCheckIds\":\"14,12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 15:01:10', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2054, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"dsvdasv \",\"createBy\":\"admin\",\"createTime\":\"2023-11-24 15:56:03\",\"id\":11},{\"checkContent\":\"又有有\",\"createBy\":\"admin\",\"createTime\":\"2023-11-24 15:56:03\",\"id\":12}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 15:56:03', 121, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2055, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"撒旦发射点\",\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:00:07\",\"id\":13},{\"checkContent\":\"士大夫十大的v\",\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:00:07\",\"id\":14}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:00:07', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2056, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"豆腐干地方\",\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:04:44\",\"id\":15}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:04:44', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2057, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"符合法规和广泛化工\",\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:07:40\",\"id\":16}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:07:40', 23018, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2058, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"符合法规和广泛化工\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:08:38\",\"id\":17}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:08:38', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2059, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"符合法规和广泛化工\",\"checkType\":1}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:11:44', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2060, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"符合法规和广泛化工编辑编辑\",\"checkType\":1}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:12:11', 9, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2061, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"符合法规和广泛化工阿三发射点发生\",\"checkType\":1}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:12:54', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2062, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"符合法规和广泛化工是的撒撒旦发射点\",\"checkType\":1,\"id\":17}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:14:55', 18, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2063, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:46', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2064, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:48', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2065, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"15\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:50', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2066, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:51', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2067, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"14\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:53', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2068, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:54', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2069, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:56', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2070, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:15:57', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2071, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"8\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:16:00', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2072, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新建电源配套内容\",\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:16:36\",\"id\":18}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:16:36', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2073, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新建电源配套内容\",\"checkType\":2,\"id\":18}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:17:35', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2074, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新建电源配套内容--编辑\",\"checkType\":2,\"id\":18}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:18:03', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2075, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:26:32', 15, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2076, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:26:57', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2077, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新增运输传承\",\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:28:23\",\"id\":19}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:28:23', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2078, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新增运输传承---编辑编辑\",\"checkType\":3,\"id\":19}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:28:51', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2079, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建机房工单-马尔康\",\"checkIds\":[19],\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:31:29\",\"districtId\":1,\"id\":13,\"site\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:31:29', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2080, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建工单-电源-九寨沟\",\"checkIds\":[18],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 16:34:37\",\"districtId\":6,\"id\":14,\"site\":\"23\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:34:37', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2081, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRoomWorkOrderId\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:46:31', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2082, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRoomWorkOrderId\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:46:34', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2083, '机房工单-批量移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeBatchDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeBatchDanger', '192.168.110.91', '内网IP', '{\"orderToCheckIds\":\"18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 16:49:00', 121, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2084, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 17:28:09\",\"districtId\":6,\"nickName\":\"带过去\",\"params\":{},\"phonenumber\":\"18224358736\",\"remark\":\"新建账户\",\"sex\":\"0\",\"userId\":109,\"userName\":\"18224358736\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 17:28:10', 432, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2085, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/109', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 17:34:05', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2086, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 18:05:52\",\"districtId\":6,\"nickName\":\"dgq\",\"params\":{},\"phonenumber\":\"18224358736\",\"remark\":\"是的发送到发送到\",\"roleId\":109,\"sex\":\"0\",\"userId\":110,\"userName\":\"18224358736\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 18:05:52', 130, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2087, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:13:25', 98, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2088, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:13:43', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2089, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:22:33', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2090, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:28:43', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2091, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:28:56', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2092, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:29:26', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2093, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:29:48', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2094, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:31:06', 47119, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2095, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:32:09', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2096, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:32:12', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2097, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":6,\"nickName\":\"dgq\",\"params\":{},\"phonenumber\":\"18224358736\",\"remark\":\"是的发送到发送到\",\"roleId\":1,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"18224358736\"}', '{\"msg\":\"修改用户\'18224358736\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2023-11-24 18:33:33', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2098, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":6,\"nickName\":\"dgq\",\"params\":{},\"phonenumber\":\"18224358736\",\"remark\":\"是的发送到发送到\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-24 18:34:55\",\"userId\":110,\"userName\":\"18224358736\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-24 18:34:55', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2099, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2023-11-24 18:37:50\",\"districtId\":1,\"nickName\":\"cxl\",\"params\":{},\"phonenumber\":\"18782688863\",\"remark\":\"1sdfsd\",\"roleId\":112,\"sex\":\"1\",\"userId\":111,\"userName\":\"18782688863\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-24 18:37:50', 148, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2100, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":6,\"nickName\":\"新建九寨沟\",\"params\":{},\"phonenumber\":\"18782688863\",\"roleId\":114,\"sex\":\"1\",\"userName\":\"18782688863\"}', '{\"msg\":\"新增用户\'18782688863\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2023-11-25 09:38:52', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2101, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":6,\"nickName\":\"新建九寨沟\",\"params\":{},\"phonenumber\":\"18224358736\",\"roleId\":114,\"sex\":\"1\",\"userName\":\"18224358736\"}', '{\"msg\":\"新增用户\'18224358736\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2023-11-25 09:39:12', 4, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2102, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2023-11-25 09:39:21\",\"districtId\":6,\"nickName\":\"新建九寨沟\",\"params\":{},\"phonenumber\":\"18224358737\",\"roleId\":114,\"sex\":\"1\",\"userId\":112,\"userName\":\"18224358737\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 09:39:21', 98, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2103, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":6,\"nickName\":\"新建九寨沟\",\"params\":{},\"phonenumber\":\"18224358737\",\"roleId\":112,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 09:50:48\",\"userId\":112,\"userName\":\"18224358737\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 09:50:48', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2104, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":112}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 09:51:01', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2105, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":112}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 09:51:04', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2106, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/112', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 09:51:06', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2107, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/111', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 09:51:09', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2108, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域1\",\"checkIds\":[1,2,3,4,5,6,7],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-25 10:44:39\",\"districtId\":1,\"id\":16,\"site\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 10:44:39', 91, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2109, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"为前锋\",\"checkIds\":[18],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2023-11-25 10:46:23\",\"districtId\":6,\"id\":17,\"site\":\"23\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 10:46:23', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2110, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域1\",\"checkIds\":[19],\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2023-11-25 10:55:59\",\"districtId\":1,\"id\":18,\"site\":\"21\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 10:55:59', 14, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2111, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域\",\"checkIds\":[1,2],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-25 14:37:47\",\"districtId\":7,\"id\":21,\"site\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 14:37:47', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2112, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域123\",\"checkIds\":[1,2,3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-25 14:44:19\",\"districtId\":8,\"id\":23,\"site\":\"123\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 14:44:19', 176, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2113, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRoomWorkOrderId\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 14:47:15', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2114, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRoomWorkOrderId\":\"21\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 14:47:17', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2115, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRoomWorkOrderId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 14:47:20', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2116, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"id\":1}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 14:47:59', 14, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2117, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 15:00:22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 15:00:22', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2118, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":114,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 15:01:56\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 15:01:56', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2119, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":114,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 15:02:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 15:02:00', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2120, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 15:36:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 15:36:03', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2121, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 15:36:06\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 15:36:06', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2122, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.91', '内网IP', '{\"menuIds\":[4,20,21,22],\"roleName\":\"新建角色管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 16:22:36', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2123, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,20,21,22,14,51,52,53,54,55,56,57,58,59,60,61,62],\"roleId\":116,\"roleName\":\"新建角色管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 16:22:54', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2124, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,14,20,21,22,51,52,53,54,55,56,57,58,59,60,61,62],\"roleId\":116,\"roleName\":\"新建角色管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 16:23:00', 91, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2125, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":116,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 16:23:03\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 16:23:03', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2126, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":116,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-25 16:23:10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 16:23:10', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2127, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/116', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 16:23:12', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2128, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-25 17:28:53', 91, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2129, '报修工单-修改', 2, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.update()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/update', '192.168.110.91', '内网IP', '{\"address\":\"\",\"faultDescription\":\"机房隐患222222222222\",\"lat\":\"30.575149\",\"lon\":\"103.960666\",\"maintenanceResult\":0,\"pictures\":\"2023-11-23/微信图片_20231122090317.jpg\",\"repairType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 17:48:45', 11, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2130, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.91', '内网IP', '{\"tOpticalInspectionId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 17:57:18', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2131, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.91', '内网IP', '{\"tOpticalInspectionId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 17:57:21', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2132, '报修工单-删除', 3, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRepairWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRepairWorkOrderId\":\"4\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 18:54:17', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2133, '报修工单-删除', 3, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRepairWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRepairWorkOrderId\":\"3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-25 18:54:19', 21, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2134, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2023-11-28 11:19:08\",\"districtId\":3,\"nickName\":\"cxl\",\"params\":{},\"phonenumber\":\"18782688863\",\"remark\":\"理县\",\"roleId\":115,\"sex\":\"1\",\"userId\":113,\"userName\":\"18782688863\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:19:08', 127, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2135, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-28 11:19:19', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2136, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-28 11:19:24', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2137, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":3,\"nickName\":\"cxl\",\"params\":{},\"phonenumber\":\"18782688863\",\"remark\":\"理县\",\"roleId\":115,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:19:48\",\"userId\":113,\"userName\":\"18782688863\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-28 11:19:48', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2138, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-28 11:19:57', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2139, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"districtId\":3,\"nickName\":\"cxl\",\"params\":{},\"phonenumber\":\"18782688863\",\"remark\":\"理县\",\"roleId\":115,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:20:06\",\"userId\":113,\"userName\":\"18782688863\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-28 11:20:06', 55, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2140, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:29:27\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:29:27', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2141, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:29:32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:29:32', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2142, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:29:34\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:29:34', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2143, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:29:46\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:29:46', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2144, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":2,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:29:55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:29:55', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2145, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:29:57\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:29:57', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2146, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:30:09', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2147, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-11-28 11:30:16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:30:16', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2148, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:30:19', 58, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2149, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.91', '内网IP', '{\"menuIds\":[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,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],\"roleName\":\"移动最高权限\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:30:37', 123, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2150, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/117', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2023-11-28 11:31:59', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2151, '问题库-新增', 1, 'com.ruoyi.web.controller.api.TProblemBaseController.add()', 'POST', 1, 'admin', NULL, '/tProblemBase/add', '192.168.110.91', '内网IP', '{\"createBy\":\"admin\",\"createTime\":\"2023-11-28 11:34:28\",\"id\":10,\"problemContent\":\"新增测试1新增测试1新增测试1\",\"problemType\":\"新增测试1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:34:28', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2152, '问题库-删除', 3, 'com.ruoyi.web.controller.api.TProblemBaseController.delete()', 'DELETE', 1, 'admin', NULL, '/tProblemBase/delete', '192.168.110.91', '内网IP', '{\"tProblemBaseId\":\"10\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:35:52', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2153, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.91', '内网IP', '{\"id\":1,\"protocolContent\":\"<p style=\\\"text-align:center;\\\" size=\\\"0\\\" _root=\\\"undefined\\\" __ownerID=\\\"undefined\\\" __hash=\\\"undefined\\\" __altered=\\\"false\\\"><strong><span style=\\\"font-size:56px\\\">用户协议</span></strong></p><p><span style=\\\"font-size:30px\\\">这是用户协议测试1</span></p>\",\"protocolType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:37:34', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2154, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.91', '内网IP', '{\"id\":2,\"protocolContent\":\"<p style=\\\"text-align:center;\\\"><span style=\\\"font-size:20px\\\"><strong><em>隐私协议</em></strong></span></p><p><span style=\\\"font-size:30px\\\">这是隐私协议内容测试1</span></p>\",\"protocolType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:38:19', 15, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2155, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"最后测试11\",\"checkIds\":[1,7],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-28 11:51:05\",\"districtId\":2,\"id\":24,\"site\":\"17\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:51:05', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2156, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"24\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:52:11', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2157, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"阿坝\",\"checkIds\":[18],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2023-11-28 11:55:29\",\"districtId\":1,\"id\":25,\"site\":\"18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 11:55:29', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2158, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:05:20', 140, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2159, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:11:59', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2160, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新增机房  传传输继承承\",\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2023-11-28 14:18:23\",\"id\":22}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:18:23', 59, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2161, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新增机房  传传输继承承--编辑\",\"checkType\":3,\"id\":22}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:18:41', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2162, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:18:46', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2163, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.91', '内网IP', '{\"orderToCheckId\":\"41\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:30:32', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2164, '机房工单-批量移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeBatchDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeBatchDanger', '192.168.110.91', '内网IP', '{\"orderToCheckIds\":\"40,39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:30:37', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2165, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市\",\"createBy\":\"admin\",\"createTime\":\"2023-11-28 14:34:50\",\"endTime\":\"2023-11-30 14:34:27\",\"id\":5,\"inspectionCount\":12,\"inspectionName\":\"最后测试巡检新建\",\"lat\":\"31.901974\",\"lon\":\"102.217566\",\"planCycle\":1,\"startTime\":\"2023-11-28 14:34:24\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:34:50', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2166, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.91', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2023-11-28 14:35:27', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2167, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.91', '内网IP', '{\"tOpticalInspectionId\":\"5\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:36:34', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2168, '报修工单-新增', 1, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRepairWorkOrder/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市\",\"createBy\":\"admin\",\"createTime\":\"2023-11-28 14:37:54\",\"faultDescription\":\"光缆隐患光缆隐患光缆隐患\",\"id\":5,\"lat\":\"31.901974\",\"lon\":\"102.217566\",\"maintenancePictures\":\"\",\"pictures\":\"2023-11-28/微信图片_20231122090317.jpg\",\"repairType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:37:54', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2169, '报修工单-派单', 2, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRepairWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"repairWorkOrderId\":\"5\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:38:53', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2170, '报修工单-删除', 3, 'com.ruoyi.web.controller.api.TRepairWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRepairWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRepairWorkOrderId\":\"5\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-28 14:40:33', 925, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2171, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"28\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-29 10:39:46', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2172, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域12345\",\"checkIds\":[1,2,3,4,5,6],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-29 10:40:47\",\"districtId\":8,\"id\":29,\"site\":\"12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-29 10:40:47', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2173, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"为前锋\",\"checkIds\":[1,2,3,4,5,6,7],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-29 10:50:25\",\"districtId\":7,\"id\":30,\"site\":\"9\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-29 10:50:25', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2174, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"为前锋\",\"checkIds\":[1,2,3,4,5],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-29 10:51:49\",\"districtId\":6,\"id\":31,\"site\":\"9\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-29 10:51:49', 20, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2175, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"说的\",\"checkIds\":[1,2,3,4,5,6],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-11-29 10:52:35\",\"districtId\":7,\"id\":32,\"site\":\"11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-11-29 10:52:35', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2176, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.29', '内网IP', '{\"menuIds\":[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,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],\"roleName\":\"产品顾\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-20 15:43:23', 58, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2177, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.29', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":118,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2023-12-20 15:43:31\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-20 15:43:32', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2178, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.29', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":118,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2023-12-20 15:43:37\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-20 15:43:37', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2179, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.29', '内网IP', '{\"admin\":false,\"districtId\":2,\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278701\",\"roleId\":118,\"sex\":\"1\",\"userName\":\"18384278701\"}', '{\"msg\":\"新增用户\'18384278701\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2023-12-20 15:44:04', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2180, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.29', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2023-12-20 15:44:10\",\"districtId\":2,\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278702\",\"roleId\":118,\"sex\":\"1\",\"userId\":114,\"userName\":\"18384278702\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-20 15:44:10', 111, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2181, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.10.1', '内网IP', '{\"area\":\"11111\",\"checkIds\":[1,2,3,4,5,6,7],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2023-12-25 18:17:10\",\"districtId\":1,\"id\":33,\"site\":\"3\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-25 18:17:34', 94, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2182, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 2', '2023-12-26 10:41:14', 21, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2183, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 10:41:38', 102, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2184, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 10:42:30', 10932, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2185, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 10:43:36', 26568, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2186, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 10:45:06', 14896, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2187, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 10:46:46', 9778, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2188, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '', '2023-12-26 10:53:35', 8426, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2189, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user set password = ? where id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'', '2023-12-26 10:54:48', 17015, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2190, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user set password = ? where id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'', '2023-12-26 10:56:08', 11390, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2191, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user set password = ? where id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'', '2023-12-26 10:56:48', 10653, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2192, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user set password = ? where id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'', '2023-12-26 10:57:29', 6893, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2193, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '\r\n### Error querying database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'field list\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: select id from sys_user where phonenumber = ? and status = 0 and del_flag = 0\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'field list\'', '2023-12-26 11:01:04', 89, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2194, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user set password = ? where id = ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'id\' in \'where clause\'', '2023-12-26 11:01:35', 4039, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2195, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 11:02:06', 2929, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2196, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.manage.LoginController.add()', 'POST', 1, '18782688863', NULL, '/applet/add', '192.168.10.1', '内网IP', '{\"admin\":false,\"avatar\":\"\",\"createBy\":\"\",\"delFlag\":\"\",\"dept\":{\"ancestors\":\"\",\"children\":[{\"ancestors\":\"\",\"children\":[{\"children\":[],\"params\":{}}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"}],\"createBy\":\"\",\"delFlag\":\"\",\"deptId\":0,\"deptName\":\"\",\"email\":\"\",\"leader\":\"\",\"orderNum\":0,\"params\":{},\"parentId\":0,\"parentName\":\"\",\"phone\":\"\",\"remark\":\"\",\"status\":\"\",\"updateBy\":\"\"},\"deptId\":0,\"districtId\":0,\"email\":\"\",\"ifBlack\":0,\"loginIp\":\"\",\"nickName\":\"\",\"params\":{},\"phonenumber\":\"18782688863\",\"postIds\":[],\"remark\":\"\",\"roleId\":0,\"roleIds\":[],\"roleName\":\"\",\"roles\":[{\"admin\":false,\"createBy\":\"\",\"dataScope\":\"\",\"delFlag\":0,\"deptCheckStrictly\":true,\"deptIds\":[],\"flag\":true,\"isDelete\":0,\"menuCheckStrictly\":true,\"menuIds\":[],\"permissions\":[],\"postType\":0,\"remark\":\"\",\"removeDays\":0,\"roleId\":0,\"roleKey\":\"\",\"roleName\":\"\",\"roleSort\":0,\"status\":0,\"updateBy\":\"\"}],\"sex\":\"\",\"status\":\"\",\"updateBy\":\"\",\"userId\":0,\"userName\":\"\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-26 11:02:26', 2316, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2197, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, 'admin', NULL, '/room/add', '192.168.10.1', '内网IP', '{\"area\":\"test01\",\"checks\":[{\"checkId\":0,\"checkResult\":1,\"faultBack\":\"反馈备注\",\"lat\":\"123\",\"lon\":\"456\",\"pictures\":\"图片\"}],\"createBy\":\"admin\",\"createTime\":\"2023-12-28 09:53:55\",\"districtId\":1,\"id\":34,\"site\":\"99\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-28 09:54:23', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2198, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"542\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"452452\",\"solution\":\"452452\"}],\"createBy\":\"18782688863\",\"createTime\":\"2023-12-29 17:09:26\",\"districtId\":1,\"id\":35,\"site\":\"4525\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-29 17:09:57', 99, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2199, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"779\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"78978\",\"solution\":\"7897\"}],\"createBy\":\"18782688863\",\"createTime\":\"2023-12-29 17:10:21\",\"districtId\":1,\"id\":36,\"site\":\"78978\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-29 17:10:52', 79, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2200, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"737\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":1,\"faultBack\":\"999\",\"solution\":\"\"}],\"createBy\":\"18782688863\",\"createTime\":\"2023-12-29 17:10:58\",\"districtId\":1,\"id\":37,\"site\":\"453453\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-29 17:11:29', 28, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2201, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.91', '内网IP', '{\"area\":\"99\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":0,\"faultBack\":\"99\",\"ifDanger\":1,\"solution\":\"99\"},{\"checkId\":2,\"checkResult\":0,\"faultBack\":\"00\",\"ifDanger\":0,\"solution\":\"00\"},{\"checkId\":3,\"checkResult\":1,\"faultBack\":\" 0\"},{\"checkId\":4,\"checkResult\":1,\"faultBack\":\"0\"},{\"checkId\":5,\"checkResult\":1,\"faultBack\":\"0\"},{\"checkId\":6,\"checkResult\":1,\"faultBack\":\"0\"},{\"checkId\":7,\"checkResult\":1,\"faultBack\":\"0\"}],\"createBy\":\"18782688863\",\"createTime\":\"2023-12-29 20:37:47\",\"districtId\":5,\"id\":38,\"site\":\"99\",\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2023-12-29 20:38:18', 60, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2202, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"21\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 09:43:42', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2203, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.91', '内网IP', '{\"tCheckId\":\"20\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 09:44:00', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2204, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 11:09:18\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 11:09:55', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2205, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":118,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 11:09:24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 11:10:01', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2206, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":115,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 11:09:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 11:10:03', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2207, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":114,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 11:09:29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 11:10:06', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2208, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.91', '内网IP', '{\"area\":\"0\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"0\",\"ifDanger\":1,\"solution\":\"0\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-02 11:38:07\",\"districtId\":1,\"id\":39,\"site\":\"0\",\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 11:38:44', 56, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2209, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-02 11:58:53\",\"districtId\":1,\"nickName\":\"啦啦\",\"params\":{},\"phonenumber\":\"15731511109\",\"remark\":\"lllll\",\"roleId\":1,\"sex\":\"1\",\"userId\":115,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 11:59:30', 277, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2210, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"37\",\"userId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 12:02:29', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2211, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"districtId\":13,\"nickName\":\"啦啦\",\"params\":{},\"phonenumber\":\"15731511109\",\"remark\":\"lllll\",\"roleId\":1,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 12:03:32\",\"userId\":115,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-02 12:04:09', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2212, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"districtId\":13,\"nickName\":\"啦啦\",\"params\":{},\"phonenumber\":\"15731511109\",\"remark\":\"lllll\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 12:04:18\",\"userId\":115,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-02 12:04:55', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2213, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"金县\",\"checkIds\":[1,2,3,4,5,6,7],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-02 12:05:12\",\"districtId\":13,\"id\":40,\"site\":\"7\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 12:05:49', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2214, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"40\",\"userId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:15:40', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2215, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":115}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-02 14:22:35', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2216, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":115}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-02 14:25:31', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2217, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"districtId\":13,\"nickName\":\"啦啦\",\"params\":{},\"phonenumber\":\"15731511109\",\"remark\":\"lllll\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-02 14:26:50\",\"userId\":115,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-02 14:27:27', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2218, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/115', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-02 14:29:02', 97, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2219, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-02 14:29:13\",\"districtId\":13,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15731511109\",\"remark\":\"dudududuudududu\",\"roleId\":2,\"sex\":\"1\",\"userId\":116,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:29:51', 142, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2220, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"40\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:35:08', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2221, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-02 14:36:13\",\"districtId\":12,\"nickName\":\"筱筱\",\"params\":{},\"phonenumber\":\"15983498664\",\"remark\":\"hhhhhhh\",\"roleId\":110,\"sex\":\"1\",\"userId\":121,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:36:50', 107, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2222, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"40\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:37:35', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2223, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州小金县美兴镇营盘街\",\"createBy\":\"admin\",\"createTime\":\"2024-01-02 14:46:13\",\"endTime\":\"2024-01-07 14:46:42\",\"id\":6,\"inspectionCount\":1,\"inspectionName\":\"电线巡检\",\"lat\":\"30.995154\",\"lon\":\"102.370037\",\"planCycle\":1,\"startTime\":\"2024-01-01 14:46:24\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:46:50', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2224, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"6\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 14:46:59', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2225, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15983498664', NULL, '/room/add', '192.168.110.29', '内网IP', '{\"area\":\"金县\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":1,\"faultBack\":\"东西多\"}],\"createBy\":\"15983498664\",\"createTime\":\"2024-01-02 15:05:52\",\"districtId\":1,\"id\":41,\"site\":\"1\",\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 15:06:29', 34, NULL, '维修组', '15983498664', 121, '筱筱');
INSERT INTO `sys_oper_log` VALUES (2226, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"6\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 15:17:02', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2227, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"41\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 15:17:33', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2228, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"36\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 15:18:42', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2229, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"金川县\",\"checkIds\":[18],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-02 16:08:52\",\"districtId\":12,\"id\":42,\"site\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 16:09:29', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2230, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"42\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 16:09:42', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2231, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州金川县金川镇新街19号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-02 16:37:52\",\"endTime\":\"2024-01-02 18:00:00\",\"id\":7,\"inspectionCount\":1,\"inspectionName\":\"光缆电线\",\"lat\":\"31.476533\",\"lon\":\"102.064166\",\"planCycle\":1,\"startTime\":\"2024-01-01 15:00:00\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 16:38:30', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2232, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"7\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 16:38:36', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2233, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"6\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 16:59:59', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2234, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.120', '内网IP', '{\"area\":\"区域test\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"故障反馈\",\"ifDanger\":1,\"lat\":\"30.588091468263194\",\"lon\":\"104.05342529897939\",\"solution\":\"解决方案1111111\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-02 17:09:50\",\"districtId\":2,\"id\":43,\"site\":\"1024\",\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-02 17:10:28', 42, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2235, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州汶川县漩三路\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 09:18:08\",\"endTime\":\"2024-01-03 22:00:00\",\"id\":8,\"inspectionCount\":3,\"inspectionName\":\"巡检\",\"lat\":\"30.904992\",\"lon\":\"103.353011\",\"planCycle\":1,\"startTime\":\"2024-01-03 08:00:00\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 09:18:47', 20, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2236, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"8\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 09:19:01', 58, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2237, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州汶川县沙窝子万村1组11号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 09:29:55\",\"endTime\":\"2024-01-03 19:30:12\",\"id\":9,\"inspectionCount\":2,\"inspectionName\":\"新建巡检\",\"lat\":\"31.450893\",\"lon\":\"103.557994\",\"planCycle\":1,\"startTime\":\"2024-01-03 09:08:01\",\"state\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 09:30:34', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2238, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"9\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 09:30:41', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2239, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"茂县\",\"checkIds\":[1,2,3,4,5,6,7],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-03 11:50:45\",\"districtId\":4,\"id\":44,\"site\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 11:51:24', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2240, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"44\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 11:51:31', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2241, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"43\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 11:53:06', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2242, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"2024-1-3新增\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"故障反馈\",\"ifDanger\":1,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"solution\":\"解决方案解决方案解决方案解决方案解决方案解决方案解决方案\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-03 14:05:56\",\"districtId\":1,\"id\":45,\"site\":\"11\",\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:06:35', 80, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2243, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"工单TEST\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":0,\"faultBack\":\"1\",\"ifDanger\":1,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"solution\":\"1111111111111111111111111\"},{\"checkId\":2,\"checkResult\":1,\"faultBack\":\"1\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"},{\"checkId\":3,\"checkResult\":1,\"faultBack\":\"1\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"},{\"checkId\":5,\"checkResult\":1,\"faultBack\":\"1\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"},{\"checkId\":4,\"checkResult\":1,\"faultBack\":\"1\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"},{\"checkId\":6,\"checkResult\":1,\"faultBack\":\"1\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"},{\"checkId\":7,\"checkResult\":1,\"faultBack\":\"1\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-03 14:33:53\",\"districtId\":2,\"id\":46,\"site\":\"11\",\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:34:32', 64, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2244, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.6', '内网IP', '{\"id\":2,\"protocolContent\":\"<p size=\\\"0\\\" _root=\\\"undefined\\\" __ownerID=\\\"undefined\\\" __hash=\\\"undefined\\\" __altered=\\\"false\\\">隐私协议隐私协议隐私协议隐私协议</p>\",\"protocolType\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:41:15', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2245, '协议设置-修改', 2, 'com.ruoyi.web.controller.api.TProtocolConfigController.update()', 'POST', 1, 'admin', NULL, '/tProtocolConfig/update', '192.168.110.6', '内网IP', '{\"id\":1,\"protocolContent\":\"<p size=\\\"5\\\" _root=\\\"[object Object]\\\" __ownerID=\\\"undefined\\\" __hash=\\\"undefined\\\" __altered=\\\"false\\\">用户协议用户协议用户协议用户协议</p>\",\"protocolType\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:41:36', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2246, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:43:14', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2247, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.6', '内网IP', '{\"tRoomWorkOrderId\":\"25\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:47:15', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2248, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.6', '内网IP', '{\"tRoomWorkOrderId\":\"26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:47:18', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2249, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"6\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:52:35', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2250, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"5\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:52:38', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2251, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"7\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:52:48', 28, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2252, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 14:52:52', 137, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2253, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"九寨沟\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":1,\"faultBack\":\"想继续继续\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"},{\"checkId\":3,\"checkResult\":0,\"faultBack\":\"的继续继续\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"滴滴滴吃鸡超级超级下大姐大姐\"},{\"checkId\":4,\"checkResult\":0,\"faultBack\":\"放假多久\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"放假吃鸡等你嘻嘻想你想你\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-03 15:01:19\",\"districtId\":6,\"id\":47,\"site\":\"2\",\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:01:58', 41, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2254, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"6\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:09:30', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2255, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州九寨沟县滨江路2号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 15:18:21\",\"endTime\":\"2024-01-03 23:18:30\",\"id\":10,\"inspectionCount\":3,\"inspectionName\":\"光缆巡检\",\"lat\":\"33.262101\",\"lon\":\"104.238605\",\"planCycle\":1,\"startTime\":\"2024-01-03 10:18:23\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:19:00', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2256, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"10\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:19:06', 28, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2257, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"10\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:23:26', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2258, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"6\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:40:51', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2259, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市滨河路与达萨街交叉口西140米\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 15:43:26\",\"endTime\":\"2024-01-03 21:41:55\",\"id\":11,\"inspectionCount\":3,\"inspectionName\":\"巡检巡检                \",\"lat\":\"31.901924\",\"lon\":\"102.217477\",\"planCycle\":1,\"startTime\":\"2024-01-03 06:41:49\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:44:05', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2260, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:44:12', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2261, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:48:02', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2262, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 15:48:13', 4, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2263, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"114\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:11:27', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2264, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:12:53', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2265, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:13:51', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2266, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:16:15', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2267, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"11\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:19:56', 73, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2268, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"抓紧时间\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":0,\"faultBack\":\"v他不一般还好吧黁就\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\" 发一个不顾不会vu个i不哈i不哈\"},{\"checkId\":3,\"checkResult\":0,\"faultBack\":\"粗避免不必要vu局v今晚\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"习惯i局离不开了解绿了还差了吃\"},{\"checkId\":4,\"checkResult\":0,\"faultBack\":\"姑宾客门口v看v不磕磕绊绊\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"吃不可能了不亢不卑看看吧看吧\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-03 16:54:49\",\"districtId\":2,\"id\":48,\"site\":\"2\",\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:55:28', 39, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2269, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"撤回\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":0,\"faultBack\":\"费乖宝宝黑奴u黁\",\"ifDanger\":0,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"v哈哈哈那你v。哈哈你今年\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-03 16:58:22\",\"districtId\":1,\"id\":49,\"site\":\"2\",\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 16:59:01', 34, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2270, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州黑水县芦花镇\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 17:02:55\",\"endTime\":\"2024-01-03 20:02:48\",\"id\":12,\"inspectionCount\":2,\"inspectionName\":\"光电巡检\",\"lat\":\"32.069199\",\"lon\":\"102.987414\",\"planCycle\":1,\"startTime\":\"2024-01-03 15:02:44\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:03:34', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2271, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"12\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:03:40', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2272, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州黑水县长征路3号附3号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 17:04:24\",\"endTime\":\"2024-01-03 21:04:47\",\"id\":13,\"inspectionCount\":2,\"inspectionName\":\"光电巡检1\",\"lat\":\"32.065156\",\"lon\":\"102.988611\",\"planCycle\":1,\"startTime\":\"2024-01-03 09:04:42\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:05:03', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2273, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"13\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:05:08', 72, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2274, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州阿坝县洽塘东街256号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 17:45:10\",\"endTime\":\"2024-01-03 21:45:21\",\"id\":14,\"inspectionCount\":2,\"inspectionName\":\"光电巡检2\",\"lat\":\"32.905022\",\"lon\":\"101.707415\",\"planCycle\":1,\"startTime\":\"2024-01-03 12:45:17\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:45:49', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2275, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"14\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:45:55', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2276, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 17:46:19\",\"endTime\":\"2024-01-03 23:46:43\",\"id\":15,\"inspectionCount\":3,\"inspectionName\":\"光电巡检3\",\"lat\":\"31.899312\",\"lon\":\"102.224447\",\"planCycle\":1,\"startTime\":\"2024-01-03 11:46:38\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:46:58', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2277, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"15\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 17:47:03', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2278, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"15\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 18:02:56', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2279, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州理县桃坪羌寨村\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 18:02:49\",\"endTime\":\"2024-01-03 23:03:11\",\"id\":16,\"inspectionCount\":2,\"inspectionName\":\"二位肥肉\",\"lat\":\"31.555261\",\"lon\":\"103.45808\",\"planCycle\":1,\"startTime\":\"2024-01-03 17:03:07\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 18:03:28', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2280, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"16\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 18:03:32', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2281, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州阿坝县\",\"createBy\":\"admin\",\"createTime\":\"2024-01-03 18:23:31\",\"endTime\":\"2024-01-03 23:23:42\",\"id\":17,\"inspectionCount\":4,\"inspectionName\":\"巡检巡检1  \",\"lat\":\"32.906495\",\"lon\":\"101.698393\",\"planCycle\":1,\"startTime\":\"2024-01-03 17:23:35\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 18:24:10', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2282, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-03 18:24:16', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2283, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"工单\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":1,\"faultBack\":\"附近的见到你\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"},{\"checkId\":3,\"checkResult\":0,\"faultBack\":\"都觉得见到你\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"辛苦辛苦辛苦开心开心没戏我\"},{\"checkId\":4,\"checkResult\":1,\"faultBack\":\"带你吃鸡倒计时\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 09:30:04\",\"districtId\":4,\"id\":50,\"site\":\"2\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:30:44', 118, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2284, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"test1-4\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":1,\"faultBack\":\"ttt\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"},{\"checkId\":3,\"checkResult\":1,\"faultBack\":\"ttt\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"},{\"checkId\":4,\"checkResult\":1,\"faultBack\":\"ttt\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 09:33:40\",\"directTime\":\"2024-01-04 09:33:40.296\",\"districtId\":1,\"id\":51,\"site\":\"7\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:34:20', 94, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2285, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:40:03', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2286, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"工单\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":0,\"faultBack\":\"倒计时僵尸家族\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"打开小魔仙你先忙这么慢在吗\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 09:44:23\",\"directTime\":\"2024-01-04 09:44:23.4\",\"districtId\":5,\"id\":52,\"site\":\"2\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:45:03', 66, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2287, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"49\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:57:43', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2288, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"4\",\"checkIds\":[1,3,4],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-04 09:58:08\",\"districtId\":6,\"id\":53,\"site\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:58:48', 59, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2289, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"53\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 09:58:54', 18, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2290, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"1\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":1,\"faultBack\":\"1213\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-04 10:02:53\",\"directTime\":\"2024-01-04 10:02:53.053\",\"districtId\":1,\"id\":54,\"site\":\"safas\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:03:33', 41, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2291, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:04:05', 10, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2292, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"问我\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":1,\"faultBack\":\"让人\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 10:06:34\",\"directTime\":\"2024-01-04 10:06:34.701\",\"districtId\":1,\"id\":55,\"site\":\"1\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:07:15', 34, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2293, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:12:56', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2294, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"99\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"9\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"solution\":\"99999999999999999999999999\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-04 10:23:12\",\"directTime\":\"2024-01-04 10:23:12.877\",\"districtId\":1,\"id\":56,\"site\":\"99\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:23:53', 76, NULL, '斗士1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2295, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"回家\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"好v局看不完\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"v就看吧离不开v粗鄙亏本\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 10:25:36\",\"directTime\":\"2024-01-04 10:25:36.648\",\"districtId\":1,\"id\":57,\"site\":\"22\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:26:17', 89, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2296, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:32:37', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2297, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:36:15', 256, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2298, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,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],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:36:24', 72, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2299, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"57\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:44:14', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2300, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"57\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:44:39', 60, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2301, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.106', '内网IP', '{\"status\":1,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 10:45:37', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2302, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.106', '内网IP', '{\"status\":0,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 10:45:50', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2303, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 10:47:31', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2304, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 10:47:46', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2305, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:49:41', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2306, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 10:49:46', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2307, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 10:52:04\",\"endTime\":\"2024-01-05 10:52:23\",\"id\":18,\"inspectionCount\":2,\"inspectionName\":\"巡检1\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-04 10:52:20\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:52:44', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2308, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"18\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:52:51', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2309, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"18\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 10:53:38', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2310, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 10:54:03', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2311, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省广安市广安区思源大道2号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 11:03:58\",\"endTime\":\"2024-01-13 11:04:10\",\"id\":19,\"inspectionCount\":4,\"inspectionName\":\"测试流程\",\"lat\":\"30.456405\",\"lon\":\"106.632814\",\"planCycle\":1,\"startTime\":\"2024-01-04 11:04:06\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:04:39', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2312, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"19\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:04:51', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2313, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"19\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:07:01', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2314, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"19\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:09:03', 21, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2315, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"17\",\"userId\":\"121\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:11:04', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2316, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15983498664', NULL, '/room/add', '192.168.110.4', '内网IP', '{\"area\":\"天府新谷\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":0,\"faultBack\":\"都觉得继续继续记得记得好\",\"ifDanger\":1,\"lat\":\"30.588266\",\"lon\":\"104.053423\",\"solution\":\"第几次你猜。想你你到哪谢娜\"},{\"checkId\":3,\"checkResult\":1,\"faultBack\":\"的继续继续你下班\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"},{\"checkId\":4,\"checkResult\":1,\"faultBack\":\"盗将行就是学计算机放假吃鸡\",\"lat\":\"30.588266\",\"lon\":\"104.053423\"}],\"createBy\":\"15983498664\",\"createTime\":\"2024-01-04 11:34:24\",\"directTime\":\"2024-01-04 11:34:24.633\",\"districtId\":1,\"id\":58,\"site\":\"2\",\"state\":1,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:35:05', 49, NULL, '维修组', '15983498664', 121, '筱筱');
INSERT INTO `sys_oper_log` VALUES (2317, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"19\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 11:47:45', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2318, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省广安市广安区建安北路\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 13:53:00\",\"endTime\":\"2024-01-25 13:53:11\",\"id\":20,\"inspectionCount\":3,\"inspectionName\":\"开发测试流程\",\"lat\":\"30.46145\",\"lon\":\"106.64029\",\"planCycle\":2,\"startTime\":\"2024-01-04 13:53:08\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 13:53:37', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2319, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"20\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 13:53:47', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2320, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 14:35:03', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2321, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":121}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 14:36:43', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2322, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"20\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 14:38:14', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2323, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 14:41:33', 117, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2324, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市武侯区锦晖西二街\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 14:59:01\",\"endTime\":\"2024-01-05 17:59:10\",\"id\":21,\"inspectionCount\":2,\"inspectionName\":\"巡检巡检2\",\"lat\":\"30.585731\",\"lon\":\"104.056177\",\"planCycle\":1,\"startTime\":\"2024-01-04 08:59:03\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 14:59:38', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2325, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"21\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 14:59:43', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2326, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.29', '内网IP', '{\"area\":\"dudu\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":1,\"faultBack\":\"dkfjdnxn\",\"lat\":\"30.588266\",\"lon\":\"104.053432\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 15:06:33\",\"directTime\":\"2024-01-04 15:06:33.139\",\"districtId\":1,\"id\":59,\"site\":\"1\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 15:07:10', 47, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2327, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市温江区同兴西路72号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 15:10:45\",\"endTime\":\"2024-01-04 19:10:54\",\"id\":22,\"inspectionCount\":2,\"inspectionName\":\"巡检巡检3\",\"lat\":\"30.692239\",\"lon\":\"103.862766\",\"planCycle\":1,\"startTime\":\"2024-01-04 14:10:49\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 15:11:22', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2328, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"22\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 15:11:27', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2329, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"22\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 15:12:26', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2330, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市温江区柳城大道232号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 15:12:39\",\"endTime\":\"2024-01-04 20:12:56\",\"id\":23,\"inspectionCount\":2,\"inspectionName\":\"巡检巡检3\",\"lat\":\"30.694121\",\"lon\":\"103.834111\",\"planCycle\":1,\"startTime\":\"2024-01-04 03:12:51\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 15:13:16', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2331, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"23\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 15:13:21', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2332, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.29', '内网IP', '{\"area\":\"天府广场\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":0,\"faultBack\":\"点解点解代嫁新娘那些\",\"lat\":\"30.588266\",\"lon\":\"104.053432\",\"solution\":\"放假放假独家星劫想你想你奶凶奶凶那些\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-04 16:04:28\",\"directTime\":\"2024-01-04 16:04:28.099\",\"districtId\":1,\"id\":60,\"site\":\"天府新谷\",\"state\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 16:05:05', 39, NULL, '普通角色', '15731511109', 116, '嘟嘟');
INSERT INTO `sys_oper_log` VALUES (2333, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.6', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2024-01-04 16:07:05', 513, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2334, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"23\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 16:13:31', 910, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2335, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 16:27:09', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2336, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:16:01', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2337, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:16:12', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2338, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"4\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:16:16', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2339, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"5\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:16:18', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2340, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:16:28', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2341, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市武侯区府城大道西段399号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-04 17:21:02\",\"endTime\":\"2024-01-05 17:21:05\",\"id\":24,\"inspectionCount\":3,\"inspectionName\":\"测试巡检\",\"lat\":\"30.586922\",\"lon\":\"104.055732\",\"planCycle\":1,\"startTime\":\"2024-01-04 17:21:02\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:21:39', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2342, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"24\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:22:03', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2343, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"四川\",\"checkIds\":[1,3,4],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-04 17:39:29\",\"districtId\":9,\"id\":61,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:40:07', 95, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2344, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"61\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:40:25', 20, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2345, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"61\",\"userId\":\"110\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:54:56', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2346, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"61\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:55:31', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2347, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"成都\",\"checkIds\":[1,3],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-04 17:56:46\",\"districtId\":5,\"id\":62,\"site\":\"成都市武侯区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:57:24', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2348, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"62\",\"userId\":\"116\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-04 17:57:35', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2349, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":13,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15731511109\",\"remark\":\"dudududuudududu\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-04 18:10:46\",\"userId\":116,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-04 18:11:24', 81, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2350, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:05:27\",\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":110,\"sex\":\"1\",\"userId\":122,\"userName\":\"15102879064\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:06:05', 166, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2351, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/122', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:06:20', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2352, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:06:50\",\"deptName\":\"技术部\",\"districtId\":5,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"1\",\"userId\":123,\"userName\":\"15102879064\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:07:28', 110, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2353, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/123', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:07:33', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2354, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:07:22\",\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"1\",\"userId\":124,\"userName\":\"15102879064\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:08:00', 133, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2355, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/124', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:08:33', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2356, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:08:31\",\"deptName\":\"技术部\",\"districtId\":8,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"0\",\"userId\":125,\"userName\":\"15102879064\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:09:09', 100, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2357, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:20:57', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2358, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":125}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:21:14', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2359, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":8,\"nickName\":\"金金1\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:27:35\",\"userId\":125,\"userName\":\"15102879064\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:28:13', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2360, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":8,\"nickName\":\"金金1\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"0\",\"status\":\"false\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:27:47\",\"userId\":125,\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.updateUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user     SET user_name = ?,     nick_name = ?,          phonenumber = ?,     sex = ?,          password = ?,     status = ?,               update_by = ?,             districtId = ?,     update_time = sysdate()     where user_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:28:25', 64, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2361, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":8,\"nickName\":\"金金1\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"0\",\"status\":\"false\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:27:58\",\"userId\":125,\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.updateUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user     SET user_name = ?,     nick_name = ?,          phonenumber = ?,     sex = ?,          password = ?,     status = ?,               update_by = ?,             districtId = ?,     update_time = sysdate()     where user_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:28:36', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2362, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":8,\"nickName\":\"金金1\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":109,\"sex\":\"0\",\"status\":\"false\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:28:05\",\"userId\":125,\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.updateUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: update sys_user     SET user_name = ?,     nick_name = ?,          phonenumber = ?,     sex = ?,          password = ?,     status = ?,               update_by = ?,             districtId = ?,     update_time = sysdate()     where user_id = ?\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:28:43', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2363, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:28:51\",\"deptName\":\"技术部\",\"districtId\":3,\"nickName\":\"金金2\",\"params\":{},\"phonenumber\":\"15532889958\",\"roleId\":109,\"sex\":\"1\",\"status\":\"false\",\"userName\":\"15532889958\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,                   districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,                 ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:29:29', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2364, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":7,\"nickName\":\"筱筱\",\"params\":{},\"phonenumber\":\"15983498664\",\"remark\":\"hhhhhhh\",\"roleId\":110,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:35:11\",\"userId\":121,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:35:49', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2365, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/121', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:36:22', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2366, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:40:45\",\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":109,\"sex\":\"1\",\"userId\":126,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:41:23', 159, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2367, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:41:16\",\"userId\":126,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:41:54', 121, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2368, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"18224358736\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"false\",\"userName\":\"18224358736\"}', '{\"msg\":\"新增用户\'18224358736\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 09:42:44', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2369, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:42:38\",\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"19522115070\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"false\",\"userName\":\"19522115070\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,       remark,             districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,       ?,           ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:43:16', 122, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2370, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:42:47\",\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"19522115070\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"true\",\"userName\":\"19522115070\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,       remark,             districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,       ?,           ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:43:25', 89, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2371, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":126}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:43:40', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2372, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:43:05\",\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"19522115070\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"true\",\"userName\":\"19522115070\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,       remark,             districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,       ?,           ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:43:43', 86, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2373, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/126', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:43:43', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2374, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:44:13\",\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"19522115070\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"true\",\"userName\":\"19522115070\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,       remark,             districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,       ?,           ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:44:51', 21526, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2375, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:44:46\",\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"19522115070\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"true\",\"userName\":\"19522115070\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,       remark,             districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,       ?,           ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:45:24', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2376, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":110,\"sex\":\"0\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 09:46:52', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2377, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":110,\"sex\":\"0\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 09:46:56', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2378, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":110,\"sex\":\"0\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 09:47:00', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2379, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":116}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:47:28', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2380, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/116', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:47:30', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2381, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:47:08\",\"deptName\":\"技术部\",\"districtId\":1,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"0\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:47:45', 136, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2382, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":1,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:48:30\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:49:08', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2383, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:48:41\",\"deptName\":\"魔法\",\"districtId\":7,\"nickName\":\"黑水县圣女\",\"params\":{},\"phonenumber\":\"19522115070\",\"remark\":\"我听过几个地方\",\"roleId\":111,\"sex\":\"1\",\"status\":\"false\",\"userName\":\"19522115070\"}', NULL, 1, '\r\n### Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,       remark,             districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,       ?,           ?,      sysdate()    )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1\n; Data truncation: Data too long for column \'status\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'status\' at row 1', '2024-01-05 09:49:18', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2384, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 09:49:43', 4, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2385, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 09:49:47', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2386, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.106', '内网IP', '{\"admin\":false,\"deptName\":\"111\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:49:21\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:49:59', 59, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2387, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 09:49:49\",\"deptName\":\"添加\",\"districtId\":4,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"18224358737\",\"remark\":\"去玩儿群\",\"roleId\":114,\"sex\":\"0\",\"status\":\"0\",\"userId\":128,\"userName\":\"18224358737\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:50:27', 135, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2388, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:50:30', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2389, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.106', '内网IP', '{\"admin\":false,\"deptName\":\"111\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:50:00\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:50:38', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2390, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.106', '内网IP', '{\"admin\":false,\"deptName\":\"11\",\"districtId\":4,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"18224358737\",\"remark\":\"去玩儿群\",\"roleId\":114,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:51:04\",\"userId\":128,\"userName\":\"18224358737\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:51:42', 11216, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2391, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.106', '内网IP', '{\"admin\":false,\"deptName\":\"111\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 09:52:32\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 09:53:13', 13583, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2392, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,48,49],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 09:57:10', 89, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2393, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:14:46', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2394, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:14:20\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:14:58', 129, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2395, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 10:15:16', 281, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2396, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 10:15:19', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2397, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":2,\"roleName\":\"普通角色\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 10:15:24', 105, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2398, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,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],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:15:42', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2399, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 10:15:48', 69, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2400, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 10:15:52', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2401, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":109,\"roleName\":\"低级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 10:15:57', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2402, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:18:19', 233, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2403, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[4,5,23,24,25,26,27,28,6,7,29,30,31,32,33,34],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:20:51', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2404, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:21:03', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2405, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, '15731511109', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"金县\",\"checkIds\":[1,3,4],\"checkType\":1,\"createBy\":\"15731511109\",\"createTime\":\"2024-01-05 10:22:14\",\"districtId\":1,\"id\":63,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:22:52', 48, NULL, '低级管理员', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2406, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":115,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:23:48\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:24:26', 134, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2407, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:24:32', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2408, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":115,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:24:05\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:24:43', 127, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2409, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"顾萍丹\",\"params\":{},\"phonenumber\":\"18384278702\",\"roleId\":118,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:24:19\",\"userId\":114,\"userName\":\"18384278702\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:24:57', 187, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2410, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":114}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:26:14', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2411, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:26:16', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2412, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 10:27:14\",\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"滴滴\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userId\":129,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:27:52', 153, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2413, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.91', '内网IP', '{\"tOpticalInspectionId\":\"13\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:30:30', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2414, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"滴滴\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:31:57\",\"userId\":129,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:32:35', 132, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2415, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.91', '内网IP', '{\"inspectionDeviceId\":\"5,4,3,2,1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:40:41', 3567, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2416, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.22', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 10:40:47\",\"deptName\":\"2\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:41:25', 127, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2417, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/129', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:41:30', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2418, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/118', '192.168.110.6', '内网IP', '{}', NULL, 1, '产品顾已分配,不能删除', '2024-01-05 10:41:56', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2419, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptName\":\"99\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:41:25\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:42:03', 103, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2420, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/114', '192.168.110.6', '内网IP', '{}', NULL, 1, '剑士已分配,不能删除', '2024-01-05 10:42:05', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2421, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/113', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:42:11', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2422, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/111', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:42:16', 60, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2423, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:47:22\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:48:00', 170, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2424, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":130}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:48:06', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2425, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptName\":\"123\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:47:50\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:48:28', 131, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2426, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:48:16\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:48:54', 135, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2427, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":130}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:49:16', 134, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2428, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:48:52\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 10:49:30', 133, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2429, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:54:31\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:55:09', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2430, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 10:54:33\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 10:55:11', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2431, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:05:40\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:06:18', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2432, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptName\":\"123\",\"districtId\":7,\"nickName\":\"风\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:05:59\",\"userId\":130,\"userName\":\"13222222222\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 11:06:37', 119, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2433, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:06:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:06:50', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2434, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptName\":\"999\",\"districtId\":8,\"nickName\":\"99\",\"params\":{},\"phonenumber\":\"13222222222\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userName\":\"13222222222\"}', '{\"msg\":\"新增用户\'13222222222\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 11:16:25', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2435, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.6', '内网IP', '{\"orderToCheckId\":\"28\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:16:56', 244, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2436, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.6', '内网IP', '{\"orderToCheckId\":\"29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:16:58', 176, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2437, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.22', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 11:16:22\",\"deptName\":\"123\",\"districtId\":7,\"nickName\":\"李\",\"params\":{},\"phonenumber\":\"13288888888\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userId\":131,\"userName\":\"13288888888\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:17:00', 121, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2438, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.6', '内网IP', '{\"orderToCheckId\":\"32\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:17:00', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2439, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptName\":\"123321\",\"districtId\":7,\"nickName\":\"李\",\"params\":{},\"phonenumber\":\"13288888888\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:24:57\",\"userId\":131,\"userName\":\"13288888888\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 11:25:35', 140, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2440, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptName\":\"1231231\",\"districtId\":7,\"nickName\":\"李\",\"params\":{},\"phonenumber\":\"13288888888\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:25:33\",\"userId\":131,\"userName\":\"13288888888\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 11:26:12', 149, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2441, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":110,\"roleName\":\"维修组111\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 11:26:45', 120, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2442, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.6', '内网IP', '{\"menuIds\":[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,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],\"roleName\":\"维修组111\"}', '{\"msg\":\"新增角色\'维修组111\'失败,角色名称已存在\",\"code\":500}', 0, NULL, '2024-01-05 11:30:01', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2443, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.6', '内网IP', '{\"menuIds\":[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,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],\"roleName\":\"管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:30:13', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2444, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[4,6,7,8,9,10,11,29,30,31,32,33,34,35,36,37,38,39],\"roleId\":119,\"roleName\":\"管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:30:22', 89, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2445, '角色信息-角色删除角色', 3, 'com.ruoyi.web.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', NULL, '/system/role/deleteById/119', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 11:30:51', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2446, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:33:53\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:34:31', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2447, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:33:56\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:34:34', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2448, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 11:39:39\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:40:18', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2449, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.22', '内网IP', '{\"status\":0,\"userId\":131}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 11:40:40', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2450, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.6', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,35],\"roleName\":\"角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:40:55', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2451, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, '13288888888', NULL, '/system/role/changeStatus', '192.168.110.22', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":109,\"status\":0,\"updateBy\":\"13288888888\",\"updateTime\":\"2024-01-05 11:43:29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 11:44:07', 43, NULL, '低级管理员', '13288888888', 131, '李');
INSERT INTO `sys_oper_log` VALUES (2452, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.22', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:02:11', 201, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2453, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.22', '内网IP', '{\"menuIds\":[5,23,24,25,26,27,28,6],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:02:24', 55, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2454, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.22', '内网IP', '{\"menuIds\":[4,5,23,24,25,26,27,28],\"roleId\":110,\"roleName\":\"维修组111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:02:42', 189, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2455, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.22', '内网IP', '{\"menuIds\":[4],\"roleId\":110,\"roleName\":\"维修组111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:02:54', 71, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2456, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.6', '内网IP', '{\"inspectionDeviceId\":\"15,14,13,12,11,10,9,8,7,6\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:26:16', 1896, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2457, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.6', '内网IP', '{\"inspectionDeviceId\":\"60,59,58,57,56,53,52,51,50,49\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:27:09', 70, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2458, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.6', '内网IP', '{\"inspectionDeviceId\":\"48,47,46,45,44,43,42,41,40,38\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:27:13', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2459, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.6', '内网IP', '{\"inspectionDeviceId\":\"36,34,33,32,31,30,29,28,27,26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:27:19', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2460, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.6', '内网IP', '{\"inspectionDeviceId\":\"25,24,23,22,21,20,19,18,17,16\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:27:23', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2461, '光缆巡检-设备删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.deviceDelete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/deviceDelete', '192.168.110.6', '内网IP', '{\"inspectionDeviceId\":\"61\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 14:27:45', 92, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2462, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":11,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":115,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 15:04:25\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 15:05:03', 188, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2463, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"24\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 15:07:11', 102, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2464, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市武侯区广福桥街16号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-05 15:13:19\",\"endTime\":\"2024-01-05 20:13:32\",\"id\":25,\"inspectionCount\":3,\"inspectionName\":\"新建巡检1\",\"lat\":\"30.633848\",\"lon\":\"104.038883\",\"planCycle\":1,\"startTime\":\"2024-01-05 07:13:27\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 15:13:56', 58, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2465, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"25\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 15:14:14', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2466, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.6', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2024-01-05 15:45:17', 141, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2467, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":114,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 16:16:12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 16:16:49', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2468, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":114,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 16:16:15\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 16:16:52', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2469, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 16:16:21\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 16:16:59', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2470, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":true,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":1,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 16:16:26\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 16:17:03', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2471, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":120,\"sex\":\"1\",\"status\":\"1\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 16:38:44', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2472, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":120,\"sex\":\"1\",\"status\":\"1\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 16:38:48', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2473, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":2,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":120,\"sex\":\"1\",\"status\":\"1\",\"userName\":\"15731511109\"}', '{\"msg\":\"新增用户\'15731511109\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-05 16:38:57', 8, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2474, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市锦江区晨辉北路6号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-05 16:54:54\",\"endTime\":\"2024-01-05 19:55:05\",\"id\":26,\"inspectionCount\":2,\"inspectionName\":\"电线巡检1\",\"lat\":\"30.609162\",\"lon\":\"104.103443\",\"planCycle\":1,\"startTime\":\"2024-01-05 11:55:01\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 16:55:31', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2475, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"26\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 16:55:37', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2476, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"63\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:03:40', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2477, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"金川县\",\"checkIds\":[],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 17:05:30\",\"districtId\":1,\"id\":64,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:06:08', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2478, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"64\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:09:43', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2479, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"checkIds\":[1,3,4],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 17:12:26\",\"id\":65}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:13:04', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2480, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.6', '内网IP', '{\"tRoomWorkOrderId\":\"65\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:13:24', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2481, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"52\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:20:00', 688, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2482, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-05 17:31:20', 215, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2483, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,5,6,7,23,24,25,26,27,28,29,30,31,32,33,34],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:31:47', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2484, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":115,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 17:37:42\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-05 17:38:20', 129, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2485, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"新增运输传承---编辑编辑1\",\"checkType\":3,\"id\":19}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:43:08', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2486, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:44:04', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2487, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:59:01', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2488, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 17:59:20', 6, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2489, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 18:00:48\",\"id\":23}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:01:25', 45, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2490, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 18:01:09\",\"id\":24}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:01:47', 25, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2491, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"23\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:01:51', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2492, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"24\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:03:00', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2493, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"电源配套检查\",\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-05 18:03:44\",\"id\":25}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:04:22', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2494, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.91', '内网IP', '{\"menuIds\":[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,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],\"roleName\":\"新建\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:10:21', 65, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2495, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,3,12,13,14,15,16,17,18,19,20,21,22,40,41,42,43,44,45,46,48,49,50,51,52,53,54,55,56,57,58,59,47],\"roleId\":121,\"roleName\":\"新建\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:10:34', 90, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2496, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[3,18,19,20,21,22,50,51,52,53,54,55,56,57,58,59],\"roleId\":121,\"roleName\":\"新建\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:10:40', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2497, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:10:56', 72, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2498, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[5,6,23,24,25,26,27,28],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:11:04', 90, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2499, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,48,49,47],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:11:38', 86, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2500, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,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,3,18,19,20,21,22,50,51,52,53,54,55,56,57,58,59],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:12:06', 91, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2501, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":115,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-05 18:12:00\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:12:37', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2502, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,48,49,47],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-05 18:12:49', 6462, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2503, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-08 09:30:47', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2504, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,5,6,7,23,24,25,26,27,28,29,30,31,32,33,34],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:31:12', 70, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2505, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":6,\"nickName\":\"dgq\",\"params\":{},\"phonenumber\":\"18224358736\",\"remark\":\"是的发送到发送到\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-08 09:31:37\",\"userId\":110,\"userName\":\"18224358736\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-08 09:32:20', 105, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2506, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-08 09:32:24', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2507, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"广安\",\"checkIds\":[18,25],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-08 09:41:46\",\"districtId\":11,\"id\":66,\"site\":\"广安市广安区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:42:28', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2508, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"电源配套检查 电源配套检查\",\"checkType\":2,\"id\":25}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:44:38', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2509, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"传输承载\",\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2024-01-08 09:44:53\",\"id\":26},{\"checkContent\":\"传输承载1\",\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2024-01-08 09:44:53\",\"id\":27}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:45:35', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2510, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"天天\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":1,\"faultBack\":\"估计必出\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"},{\"checkId\":26,\"checkResult\":0,\"faultBack\":\"刚才聚不聚加不加班\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"村干部就能看哪里哪里你卡办卡办卡看吧\"},{\"checkId\":27,\"checkResult\":1,\"faultBack\":\"吃药避开不能看\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-08 09:48:39\",\"directTime\":\"2024-01-08 09:48:39.838\",\"districtId\":1,\"id\":67,\"site\":\"发呼呼呼\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:49:22', 76, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2511, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":4,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":115,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-08 09:49:51\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-08 09:50:34', 112, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2512, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"66\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:50:59', 28, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2513, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"电源\",\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-08 09:58:41\",\"id\":28}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 09:59:23', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2514, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"肚肚\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":0,\"faultBack\":\"超级超级吃就差你\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"现金想你想你想你想你想你谢娜\"},{\"checkId\":25,\"checkResult\":0,\"faultBack\":\"吃鸡才能吃不得苦\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"洗剪吹难兄难弟继续继续就相机逆袭\"},{\"checkId\":28,\"checkResult\":0,\"faultBack\":\"大裤衩奖学金就行\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"超级超级带你吃鸡仓库抗打击从哪从哪从哪\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-08 10:05:08\",\"directTime\":\"2024-01-08 10:05:08.517\",\"districtId\":8,\"id\":68,\"site\":\"天府新谷\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:05:51', 55, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2515, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,5,6,7,23,24,25,26,27,28,29,30,31,32,33,34],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:12:25', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2516, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,5,6,7,23,24,25,26,27,28,29,30,31,32,33,34,15,1,2],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:18:44', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2517, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:30:16', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2518, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:30:46', 4, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2519, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:32:56', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2520, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.6', '内网IP', '{\"orderToCheckId\":\"155\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:36:58', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2521, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:41:55', 13, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2522, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:42:04', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2523, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-08 10:42:14\",\"id\":29}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:42:14', 70, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2524, '检查项-删除', 3, 'com.ruoyi.web.controller.api.TCheckController.delete()', 'GET', 1, 'admin', NULL, '/tCheck/delete', '192.168.110.6', '内网IP', '{\"tCheckId\":\"29\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:42:20', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2525, '机房工单-移出隐患库', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.removeDanger()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/removeDanger', '192.168.110.6', '内网IP', '{\"orderToCheckId\":\"157\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:46:15', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2526, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:53:25', 14, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2527, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:53:37', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2528, '检查项-新增', 1, 'com.ruoyi.web.controller.api.TCheckController.add()', 'POST', 1, 'admin', NULL, '/tCheck/add', '192.168.110.91', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 10:55:12', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2529, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.6', '内网IP', '{\"tRoomWorkOrderId\":\"71\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 11:30:51', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2530, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"70\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 11:31:54', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2531, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"地铁5号线\",\"createBy\":\"admin\",\"createTime\":\"2024-01-08 11:33:56\",\"endTime\":\"2024-01-08 19:33:33\",\"id\":27,\"inspectionCount\":2,\"inspectionName\":\"巡检巡检4\",\"lat\":\"30.581867\",\"lon\":\"104.050208\",\"planCycle\":1,\"startTime\":\"2024-01-08 01:33:28\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 11:33:56', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2532, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"27\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 11:34:16', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2533, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"68\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 11:42:28', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2534, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"成都\",\"checkType\":3,\"checks\":[{\"checkId\":19,\"checkResult\":0,\"faultBack\":\"飞机场客人经常\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"地方看才看到就到家发酒疯分开客服\"},{\"checkId\":26,\"checkResult\":0,\"faultBack\":\"重新今夕何夕\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"帝都小鸡小鸡小鸡小鸡放假多久\"},{\"checkId\":27,\"checkResult\":0,\"faultBack\":\"哥粗u重复u发的奖学金\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"豆腐脑发你的男的女的你那都\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-08 14:41:55\",\"directTime\":\"2024-01-08 14:41:55.454\",\"districtId\":4,\"id\":72,\"site\":\"天府新谷\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 14:42:38', 53, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2535, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-08 17:34:39\",\"deptName\":\"测试部\",\"districtId\":3,\"nickName\":\"金金\",\"params\":{},\"phonenumber\":\"15983498664\",\"remark\":\"eccvf\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userId\":133,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-08 17:34:39', 139, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2536, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部\",\"districtId\":3,\"nickName\":\"金金1\",\"params\":{},\"phonenumber\":\"15983498664\",\"remark\":\"eccvf\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-08 18:00:27\",\"userId\":133,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-08 18:00:27', 152, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2537, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:19:06\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userId\":134,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:19:06', 119, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2538, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/134', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-09 09:20:04', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2539, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:20:32\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userId\":135,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:20:32', 107, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2540, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/135', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-09 09:21:01', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2541, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:21:25\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userId\":136,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:21:25', 92, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2542, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/136', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-09 09:22:24', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2543, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:22:52\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":109,\"sex\":\"0\",\"status\":\"1\",\"userId\":137,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:22:52', 102, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2544, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/137', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-09 09:23:01', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2545, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:23:34\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":112,\"sex\":\"0\",\"status\":\"1\",\"userId\":138,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:23:34', 111, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2546, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/138', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-09 09:24:38', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2547, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:24:59\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":112,\"sex\":\"0\",\"status\":\"1\",\"userId\":139,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:24:59', 104, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2548, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/139', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-09 09:25:08', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2549, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-09 09:30:01\",\"deptName\":\"添加\",\"districtId\":1,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260585\",\"roleId\":112,\"sex\":\"0\",\"status\":\"0\",\"userId\":140,\"userName\":\"15682260585\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:30:01', 101, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2550, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"电源\",\"checkType\":2,\"id\":28}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 09:31:06', 12, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2551, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市滨河路与达萨街交叉口西140米\",\"createBy\":\"admin\",\"createTime\":\"2024-01-09 14:53:31\",\"endTime\":\"2024-01-16 14:53:02\",\"id\":28,\"inspectionCount\":4,\"inspectionName\":\"最后的测试\",\"lat\":\"31.901924\",\"lon\":\"102.217477\",\"planCycle\":1,\"startTime\":\"2024-01-09 14:52:58\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 14:53:31', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2552, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"28\",\"userId\":\"140\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 15:01:10', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2553, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省自贡市大安区大山铺238号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-09 15:15:38\",\"endTime\":\"2024-01-15 15:15:16\",\"id\":29,\"inspectionCount\":3,\"inspectionName\":\"测试\",\"lat\":\"29.395482\",\"lon\":\"104.829471\",\"planCycle\":1,\"startTime\":\"2024-01-08 15:15:13\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 15:15:38', 61, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2554, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"29\",\"userId\":\"140\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-09 15:15:45', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2555, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"73\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 09:32:45', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2556, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"新谷\",\"checkIds\":[1,3,4],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 09:33:17\",\"districtId\":3,\"id\":74,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 09:33:17', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2557, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"74\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 09:33:22', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2558, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市武侯区锦晖西二街\",\"createBy\":\"admin\",\"createTime\":\"2024-01-10 09:53:54\",\"endTime\":\"2024-01-10 12:00:28\",\"id\":30,\"inspectionCount\":2,\"inspectionName\":\"光缆巡检计划\",\"lat\":\"30.585731\",\"lon\":\"104.056177\",\"planCycle\":1,\"startTime\":\"2024-01-10 10:30:18\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 09:53:54', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2559, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"30\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 09:54:00', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2560, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"发发发\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":1,\"faultBack\":\"防护吃鸡\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"},{\"checkId\":25,\"checkResult\":0,\"faultBack\":\"吃鸡鸡刚刚好i\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"付过款v给伙计i喜欢看干干净净好先回家\"},{\"checkId\":28,\"checkResult\":1,\"faultBack\":\"东方快车看成绩小姐姐相机唱戏机\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-10 09:58:55\",\"directTime\":\"2024-01-10 09:58:55.288\",\"districtId\":1,\"id\":75,\"site\":\"2\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 09:59:36', 62, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2561, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 10:33:18', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2562, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 10:34:26', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2563, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"不不\",\"checkType\":1,\"checks\":[{\"checkId\":1,\"checkResult\":0,\"faultBack\":\"重新继续继续你\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"贷款信息快开学快点快点看打卡\"},{\"checkId\":3,\"checkResult\":1,\"faultBack\":\"小鸡小鸡的奖学金\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"},{\"checkId\":4,\"checkResult\":0,\"faultBack\":\"猜猜看仓库辛苦辛苦\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"匆匆忙忙都没吃苦咖啡非常你不会\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-10 10:35:03\",\"directTime\":\"2024-01-10 10:35:03.677\",\"districtId\":1,\"id\":76,\"site\":\"的可大可小\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 10:35:45', 60, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2564, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 10:45:00', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2565, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 10:45:18', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2566, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"29\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 10:46:25', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2567, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"段段\",\"checkType\":2,\"checks\":[{\"checkId\":18,\"checkResult\":0,\"faultBack\":\"出成绩更何况健康\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"复合弓i看吧吃吧看公积金\"},{\"checkId\":25,\"checkResult\":0,\"faultBack\":\"多喝点很喜欢电话\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"许海峰小鸡小鸡记得记得就打\"},{\"checkId\":28,\"checkResult\":1,\"faultBack\":\"想反反复复倒车尝尝搞笑的\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-10 10:49:42\",\"directTime\":\"2024-01-10 10:49:42.138\",\"districtId\":1,\"id\":77,\"site\":\"2\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 10:50:23', 49, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2568, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":2,\"nickName\":\"若依1\",\"params\":{},\"phonenumber\":\"15666666666\",\"remark\":\"测试员\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-10 15:12:34\",\"userId\":120,\"userName\":\"15666666666\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 15:12:34', 144, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2569, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"湖北省襄阳市南漳县\",\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:12:46\",\"endTime\":\"2024-01-17 15:12:24\",\"id\":31,\"inspectionCount\":3,\"inspectionName\":\"最后测试巡检新建111\",\"lat\":\"31.381971\",\"lon\":\"111.619137\",\"planCycle\":1,\"startTime\":\"2024-01-10 15:12:07\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:12:46', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2570, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"31\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:13:04', 92, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2571, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":5,\"nickName\":\"啦啦\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15983498664\"}', '{\"msg\":\"新增用户\'15983498664\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-10 15:19:24', 3, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2572, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:20:53\",\"deptName\":\"技术部\",\"districtId\":1,\"nickName\":\"啦啦\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userId\":141,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:20:53', 133, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2573, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:24:25', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2574, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":141}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 15:50:22', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2575, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":141}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 15:50:24', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2576, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":141}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 15:50:54', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2577, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/141', '192.168.110.6', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 15:50:56', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2578, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:51:22\",\"deptName\":\"测试部\",\"districtId\":5,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"1\",\"userId\":142,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:51:23', 1141, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2579, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":142}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 15:51:29', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2580, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:52:34', 138, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2581, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:53:37', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2582, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:54:39', 21, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2583, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":34},{\"checkContent\":\"机楼长、机房长职责落地\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":35},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":36},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":37},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":38},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":39},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:54:45\",\"id\":40}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:54:46', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2584, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:55:43', 9, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2585, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":42},{\"checkContent\":\"机楼长、机房长职责落地\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":43},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":44},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":45},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":46},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":47},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":48},{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":49},{\"checkContent\":\"机楼长、机房长职责落地\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":50},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":51},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":52},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":53},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":54},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":55},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:55:54\",\"id\":56}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:55:54', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2586, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:57:38', 25, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2587, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":58},{\"checkContent\":\"机楼长、机房长职责落地\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":59},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":60},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":61},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":62},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":63},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":64},{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":65},{\"checkContent\":\"机楼长、机房长职责落地\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":66},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":67},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":68},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":69},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":70},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":71},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":72},{\"checkContent\":\"机房内规范悬挂安全管理制度悬挂\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":73},{\"checkContent\":\"机楼长、机房长职责落地\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":74},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 15:57:44\",\"id\":75},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:57:44', 132, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2588, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 15:59:50', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2589, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"id\":88},{\"checkContent\":\"检查机房是否有出错阿斯顿发送到\",\"checkType\":1,\"id\":89},{\"checkContent\":\"而给我儿\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 16:00:07\",\"id\":3}]}', NULL, 1, 'com.ruoyi.system.mapper.TCheckMapper.insert (batch index #1) failed. Cause: java.sql.BatchUpdateException: Duplicate entry \'3\' for key \'t_check.PRIMARY\'\n; Duplicate entry \'3\' for key \'t_check.PRIMARY\'; nested exception is java.sql.BatchUpdateException: Duplicate entry \'3\' for key \'t_check.PRIMARY\'', '2024-01-10 16:00:07', 70, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2590, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部\",\"districtId\":5,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-10 16:01:13\",\"userId\":142,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 16:01:13', 102, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2591, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"id\":88},{\"checkContent\":\"检查机房是否有出错阿斯顿发送到\",\"checkType\":1,\"id\":89},{\"checkContent\":\"而给我儿\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 16:03:34\",\"id\":3}]}', NULL, 1, 'com.ruoyi.system.mapper.TCheckMapper.insert (batch index #1) failed. Cause: java.sql.BatchUpdateException: Duplicate entry \'3\' for key \'t_check.PRIMARY\'\n; Duplicate entry \'3\' for key \'t_check.PRIMARY\'; nested exception is java.sql.BatchUpdateException: Duplicate entry \'3\' for key \'t_check.PRIMARY\'', '2024-01-10 16:03:34', 70, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2592, '检查项-检查项导入', 6, 'com.ruoyi.web.controller.api.TCheckController.importContract()', 'POST', 1, 'admin', NULL, '/tCheck/importContract', '192.168.110.91', '内网IP', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 16:03:52', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2593, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.91', '内网IP', '{\"TChecks\":[{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"id\":88},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"id\":89},{\"checkContent\":\"检查机房是否有出错\",\"checkType\":1,\"id\":90},{\"checkContent\":\"111\",\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-10 16:04:10\",\"id\":91}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 16:04:10', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2594, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"技术部\",\"districtId\":5,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-10 16:05:36\",\"userId\":142,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-10 16:05:36', 107, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2595, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市武侯区府城大道西段399号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-10 17:24:41\",\"endTime\":\"2024-01-10 21:24:22\",\"id\":32,\"inspectionCount\":2,\"inspectionName\":\"巡检eded \",\"lat\":\"30.586922\",\"lon\":\"104.055732\",\"planCycle\":1,\"startTime\":\"2024-01-10 11:24:18\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 17:24:41', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2596, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"78\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 17:42:53', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2597, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"哈哈哈\",\"checkType\":1,\"checks\":[{\"checkId\":88,\"checkResult\":0,\"faultBack\":\"房间号光棍节科技部\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"好吃就好课本剧臭居居v他\"},{\"checkId\":89,\"checkResult\":0,\"faultBack\":\"赶紧看吧\",\"lat\":\"30.588266\",\"lon\":\"104.053425\",\"solution\":\"差距看吧女竞技场聚餐叽咕叽咕急急急\"},{\"checkId\":90,\"checkResult\":1,\"faultBack\":\"尝尝看过v看v看吧看看吧\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"},{\"checkId\":91,\"checkResult\":1,\"faultBack\":\"喜提给客户超级烦ivi\",\"lat\":\"30.588266\",\"lon\":\"104.053425\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-10 17:58:29\",\"directTime\":\"2024-01-10 17:58:29.425\",\"districtId\":1,\"id\":79,\"site\":\"苍井空\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 17:59:11', 50, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2598, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 18:09:04', 73, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2599, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-10 18:18:04', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2600, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.34', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-10 18:23:34', 93, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2601, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.34', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-10 18:23:56', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2602, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.34', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [F:\\workSpace\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-10 18:25:15', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2603, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:01:38', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2604, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[4,23,5,1],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:08:42', 84, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2605, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":3,\"nickName\":\"cxl\",\"params\":{},\"phonenumber\":\"18782688863\",\"remark\":\"理县\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-11 09:09:15\",\"userId\":113,\"userName\":\"18782688863\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:09:15', 112, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2606, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:11:19', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2607, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,3,4,5,6,7,8,9,10,11,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,50,51,52,53,54,55,56,57,58,59,2,12,13,14,15,16,17,40,41,42,43,44,45,46,47,48,49],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:11:40', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2608, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:15:49', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2609, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:18:21', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2610, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:18:45', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2611, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:19:30', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2612, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域123\",\"checkIds\":[88],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 09:31:07\",\"districtId\":1,\"id\":80,\"site\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:31:07', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2613, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"80\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:31:18', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2614, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"32\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:37:53', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2615, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:46:39', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2616, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":0,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 09:47:56', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2617, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"78\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 09:52:22', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2618, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市武侯区府城大道西段399号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 11:44:48\",\"endTime\":\"2024-01-11 13:45:15\",\"id\":33,\"inspectionCount\":2,\"inspectionName\":\"巡检提醒\",\"lat\":\"30.586922\",\"lon\":\"104.055732\",\"planCycle\":1,\"startTime\":\"2024-01-11 12:30:48\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:45:31', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2619, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"33\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:45:36', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2620, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"添加111\",\"districtId\":5,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-11 11:47:20\",\"userId\":142,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 11:48:03', 126, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2621, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"工单\",\"checkIds\":[88],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 11:48:01\",\"districtId\":3,\"id\":81,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:48:44', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2622, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"81\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:49:08', 293, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2623, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 11:49:43\",\"deptName\":\"121212\",\"districtId\":8,\"nickName\":\"阿坝\",\"params\":{},\"phonenumber\":\"15682260581\",\"remark\":\"111111\",\"roleId\":118,\"sex\":\"0\",\"status\":\"0\",\"userId\":143,\"userName\":\"15682260581\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:50:27', 149, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2624, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州阿坝县德吉路16号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 11:51:48\",\"endTime\":\"2024-01-18 11:52:17\",\"id\":34,\"inspectionCount\":2,\"inspectionName\":\"新\",\"lat\":\"32.902826\",\"lon\":\"101.70658\",\"planCycle\":1,\"startTime\":\"2024-01-11 11:06:13\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:52:31', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2625, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"34\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:52:44', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2626, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"四川省阿坝藏族羌族自治州马尔康市\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 11:57:13\",\"endTime\":\"2024-01-18 11:57:37\",\"id\":35,\"inspectionCount\":3,\"inspectionName\":\"见\",\"lat\":\"31.901974\",\"lon\":\"102.217566\",\"planCycle\":1,\"startTime\":\"2024-01-11 11:57:33\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:57:57', 977, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2627, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"35\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 11:58:06', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2628, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"添加111\",\"districtId\":8,\"nickName\":\"阿坝\",\"params\":{},\"phonenumber\":\"15682260581\",\"remark\":\"111111\",\"roleId\":118,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-11 14:04:21\",\"userId\":143,\"userName\":\"15682260581\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 14:05:04', 210, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2629, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.106', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 14:05:01\",\"deptName\":\"111\",\"districtId\":1,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"19522115070\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"userId\":144,\"userName\":\"19522115070\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 14:05:44', 154, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2630, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"添加111\",\"districtId\":8,\"nickName\":\"阿坝\",\"params\":{},\"phonenumber\":\"15682260581\",\"remark\":\"111111\",\"roleId\":118,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-11 14:19:54\",\"userId\":143,\"userName\":\"15682260581\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 14:20:37', 151, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2631, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"35\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:18:40', 44, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2632, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"地铁2号线,地铁1号线\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 15:29:25\",\"endTime\":\"2024-01-11 16:47:51\",\"id\":36,\"inspectionCount\":2,\"inspectionName\":\"四点巡检\",\"lat\":\"30.657456\",\"lon\":\"104.066771\",\"planCycle\":1,\"startTime\":\"2024-01-11 16:00:42\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:30:08', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2633, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"36\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:30:15', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2634, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"工单\",\"checkIds\":[91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 15:30:18\",\"districtId\":2,\"id\":82,\"site\":\"广安市广安区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:31:01', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2635, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"82\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:31:07', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2636, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 15:52:41', 59, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2637, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 15:53:16', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2638, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 15:53:38', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2639, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":0,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 15:53:50', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2640, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 15:57:02\",\"endTime\":\"2024-01-11 17:57:24\",\"id\":37,\"inspectionCount\":2,\"inspectionName\":\"巡检\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-11 16:30:09\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:57:46', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2641, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"37\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 15:57:52', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2642, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"甘肃省定西市漳县四族镇\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 16:07:27\",\"endTime\":\"2024-01-11 17:07:52\",\"id\":38,\"inspectionCount\":2,\"inspectionName\":\"测试提执行\",\"lat\":\"34.659064\",\"lon\":\"104.412237\",\"planCycle\":1,\"startTime\":\"2024-01-11 16:39:00\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:08:10', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2643, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"38\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:08:18', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2644, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.91', '内网IP', '{\"address\":\"甘肃省定西市漳县四族镇\",\"createBy\":\"admin\",\"createTime\":\"2024-01-11 16:13:59\",\"endTime\":\"2024-01-18 16:14:27\",\"id\":39,\"inspectionCount\":2,\"inspectionName\":\"工单提醒\",\"lat\":\"34.659064\",\"lon\":\"104.412237\",\"planCycle\":1,\"startTime\":\"2024-01-11 16:46:14\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:14:43', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2645, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"39\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:14:48', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2646, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"gongdsan \",\"checkIds\":[91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 16:16:59\",\"districtId\":2,\"id\":83,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:17:43', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2647, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"83\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:18:06', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2648, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"1\",\"checkIds\":[90,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 16:18:17\",\"districtId\":3,\"id\":84,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:19:01', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2649, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"84\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 16:19:07', 25, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2650, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:23:23\",\"deptName\":\"开发部\",\"districtId\":2,\"nickName\":\"偏偏\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       deptName,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,                   districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,                 ?,      sysdate()    )\r\n### Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n; bad SQL grammar []; nested exception is java.sql.SQLException: Column count doesn\'t match value count at row 1', '2024-01-11 17:24:07', 251, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2651, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:23:28\",\"deptName\":\"开发部\",\"districtId\":2,\"nickName\":\"偏偏\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       deptName,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,                   districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,                 ?,      sysdate()    )\r\n### Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n; bad SQL grammar []; nested exception is java.sql.SQLException: Column count doesn\'t match value count at row 1', '2024-01-11 17:24:11', 88, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2652, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:23:36\",\"deptName\":\"开发部\",\"districtId\":2,\"nickName\":\"偏偏\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       deptName,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,                   districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,                 ?,      sysdate()    )\r\n### Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n; bad SQL grammar []; nested exception is java.sql.SQLException: Column count doesn\'t match value count at row 1', '2024-01-11 17:24:20', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2653, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:23:41\",\"deptName\":\"开发部\",\"districtId\":2,\"nickName\":\"偏偏\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15102879064\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       deptName,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,                   districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,                 ?,      sysdate()    )\r\n### Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n; bad SQL grammar []; nested exception is java.sql.SQLException: Column count doesn\'t match value count at row 1', '2024-01-11 17:24:25', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2654, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:25:23\",\"deptName\":\"添加\",\"districtId\":8,\"nickName\":\"订单\",\"params\":{},\"phonenumber\":\"15682260582\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"userName\":\"15682260582\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserMapper.xml]\r\n### The error may involve com.ruoyi.system.mapper.SysUserMapper.insertUser-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user(                  user_name,       deptName,       nick_name,                   phonenumber,       sex,       password,       status,       create_by,                   districtId,      create_time    )values(                  ?,       ?,                   ?,       ?,       ?,       ?,       ?,                 ?,      sysdate()    )\r\n### Cause: java.sql.SQLException: Column count doesn\'t match value count at row 1\n; bad SQL grammar []; nested exception is java.sql.SQLException: Column count doesn\'t match value count at row 1', '2024-01-11 17:26:07', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2655, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:27:25\",\"deptName\":\"添加\",\"districtId\":8,\"nickName\":\"订单\",\"params\":{},\"phonenumber\":\"15682260582\",\"roleId\":109,\"sex\":\"0\",\"status\":\"0\",\"userId\":145,\"userName\":\"15682260582\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:28:09', 1997, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2656, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":145}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 17:31:01', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2657, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/145', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 17:31:04', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2658, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.91', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:30:42\",\"deptName\":\"121212\",\"districtId\":8,\"nickName\":\"罗\",\"params\":{},\"phonenumber\":\"15682260582\",\"roleId\":115,\"sex\":\"1\",\"status\":\"0\",\"userId\":146,\"userName\":\"15682260582\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:31:25', 127, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2659, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.91', '内网IP', '{\"status\":1,\"userId\":146}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 17:31:36', 45, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2660, '用户信息-批量删除用户', 3, 'com.ruoyi.web.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/system/user/deleteById/146', '192.168.110.91', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-11 17:31:38', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2661, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18224358736', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"888\",\"checkType\":1,\"checks\":[{\"checkId\":88,\"checkResult\":0,\"faultBack\":\"999\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"solution\":\"99999999999999999999999999\"},{\"checkId\":89,\"checkResult\":0,\"faultBack\":\"99999999999\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"solution\":\"999999999999999999\"},{\"checkId\":90,\"checkResult\":1,\"faultBack\":\"9999999999999\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"},{\"checkId\":91,\"checkResult\":1,\"faultBack\":\"8888888888888888\",\"lat\":\"30.64242\",\"lon\":\"104.04311\"}],\"createBy\":\"18224358736\",\"createTime\":\"2024-01-11 17:39:40\",\"directTime\":\"2024-01-11 17:39:40.989\",\"districtId\":1,\"id\":86,\"site\":\"11\",\"state\":1,\"userId\":110}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:40:24', 58, NULL, '低级管理员', '18224358736', 110, 'dgq');
INSERT INTO `sys_oper_log` VALUES (2662, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"天府新区\",\"checkIds\":[91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:42:25\",\"districtId\":1,\"id\":87,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:43:09', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2663, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"87\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:43:14', 47, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2664, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"4\",\"checkIds\":[90,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:43:57\",\"districtId\":1,\"id\":88,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:44:41', 78, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2665, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"88\",\"userId\":\"110\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:44:56', 42, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2666, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员1\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-11 17:45:30', 133, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2667, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员1\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-11 17:45:34', 66, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2668, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员1\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-11 17:45:42', 55, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2669, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":115,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-11 17:45:51\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:46:35', 46, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2670, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18224358736', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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],\"roleId\":1,\"roleName\":\"超级管理员12\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:50:59', 67, NULL, '低级管理员', '18224358736', 110, 'dgq');
INSERT INTO `sys_oper_log` VALUES (2671, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18224358736', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":1,\"roleName\":\"超级管理员\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-11 17:51:25', 81, NULL, '低级管理员', '18224358736', 110, 'dgq');
INSERT INTO `sys_oper_log` VALUES (2672, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":1,\"roleName\":\"超级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:52:38', 56, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2673, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":1,\"roleName\":\"超级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:52:43', 84, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2674, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,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],\"roleId\":1,\"roleName\":\"超级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:52:49', 87, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2675, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,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,3,18,19,20,21,22,50,51,52,53,54,55,56,57,58,59],\"roleId\":1,\"roleName\":\"超级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:52:52', 88, NULL, '超级管理员1', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2676, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":1,\"roleName\":\"超级管理员122\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:52:56', 64, NULL, '超级管理员122', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2677, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:53:02', 62, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2678, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-11 17:58:11\",\"deptName\":\"开发部\",\"districtId\":7,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"userId\":147,\"userName\":\"15102879064\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 17:58:55', 100, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2679, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,3,12,13,14,15,16,17,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-11 18:21:25', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2680, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18782688863', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,3,12,13,14,15,16,17,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,1,4,5,6,7,8,9,10,11,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,35],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:00:50', 99, NULL, '普通角色', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2681, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:02:51', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2682, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,48,49,47],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:03:07', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2683, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,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,3,18,19,20,21,22,50,51,52,53,54,55,56,57,58,59],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:03:10', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2684, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":115,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-12 09:28:31\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:29:15', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2685, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,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],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:46:06', 263, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2686, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,14,15,16,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,2],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:47:14', 91, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2687, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,14,15,16,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,2],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:47:54', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2688, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,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,2],\"roleId\":115,\"roleName\":\"斗士11\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'\n; Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'', '2024-01-12 09:49:23', 142, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2689, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,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,2],\"roleId\":115,\"roleName\":\"斗士11\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'\n; Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'115-2\' for key \'sys_role_menu.PRIMARY\'', '2024-01-12 09:49:31', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2690, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":114,\"roleName\":\"剑士1\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-12 09:51:10', 82, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2691, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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,48,49,50,51,52,53,54,55,56,57,58,59,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],\"roleId\":114,\"roleName\":\"剑士1\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-12 09:51:15', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2692, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:53:12', 5, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2693, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:53:20', 4, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2694, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"电源\",\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 09:53:53\",\"id\":92}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:54:38', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2695, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.29', '内网IP', '{\"area\":\"556\",\"checkType\":2,\"checks\":[{\"checkId\":92,\"checkResult\":0,\"faultBack\":\"法国呼呼\",\"lat\":\"30.585801866319443\",\"lon\":\"104.05594563802083\",\"solution\":\"发货快就好好哼哼唧唧叫爸爸我\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-12 09:55:33\",\"directTime\":\"2024-01-12 09:55:33.314\",\"districtId\":1,\"id\":89,\"site\":\"2\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 09:56:18', 82, NULL, '斗士11', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2696, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:01:15', 76, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2697, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:01:20', 66, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2698, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,3,12,13,14,15,16,17,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:01:26', 126, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2699, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":110,\"roleName\":\"维修组111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:01:33', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2700, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:01:38', 69, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2701, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":114,\"roleName\":\"剑士11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:01:54', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2702, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":115,\"roleName\":\"斗士11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:02:27', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2703, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":118,\"roleName\":\"产品顾\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:02:33', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2704, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":120,\"roleName\":\"角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:02:39', 70, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2705, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[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],\"roleId\":121,\"roleName\":\"新建\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:02:44', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2706, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,3,12,13,14,15,16,17,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":115,\"roleName\":\"斗士11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:02:51', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2707, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,3,12,13,14,15,16,17,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:02:56', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2708, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,14,15,16,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,2],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:03:47', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2709, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,14,15,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,2],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:03:58', 79, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2710, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,14,15,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,2],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:04:19', 88, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2711, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[3,12,13,14,15,18,19,20,21,22,40,41,42,43,44,45,46,50,51,52,53,54,55,56,57,58,59,2],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:05:11', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2712, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[20,21,22,55,56,57,58,59,1,4,5,6,7,8,9,10,11,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,35],\"roleId\":110,\"roleName\":\"维修组111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:07:01', 109, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2713, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,12,13,14,15,20,21,22,40,41,42,43,44,45,46,55,56,57,58,59,16,17,47,48,49],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:07:32', 114, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2714, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,12,13,14,15,16,17,40,41,42,43,44,45,46,47,48,49,50,51],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:08:03', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2715, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[2,12,13,14,15,16,17,40,41,42,43,44,45,46,47,48,49,50,51],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:08:18', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2716, '角色信息-新增角色', 1, 'com.ruoyi.web.controller.system.SysRoleController.add()', 'POST', 1, 'admin', NULL, '/system/role/add', '192.168.110.91', '内网IP', '{\"menuIds\":[21,55,56,57,58,59],\"roleName\":\"111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:08:47', 53, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2717, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.6', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2024-01-12 10:17:02', 177, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2718, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部\",\"districtId\":1,\"nickName\":\"嘟嘟\",\"params\":{},\"phonenumber\":\"15983498664\",\"roleId\":2,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-12 10:21:32\",\"userId\":142,\"userName\":\"15983498664\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-12 10:22:17', 165, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2719, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部门\",\"districtId\":13,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"15731511109\",\"roleId\":115,\"sex\":\"0\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-12 10:23:50\",\"userId\":127,\"userName\":\"15731511109\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-12 10:24:35', 136, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2720, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"88\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:24:45', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2721, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 10:26:18\",\"endTime\":\"2024-01-12 11:30:09\",\"id\":40,\"inspectionCount\":2,\"inspectionName\":\"巡检\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 11:00:00\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:27:03', 52, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2722, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"40\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:27:08', 57, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2723, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,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],\"roleId\":114,\"roleName\":\"剑士11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:29:12', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2724, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:29:40', 88, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2725, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.106', '内网IP', '{\"workOrderId\":\"90\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 10:37:42', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2726, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"20\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 11:08:12', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2727, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.29', '内网IP', '{\"area\":\"小金县\",\"checkType\":2,\"checks\":[{\"checkId\":92,\"checkResult\":0,\"faultBack\":\"小广场不i白醋uvi好\",\"lat\":\"30.585801866319443\",\"lon\":\"104.05594563802083\",\"solution\":\"唱歌v健康不可能吧看看吧办卡v局就\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-12 11:30:30\",\"directTime\":\"2024-01-12 11:30:30.917\",\"districtId\":13,\"id\":91,\"site\":\"天府广场\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 11:31:15', 51, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2728, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.91', '内网IP', '{\"InspectionId\":\"40\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 11:53:12', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2729, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"1\",\"checkType\":1,\"checks\":[{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":88,\"checkResult\":0,\"faultBack\":\"1111\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/sIXk2apCdasF252c6508cc82ad44f341528d1b62b4ea.jpg,https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/peEPlPfpAK8p252c6508cc82ad44f341528d1b62b4ea.jpg,https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/sn2AYCzQFc1X252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"1111111111111111111111\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":89,\"checkResult\":1,\"faultBack\":\"1111111111111\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/MDchhGZUSn2Z252c6508cc82ad44f341528d1b62b4ea.jpg,https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/bL6iSB6aVGHU252c6508cc82ad44f341528d1b62b4ea.jpg\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":90,\"checkResult\":1,\"faultBack\":\"222222222222\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/o84zBAY9ZyZn252c6508cc82ad44f341528d1b62b4ea.jpg\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":91,\"checkResult\":1,\"faultBack\":\"33333333\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/mQbOV53rUYYU252c6508cc82ad44f341528d1b62b4ea.jpg\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-12 14:34:13\",\"directTime\":\"2024-01-12 14:34:13.706\",\"districtId\":1,\"id\":94,\"site\":\"1\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:34:58', 77, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2730, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"22\",\"checkIds\":[90,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 14:36:06\",\"districtId\":2,\"id\":95,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:36:51', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2731, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"95\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:37:03', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2732, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"33\",\"checkIds\":[88,89,90],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 14:41:14\",\"districtId\":3,\"id\":96,\"site\":\"成都市武侯区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:41:59', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2733, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"96\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:42:04', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2734, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"11\",\"checkType\":1,\"checks\":[{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":88,\"checkResult\":0,\"faultBack\":\"222222222222222\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/EUaiYLCj9cju252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"3333333333333\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":90,\"checkResult\":0,\"faultBack\":\"22222222222\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/da4rFjeCFnxZ252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"111111111111111111111111\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":89,\"checkResult\":0,\"faultBack\":\"222222222222222\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/mylKKklCA4RY252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"333333333333333333333\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":91,\"checkResult\":1,\"faultBack\":\"3333333333333333\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/CJg7x1MU2pSi252c6508cc82ad44f341528d1b62b4ea.jpg\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-12 14:46:06\",\"directTime\":\"2024-01-12 14:46:06.702\",\"districtId\":1,\"id\":97,\"site\":\"11111111\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:46:51', 45, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2735, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"111\",\"checkType\":1,\"checks\":[{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":88,\"checkResult\":0,\"faultBack\":\"22222\",\"ifDanger\":1,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/Tvd4JAJzif5F252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"33333333333\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":89,\"checkResult\":0,\"faultBack\":\"1111111111111\",\"ifDanger\":1,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/oSys7k4e6Efn252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"9999999999999\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":91,\"checkResult\":1,\"faultBack\":\"111111111111111\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tOYBCOO45ZRY252c6508cc82ad44f341528d1b62b4ea.jpg\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":90,\"checkResult\":0,\"faultBack\":\"22222222222222222222\",\"ifDanger\":0,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/FF3L05PPUUJl252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"222222222222222\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-12 14:51:13\",\"directTime\":\"2024-01-12 14:51:13.8\",\"districtId\":1,\"id\":98,\"site\":\"111\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 14:51:59', 47, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2736, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:11:36', 7, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2737, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"111\",\"checkType\":1,\"checks\":[{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":88,\"checkResult\":0,\"faultBack\":\"222222222\",\"ifDanger\":1,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/xAFCxm4sV7is252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"111111111111111\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":89,\"checkResult\":1,\"faultBack\":\"888888888\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/RNRUHvdIPBGZ252c6508cc82ad44f341528d1b62b4ea.jpg\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":90,\"checkResult\":1,\"faultBack\":\"88888888\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/7wmZLEy3HWTh252c6508cc82ad44f341528d1b62b4ea.jpg\"},{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":91,\"checkResult\":1,\"faultBack\":\"8\",\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/pnMvlrZ0ikhb252c6508cc82ad44f341528d1b62b4ea.jpg\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-12 15:18:07\",\"directTime\":\"2024-01-12 15:18:07.906\",\"districtId\":1,\"id\":99,\"site\":\"11\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:18:53', 44, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2738, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"55\",\"checkIds\":[92],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 15:18:56\",\"districtId\":2,\"id\":100,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:19:42', 15, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2739, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"100\",\"userId\":\"113\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:19:48', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2740, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '18782688863', NULL, '/room/add', '192.168.110.22', '内网IP', '{\"area\":\"99999999\",\"checkType\":2,\"checks\":[{\"address\":\"四川省成都市武侯区武侯祠大街264号\",\"checkId\":92,\"checkResult\":0,\"faultBack\":\"88888888888888\",\"ifDanger\":1,\"lat\":\"30.64242\",\"lon\":\"104.04311\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/eKO7Nj3Z6Szd252c6508cc82ad44f341528d1b62b4ea.jpg\",\"solution\":\"8888888888888888888\"}],\"createBy\":\"18782688863\",\"createTime\":\"2024-01-12 15:20:44\",\"directTime\":\"2024-01-12 15:20:42.529\",\"districtId\":1,\"id\":101,\"site\":\"99999999\",\"state\":1,\"userId\":113}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:21:38', 25164, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2741, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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],\"roleId\":2,\"roleName\":\"普通角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:22:40', 1225, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2742, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[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],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:22:50', 95, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2743, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":112,\"status\":1,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-12 15:22:28\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:23:13', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2744, '角色信息-角色状态修改', 2, 'com.ruoyi.web.controller.system.SysRoleController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/role/changeStatus', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptCheckStrictly\":false,\"flag\":false,\"menuCheckStrictly\":false,\"roleId\":112,\"status\":0,\"updateBy\":\"admin\",\"updateTime\":\"2024-01-12 15:22:30\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:23:15', 43, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2745, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"工单1\",\"checkIds\":[88,89],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 15:23:35\",\"districtId\":2,\"id\":102,\"site\":\"广安市广安区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:24:20', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2746, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"102\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:24:29', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2747, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"顶顶顶\",\"checkIds\":[88,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 15:35:48\",\"districtId\":4,\"id\":103,\"site\":\"成都市武侯区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:36:34', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2748, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"103\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:36:39', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2749, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 15:38:21\",\"endTime\":\"2024-01-12 17:43:37\",\"id\":41,\"inspectionCount\":2,\"inspectionName\":\"新建巡检11\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 16:16:59\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:39:06', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2750, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"41\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:39:11', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2751, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 15:43:20\",\"endTime\":\"2024-01-12 16:43:52\",\"id\":42,\"inspectionCount\":2,\"inspectionName\":\"新建巡检33\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 15:43:49\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:44:05', 48, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2752, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"42\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:44:11', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2753, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"103\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 15:59:16', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2754, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"104\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:16:09', 25, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2755, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"天府新区1\",\"checkIds\":[88,89],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 16:18:20\",\"districtId\":3,\"id\":105,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:19:06', 28, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2756, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"105\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:19:13', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2757, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"天府新区3333\",\"checkIds\":[92],\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 16:21:51\",\"districtId\":4,\"id\":106,\"site\":\"广安市广安区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:22:36', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2758, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"106\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:22:42', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2759, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 16:38:57\",\"endTime\":\"2024-01-12 18:00:14\",\"id\":43,\"inspectionCount\":2,\"inspectionName\":\"巡检11\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 17:19:58\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:39:43', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2760, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"43\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:39:47', 112, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2761, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 16:49:41\",\"endTime\":\"2024-01-12 18:50:14\",\"id\":44,\"inspectionCount\":2,\"inspectionName\":\"电线巡检11\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 17:30:03\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:50:27', 56, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2762, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"44\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 16:50:32', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2763, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区西华门街17\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 17:12:37\",\"endTime\":\"2024-01-12 21:13:08\",\"id\":45,\"inspectionCount\":2,\"inspectionName\":\"电线巡检2222\",\"lat\":\"30.661853\",\"lon\":\"104.061901\",\"planCycle\":1,\"startTime\":\"2024-01-12 17:12:51\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:13:23', 304, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2764, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"天府新区1111\",\"checkIds\":[88,89,90,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-12 17:14:24\",\"districtId\":1,\"id\":108,\"site\":\"土方回填符合规范\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:15:09', 50, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2765, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"广东省中山市小榄镇时丰村时丰路16号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 17:16:27\",\"districtId\":13,\"endTime\":\"2024-01-12 22:16:53\",\"id\":46,\"inspectionCount\":2,\"inspectionName\":\"www\",\"lat\":\"22.613492\",\"lon\":\"113.250558\",\"planCycle\":1,\"startTime\":\"2024-01-12 17:15:28\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:17:12', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2766, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 17:19:35\",\"districtId\":13,\"endTime\":\"2024-01-12 20:20:03\",\"id\":47,\"inspectionCount\":2,\"inspectionName\":\"光缆电线11111\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 17:51:55\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:20:21', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2767, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"47\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:20:25', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2768, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 17:24:48\",\"districtId\":13,\"endTime\":\"2024-01-12 22:25:18\",\"id\":48,\"inspectionCount\":2,\"inspectionName\":\"电线巡检111\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 17:57:05\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:25:33', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2769, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"48\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:25:39', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2770, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '15731511109', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"吃鸡现金\",\"checkType\":2,\"checks\":[{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":92,\"checkResult\":0,\"faultBack\":\"v以后不能加班好几年\",\"ifDanger\":1,\"lat\":\"30.585801595052082\",\"lon\":\"104.05586859809027\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_4abce777c860b67460c6a250333823f5069f6e777f8b3e09.jpg\",\"solution\":\"v干部i您你你几年级你爸爸不急叽叽叽叽\"}],\"createBy\":\"15731511109\",\"createTime\":\"2024-01-12 17:30:02\",\"directTime\":\"2024-01-12 17:30:02.939\",\"districtId\":1,\"id\":109,\"site\":\"发个回家\",\"state\":1,\"userId\":127}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:30:50', 18268, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2771, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-12 17:35:47\",\"districtId\":3,\"endTime\":\"2024-01-12 23:36:21\",\"id\":49,\"inspectionCount\":2,\"inspectionName\":\"电线巡检1111111111111111\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-12 18:17:03\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:36:32', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2772, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"49\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:36:37', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2773, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[3,12,13,14,15,16,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:38:14', 95, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2774, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[3,12,13,14,15,16,18,19,20,21,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:38:22', 91, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2775, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:39:52', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2776, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,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,22],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:40:07', 74, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2777, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,4,5,6,7,8,9,10,11,12,13,14,15,16,18,20,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],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:40:48', 277, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2778, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[3,12,13,14,15,16,18,19,20,null,null,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59],\"roleId\":115,\"roleName\":\"斗士1\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\r\n### The error may exist in file [E:\\javaprojects\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysRoleMenuMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_role_menu(role_id, menu_id) values         (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)    ,     (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null\n; Column \'menu_id\' cannot be null; nested exception is java.sql.SQLIntegrityConstraintViolationException: Column \'menu_id\' cannot be null', '2024-01-12 17:41:18', 137, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2779, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:43:00', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2780, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,4,5,6,7,8,9,11,12,13,14,15,16,17,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,19],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:43:19', 85, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2781, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":1,\"roleName\":\"超级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:14', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2782, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:18', 69, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2783, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":109,\"roleName\":\"低级管理员\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:23', 81, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2784, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":110,\"roleName\":\"维修组111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:27', 77, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2785, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":112,\"roleName\":\"低级管理员1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:31', 71, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2786, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":114,\"roleName\":\"剑士11\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:36', 60, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2787, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:40', 84, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2788, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":118,\"roleName\":\"产品顾\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:45', 99, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2789, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":120,\"roleName\":\"角色\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:49', 71, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2790, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":121,\"roleName\":\"新建\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:44:54', 75, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2791, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":122,\"roleName\":\"111\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 17:45:01', 67, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2792, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:07:01', 68, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2793, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,3,4,5,6,7,8,9,11,12,13,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,50,51,52,53,54,16,47,48,49,2],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:08:26', 84, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2794, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,2],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:11:21', 89, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2795, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,2],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:12:08', 80, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2796, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18782688863', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:14:07', 85, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2797, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '18782688863', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,3,4,5,6,7,8,9,11,12,15,16,17,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,47,48,49,50,51,52,53,54],\"roleId\":2,\"roleName\":\"普通角色1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:20:08', 224, NULL, '普通角色1', '18782688863', 113, 'cxl');
INSERT INTO `sys_oper_log` VALUES (2798, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:22:25', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2799, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.91', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:22:34', 83, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2800, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, '15731511109', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,3,4,5,6,7,8,9,11,12,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,2,13,15,14,16],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:23:17', 71, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2801, '角色信息-编辑角色', 2, 'com.ruoyi.web.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/system/role', '192.168.110.6', '内网IP', '{\"menuIds\":[1,2,3,4,5,6,7,8,9,11,12,13,14,15,16,18,19,20,23,24,25,26,27,28,29,30,31,32,33,34,35,40,41,42,43,44,45,46,48,49,50,51,52,53,54],\"roleId\":115,\"roleName\":\"斗士1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:24:08', 87, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2802, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, '15731511109', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"浙江省湖州市吴兴区西塞山路3636号\",\"createBy\":\"15731511109\",\"createTime\":\"2024-01-12 18:34:04\",\"districtId\":13,\"endTime\":\"2024-01-12 22:34:29\",\"id\":50,\"inspectionCount\":2,\"inspectionName\":\"电线巡检000\",\"lat\":\"30.862361\",\"lon\":\"120.023955\",\"planCycle\":1,\"startTime\":\"2024-01-12 19:10:13\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:34:50', 873, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2803, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, '15731511109', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"50\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-12 18:34:55', 33, NULL, '斗士1', '15731511109', 127, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2804, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 09:23:03\",\"districtId\":13,\"endTime\":\"2024-01-15 11:23:35\",\"id\":51,\"inspectionCount\":2,\"inspectionName\":\"电线巡检11\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 10:00:27\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 09:23:53', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2805, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"51\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 09:23:58', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2806, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市双流区正北上街97号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 09:47:46\",\"districtId\":13,\"endTime\":\"2024-01-15 11:48:21\",\"id\":52,\"inspectionCount\":2,\"inspectionName\":\"电线巡检3232\",\"lat\":\"30.507754\",\"lon\":\"104.056131\",\"planCycle\":1,\"startTime\":\"2024-01-15 10:20:05\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 09:48:36', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2807, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"52\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 09:48:41', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2808, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 10:00:46\",\"districtId\":13,\"endTime\":\"2024-01-15 12:01:17\",\"id\":53,\"inspectionCount\":2,\"inspectionName\":\"巡检23232\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 10:34:54\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:01:35', 36, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2809, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"53\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:01:40', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2810, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 10:10:23\",\"districtId\":13,\"endTime\":\"2024-01-15 11:15:57\",\"id\":54,\"inspectionCount\":2,\"inspectionName\":\"电线巡检3333\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 10:42:45\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:11:13', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2811, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"54\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:11:19', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2812, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 10:21:15\",\"districtId\":13,\"endTime\":\"2024-01-15 13:21:50\",\"id\":55,\"inspectionCount\":2,\"inspectionName\":\"电线巡检2002\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 10:53:21\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:22:04', 69, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2813, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"55\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:22:09', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2814, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"55\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:59:17', 37, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2815, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"54\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:59:19', 27, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2816, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"53\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:59:21', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2817, '光缆巡检-删除', 3, 'com.ruoyi.web.controller.api.TOpticalInspectionController.delete()', 'DELETE', 1, 'admin', NULL, '/tOpticalInspection/delete', '192.168.110.6', '内网IP', '{\"tOpticalInspectionId\":\"52\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:59:24', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2818, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市双流区正北上街97号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 10:59:03\",\"districtId\":13,\"endTime\":\"2024-01-15 13:59:39\",\"id\":56,\"inspectionCount\":2,\"inspectionName\":\"电线巡检333333\",\"lat\":\"30.507754\",\"lon\":\"104.056131\",\"planCycle\":1,\"startTime\":\"2024-01-15 11:01:30\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:59:53', 26, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2819, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"56\",\"userId\":\"127\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 10:59:57', 32, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2820, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"台添\",\"params\":{},\"phonenumber\":\"15102879064\",\"roleId\":121,\"sex\":\"1\",\"status\":\"0\",\"userName\":\"15102879064\"}', '{\"msg\":\"新增用户\'15102879064\'失败,登录账号已存在\",\"code\":500}', 0, NULL, '2024-01-15 15:26:38', 12, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2821, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:26:30\",\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"台添\",\"params\":{},\"phonenumber\":\"15102879065\",\"roleId\":121,\"sex\":\"1\",\"status\":\"0\",\"userId\":148,\"userName\":\"15102879065\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:27:22', 37054, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2822, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:26:31\",\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"台添\",\"params\":{},\"phonenumber\":\"15102879065\",\"roleId\":121,\"sex\":\"1\",\"status\":\"0\",\"userId\":149,\"userName\":\"15102879065\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:27:22', 1269, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2823, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:27:07\",\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"嘟嘟1\",\"params\":{},\"phonenumber\":\"17780483325\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"userId\":150,\"userName\":\"17780483325\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:27:57', 114, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2824, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:29:37\",\"districtId\":13,\"endTime\":\"2024-01-15 20:30:03\",\"id\":57,\"inspectionCount\":2,\"inspectionName\":\"xunjian\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 15:30:00\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:30:27', 46, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2825, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.6', '内网IP', '{\"admin\":false,\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"嘟嘟111111\",\"params\":{},\"phonenumber\":\"17780483325\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"updateTime\":\"2024-01-15 15:30:05\",\"userId\":150,\"userName\":\"17780483325\"}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-15 15:30:55', 128, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2826, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"57\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:31:04', 39, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2827, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '17780483325', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"成都市\",\"checkType\":1,\"checks\":[{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":88,\"checkResult\":1,\"faultBack\":\"非黑即白回家看你\",\"lat\":\"30.585801595052082\",\"lon\":\"104.05584554036459\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_ac9a2432906aba6b90ee5dde6ef72df04cc77b610abc9e51.jpg\"},{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":89,\"checkResult\":0,\"faultBack\":\"吃鸡不能健健康康\",\"ifDanger\":1,\"lat\":\"30.585801595052082\",\"lon\":\"104.05584554036459\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_8c834fa6dff2022f56787b37d2a150a5206f73374b70f5c5.jpg\",\"solution\":\"该喝喝不仅仅北京交警吃鸡那就快快快\"},{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":90,\"checkResult\":1,\"faultBack\":\"吃半年\",\"lat\":\"30.585801595052082\",\"lon\":\"104.05584554036459\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_8c289c639698e3450cfd0efbf58f5f37f7edcfe5517f1229.jpg\"},{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":91,\"checkResult\":0,\"faultBack\":\"v叫你爸爸\",\"ifDanger\":0,\"lat\":\"30.585801595052082\",\"lon\":\"104.05584554036459\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_5e7a620f1c0878bb368d66cdc8a11b6c3313d1beeefe453f.jpg\",\"solution\":\"喜欢刚回家看见坎坎坷坷估计女女\"}],\"createBy\":\"17780483325\",\"createTime\":\"2024-01-15 15:37:26\",\"directTime\":\"2024-01-15 15:37:26.465\",\"districtId\":13,\"id\":110,\"site\":\"2\",\"state\":1,\"userId\":150}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:38:16', 68, NULL, '低级管理员', '17780483325', 150, '嘟嘟1');
INSERT INTO `sys_oper_log` VALUES (2828, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:38:45\",\"districtId\":13,\"endTime\":\"2024-01-15 21:39:20\",\"id\":58,\"inspectionCount\":2,\"inspectionName\":\"电线巡检2003\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 15:46:13\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:39:36', 69, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2829, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"58\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:39:41', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2830, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"成都市\",\"checkIds\":[88,89],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:40:41\",\"districtId\":13,\"id\":111,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:41:31', 40, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2831, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"111\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:41:37', 19, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2832, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"成都\",\"checkIds\":[88,89,90,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:44:11\",\"districtId\":8,\"id\":112,\"site\":\"广安市广安区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:45:02', 54, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2833, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"112\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:45:12', 30, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2834, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"传输承载\",\"checkType\":3,\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:44:52\",\"id\":93}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:45:42', 51, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2835, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"113\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:47:12', 38, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2836, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-15 15:47:07\",\"districtId\":13,\"endTime\":\"2024-01-15 17:47:33\",\"id\":59,\"inspectionCount\":2,\"inspectionName\":\"电线巡检2222\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-15 15:47:29\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:47:57', 49, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2837, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"59\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-15 15:48:05', 23, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2838, '用户信息-新增用户', 1, 'com.ruoyi.web.controller.system.SysUserController.add()', 'POST', 1, 'admin', NULL, '/system/user/add', '192.168.110.6', '内网IP', '{\"admin\":false,\"createBy\":\"admin\",\"createTime\":\"2024-01-16 15:28:00\",\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"林\",\"params\":{},\"phonenumber\":\"17780483321\",\"roleId\":1,\"sex\":\"1\",\"status\":\"0\",\"userId\":151,\"userName\":\"17780483321\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:28:52', 1907, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2839, '光缆巡检-新增', 1, 'com.ruoyi.web.controller.api.TOpticalInspectionController.add()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/add', '192.168.110.6', '内网IP', '{\"address\":\"四川省成都市青羊区人民南路一段86号\",\"createBy\":\"admin\",\"createTime\":\"2024-01-16 15:30:31\",\"districtId\":13,\"endTime\":\"2024-01-16 21:30:54\",\"id\":60,\"inspectionCount\":2,\"inspectionName\":\"巡检工单\",\"lat\":\"30.657372\",\"lon\":\"104.065901\",\"planCycle\":1,\"startTime\":\"2024-01-16 15:30:48\",\"state\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:31:23', 41, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2840, '光缆巡检-派单', 2, 'com.ruoyi.web.controller.api.TOpticalInspectionController.dispatch()', 'GET', 1, 'admin', NULL, '/tOpticalInspection/dispatch', '192.168.110.6', '内网IP', '{\"InspectionId\":\"60\",\"userId\":\"151\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:31:34', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2841, '机房工单-新增', 1, 'com.ruoyi.web.controller.manage.RoomController.add()', 'POST', 1, '17780483321', NULL, '/room/add', '192.168.110.8', '内网IP', '{\"area\":\"成都市\",\"checkType\":1,\"checks\":[{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":88,\"checkResult\":1,\"faultBack\":\"唱个歌吃汉堡\",\"lat\":\"30.585801595052082\",\"lon\":\"104.05584337022569\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_37893ce6fe91fcb137f60c5b2a8495aed3cd6c0732ee8e18.jpg\"},{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":89,\"checkResult\":0,\"faultBack\":\"发货不不不小跟班\",\"ifDanger\":1,\"lat\":\"30.585801595052082\",\"lon\":\"104.05584337022569\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_30044a3fbc8cbb3eada019bf62d8740aadf7bf9faaeb4fdc.jpg\",\"solution\":\"超级保镖一会干活京基百纳\"},{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":90,\"checkResult\":1,\"faultBack\":\"发挥好不好解决\",\"lat\":\"30.585801595052082\",\"lon\":\"104.05584337022569\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_5560c7949eafee2cd75490c599cb616eeaade027f56e2b6b.jpg\"},{\"address\":\"四川省成都市武侯区锦晖西二街126号\",\"checkId\":91,\"checkResult\":0,\"faultBack\":\"吃火锅哈哈v不就能\",\"ifDanger\":1,\"lat\":\"30.585801595052082\",\"lon\":\"104.05584337022569\",\"pictures\":\"https://inspectionbucket.oss-cn-chengdu.aliyuncs.com/tmp_d0a8dc4bd91cc74e1771e36c3346fcf9e1ae6e1e401ebab3.jpg\",\"solution\":\"唱歌好吧就看看吃鸡尽快吧v个合合分分的\"}],\"createBy\":\"17780483321\",\"createTime\":\"2024-01-16 15:48:59\",\"directTime\":\"2024-01-16 15:48:59.506\",\"districtId\":13,\"id\":114,\"site\":\"天府新谷\",\"state\":1,\"userId\":151}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:49:54', 5334, NULL, '超级管理员', '17780483321', 151, '林');
INSERT INTO `sys_oper_log` VALUES (2842, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"成都\",\"checkIds\":[88,89,90,91],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-01-16 15:49:58\",\"districtId\":13,\"id\":115,\"site\":\"成都市温江区\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:50:50', 35, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2843, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"115\",\"userId\":\"151\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:50:58', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2844, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"116\",\"userId\":\"151\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:54:38', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2845, '检查项-修改', 2, 'com.ruoyi.web.controller.api.TCheckController.update()', 'POST', 1, 'admin', NULL, '/tCheck/update', '192.168.110.6', '内网IP', '{\"TChecks\":[{\"checkContent\":\"检查电源\",\"checkType\":2,\"createBy\":\"admin\",\"createTime\":\"2024-01-16 15:54:17\",\"id\":94}]}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-01-16 15:55:09', 33, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2846, '用户信息-状态修改', 2, 'com.ruoyi.web.controller.system.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/system/user/changeStatus', '192.168.110.6', '内网IP', '{\"status\":1,\"userId\":151}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, NULL, '2024-01-29 17:54:44', 59, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2847, '现场作业-光缆巡检列表导出', 5, 'com.ruoyi.web.controller.api.TOpticalInspectionController.exportOpticalInspection()', 'POST', 1, 'admin', NULL, '/tOpticalInspection/exportOpticalInspection', '192.168.110.6', '内网IP', '{\"pageNum\":1,\"pageSize\":10}', NULL, 0, NULL, '2024-01-30 15:32:45', 576, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2848, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.6', '内网IP', '{\"area\":\"四川省/成都市/武侯区\",\"checkIds\":[88,89],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-03-04 09:34:38\",\"districtId\":1,\"id\":117,\"site\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:34:38', 63, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2849, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.6', '内网IP', '{\"workOrderId\":\"117\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:35:55', 34, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2850, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域1234567\",\"checkIds\":[88,89],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-03-04 09:46:08\",\"districtId\":1,\"id\":118,\"site\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:46:08', 29, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2851, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"118\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:46:19', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2852, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"118\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:48:22', 31, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2853, '用户信息-修改用户', 2, 'com.ruoyi.web.controller.system.SysUserController.edit()', 'POST', 1, 'admin', NULL, '/system/user/edit', '192.168.110.91', '内网IP', '{\"admin\":false,\"deptName\":\"测试部\",\"districtId\":13,\"nickName\":\"嘟嘟111111\",\"params\":{},\"phonenumber\":\"17780483325\",\"roleId\":109,\"sex\":\"1\",\"status\":\"0\",\"updateBy\":\"admin\",\"userId\":150,\"userName\":\"17780483325\"}', NULL, 1, '\r\n### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'150-109\' for key \'sys_user_role.PRIMARY\'\r\n### The error may exist in file [F:\\workSpace\\aBaMobile\\ruoyi-system\\target\\classes\\mapper\\system\\SysUserRoleMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: insert into sys_user_role(user_id, role_id) values (?,?)\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'150-109\' for key \'sys_user_role.PRIMARY\'\n; Duplicate entry \'150-109\' for key \'sys_user_role.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'150-109\' for key \'sys_user_role.PRIMARY\'', '2024-03-04 09:48:43', 121, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2854, '机房工单-删除', 3, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.delete()', 'DELETE', 1, 'admin', NULL, '/tRoomWorkOrder/delete', '192.168.110.91', '内网IP', '{\"tRoomWorkOrderId\":\"118\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:50:26', 17, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2855, '机房工单-新增', 1, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.add()', 'POST', 1, 'admin', NULL, '/tRoomWorkOrder/add', '192.168.110.91', '内网IP', '{\"area\":\"新建区域123456\",\"checkIds\":[88,89],\"checkType\":1,\"createBy\":\"admin\",\"createTime\":\"2024-03-04 09:50:41\",\"districtId\":13,\"id\":119,\"site\":\"2\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:50:41', 24, NULL, '超级管理员', '15888888888', 1, '若依');
INSERT INTO `sys_oper_log` VALUES (2856, '机房工单-派单', 2, 'com.ruoyi.web.controller.api.TRoomWorkOrderController.dispatch()', 'GET', 1, 'admin', NULL, '/tRoomWorkOrder/dispatch', '192.168.110.91', '内网IP', '{\"workOrderId\":\"119\",\"userId\":\"150\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2024-03-04 09:50:51', 35, NULL, '超级管理员', '15888888888', 1, '若依');
 
-- ----------------------------
-- Table structure for sys_post
-- ----------------------------
DROP TABLE IF EXISTS `sys_post`;
CREATE TABLE `sys_post`  (
  `post_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '岗位ID',
  `post_code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位编码',
  `post_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位名称',
  `post_sort` int(0) NOT NULL COMMENT '显示顺序',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '状态(0正常 1停用)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  PRIMARY KEY (`post_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '岗位信息表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_post
-- ----------------------------
INSERT INTO `sys_post` VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2023-10-02 14:09:09', '', NULL, '');
INSERT INTO `sys_post` VALUES (2, 'se', '项目经理', 2, '0', 'admin', '2023-10-02 14:09:09', '', NULL, '');
INSERT INTO `sys_post` VALUES (3, 'hr', '人力资源', 3, '0', 'admin', '2023-10-02 14:09:09', '', NULL, '');
INSERT INTO `sys_post` VALUES (4, 'user', '普通员工', 4, '0', 'admin', '2023-10-02 14:09:09', '', NULL, '');
 
-- ----------------------------
-- Table structure for sys_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_role`;
CREATE TABLE `sys_role`  (
  `role_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '角色ID',
  `role_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称',
  `role_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '角色权限字符串',
  `role_sort` int(0) NULL DEFAULT NULL COMMENT '显示顺序',
  `data_scope` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
  `menu_check_strictly` tinyint(1) NULL DEFAULT 1 COMMENT '菜单树选择项是否关联显示',
  `dept_check_strictly` tinyint(1) NULL DEFAULT 1 COMMENT '部门树选择项是否关联显示',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '角色状态(0正常 1停用)',
  `del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  `disabled` tinyint(1) NULL DEFAULT NULL,
  `removeDays` int(0) NULL DEFAULT NULL COMMENT '删除天数',
  `postType` int(0) NULL DEFAULT NULL COMMENT '岗位类型 1=经理 2=负责人 3=专员',
  PRIMARY KEY (`role_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 123 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色信息表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_role
-- ----------------------------
INSERT INTO `sys_role` VALUES (1, '超级管理员', 'admin', 1, '1', 0, 0, '0', '0', 'admin', '2023-10-02 14:09:10', 'admin', '2024-01-12 17:44:14', '超级管理员', NULL, 90, 1);
INSERT INTO `sys_role` VALUES (2, '普通角色1', 'common', 2, '2', 0, 0, '0', '0', 'admin', '2023-10-02 14:09:10', '18782688863', '2024-01-12 18:20:07', '普通角色', NULL, 90, 2);
INSERT INTO `sys_role` VALUES (100, '魔法师', NULL, NULL, '1', 0, 0, '1', '2', '若依', '2023-10-13 16:42:09', '若依', '2023-10-13 17:22:24', NULL, NULL, 90, 3);
INSERT INTO `sys_role` VALUES (101, '剑士', NULL, NULL, '1', 0, 0, '1', '2', '若依', '2023-10-13 16:43:39', '若依', '2023-10-13 17:37:37', NULL, NULL, 90, 3);
INSERT INTO `sys_role` VALUES (102, '低级管理员', NULL, NULL, '1', 0, 0, '1', '2', '若依', '2023-10-13 16:43:57', '若依', '2023-10-13 17:37:35', NULL, NULL, 90, 3);
INSERT INTO `sys_role` VALUES (103, '斗士', NULL, NULL, '1', 0, 0, '1', '2', '若依', '2023-10-13 16:55:22', '若依', '2023-10-13 17:37:34', NULL, NULL, 90, 3);
INSERT INTO `sys_role` VALUES (104, '斗士1', NULL, NULL, '1', 0, 0, '1', '2', '若依', '2023-10-13 16:56:46', '若依', '2023-10-13 17:37:21', NULL, NULL, 90, 3);
INSERT INTO `sys_role` VALUES (105, '低级管理员', NULL, NULL, '1', 0, 0, '1', '2', 'admin', '2023-10-25 15:07:52', 'admin', '2023-10-25 15:09:38', NULL, NULL, NULL, 3);
INSERT INTO `sys_role` VALUES (106, '低级管理员', NULL, NULL, '1', 0, 0, '1', '2', 'admin', '2023-10-25 15:09:45', 'admin', '2023-10-25 15:14:01', NULL, NULL, NULL, 3);
INSERT INTO `sys_role` VALUES (107, '低级管理员', NULL, NULL, '1', 0, 0, '1', '2', 'admin', '2023-10-25 15:14:10', 'admin', '2023-10-25 15:14:36', NULL, NULL, NULL, 3);
INSERT INTO `sys_role` VALUES (108, '低级管理员', NULL, NULL, '1', 0, 0, '1', '2', 'admin', '2023-10-25 15:14:45', 'admin', '2023-10-25 15:15:11', NULL, NULL, NULL, 3);
INSERT INTO `sys_role` VALUES (109, '低级管理员', NULL, NULL, '1', 0, 0, '0', '0', 'admin', '2023-10-25 15:16:16', 'admin', '2024-01-12 17:44:23', NULL, NULL, NULL, 3);
INSERT INTO `sys_role` VALUES (110, '维修组111', NULL, NULL, '1', 0, 0, '0', '0', 'admin', '2023-10-25 20:32:22', 'admin', '2024-01-12 17:44:27', NULL, NULL, NULL, 1);
INSERT INTO `sys_role` VALUES (111, '魔法师', NULL, NULL, '1', 0, 0, '0', '2', '18008172471', '2023-10-27 15:47:21', '', NULL, NULL, NULL, NULL, 1);
INSERT INTO `sys_role` VALUES (112, '低级管理员1', NULL, NULL, '1', 0, 0, '0', '0', '18008172471', '2023-10-27 15:49:12', 'admin', '2024-01-12 17:44:31', NULL, NULL, NULL, 2);
INSERT INTO `sys_role` VALUES (113, '魔法师1', NULL, NULL, '1', 0, 0, '0', '2', '18008172471', '2023-10-27 15:51:05', '', NULL, NULL, NULL, NULL, 1);
INSERT INTO `sys_role` VALUES (114, '剑士11', NULL, NULL, '1', 0, 0, '1', '0', '18008172471', '2023-10-27 15:53:51', 'admin', '2024-01-12 17:44:36', NULL, NULL, NULL, 1);
INSERT INTO `sys_role` VALUES (115, '斗士1', NULL, NULL, '1', 0, 0, '0', '0', '18008172471', '2023-10-27 15:56:19', 'admin', '2024-01-12 18:24:08', NULL, NULL, NULL, 1);
INSERT INTO `sys_role` VALUES (116, '新建角色管理员', NULL, NULL, '1', 0, 0, '0', '2', 'admin', '2023-11-25 16:22:36', 'admin', '2023-11-25 16:23:10', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role` VALUES (117, '移动最高权限', NULL, NULL, '1', 0, 0, '0', '2', 'admin', '2023-11-28 11:30:37', '', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sys_role` VALUES (118, '产品顾', NULL, NULL, '1', 0, 0, '1', '0', 'admin', '2023-12-20 15:43:23', 'admin', '2024-01-12 17:44:45', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role` VALUES (119, '管理员', NULL, NULL, '1', 0, 0, '0', '2', 'admin', '2024-01-05 11:30:13', 'admin', '2024-01-05 11:30:22', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role` VALUES (120, '角色', NULL, NULL, '1', 0, 0, '0', '0', 'admin', '2024-01-05 11:40:55', 'admin', '2024-01-12 17:44:49', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role` VALUES (121, '新建', NULL, NULL, '1', 0, 0, '0', '0', 'admin', '2024-01-05 18:10:21', 'admin', '2024-01-12 17:44:54', NULL, NULL, NULL, NULL);
INSERT INTO `sys_role` VALUES (122, '111', NULL, NULL, '1', 0, 0, '0', '0', 'admin', '2024-01-12 10:08:47', 'admin', '2024-01-12 17:45:01', NULL, NULL, NULL, NULL);
 
-- ----------------------------
-- Table structure for sys_role_dept
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_dept`;
CREATE TABLE `sys_role_dept`  (
  `role_id` bigint(0) NOT NULL COMMENT '角色ID',
  `dept_id` bigint(0) NOT NULL COMMENT '部门ID',
  PRIMARY KEY (`role_id`, `dept_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色和部门关联表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_role_dept
-- ----------------------------
INSERT INTO `sys_role_dept` VALUES (2, 100);
INSERT INTO `sys_role_dept` VALUES (2, 101);
INSERT INTO `sys_role_dept` VALUES (2, 105);
 
-- ----------------------------
-- Table structure for sys_role_menu
-- ----------------------------
DROP TABLE IF EXISTS `sys_role_menu`;
CREATE TABLE `sys_role_menu`  (
  `role_id` bigint(0) NOT NULL COMMENT '角色ID',
  `menu_id` bigint(0) NOT NULL COMMENT '菜单ID',
  PRIMARY KEY (`role_id`, `menu_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色和菜单关联表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_role_menu
-- ----------------------------
INSERT INTO `sys_role_menu` VALUES (1, 1);
INSERT INTO `sys_role_menu` VALUES (1, 2);
INSERT INTO `sys_role_menu` VALUES (1, 3);
INSERT INTO `sys_role_menu` VALUES (1, 4);
INSERT INTO `sys_role_menu` VALUES (1, 5);
INSERT INTO `sys_role_menu` VALUES (1, 6);
INSERT INTO `sys_role_menu` VALUES (1, 7);
INSERT INTO `sys_role_menu` VALUES (1, 8);
INSERT INTO `sys_role_menu` VALUES (1, 9);
INSERT INTO `sys_role_menu` VALUES (1, 11);
INSERT INTO `sys_role_menu` VALUES (1, 12);
INSERT INTO `sys_role_menu` VALUES (1, 13);
INSERT INTO `sys_role_menu` VALUES (1, 14);
INSERT INTO `sys_role_menu` VALUES (1, 15);
INSERT INTO `sys_role_menu` VALUES (1, 16);
INSERT INTO `sys_role_menu` VALUES (1, 17);
INSERT INTO `sys_role_menu` VALUES (1, 18);
INSERT INTO `sys_role_menu` VALUES (1, 19);
INSERT INTO `sys_role_menu` VALUES (1, 20);
INSERT INTO `sys_role_menu` VALUES (1, 23);
INSERT INTO `sys_role_menu` VALUES (1, 24);
INSERT INTO `sys_role_menu` VALUES (1, 25);
INSERT INTO `sys_role_menu` VALUES (1, 26);
INSERT INTO `sys_role_menu` VALUES (1, 27);
INSERT INTO `sys_role_menu` VALUES (1, 28);
INSERT INTO `sys_role_menu` VALUES (1, 29);
INSERT INTO `sys_role_menu` VALUES (1, 30);
INSERT INTO `sys_role_menu` VALUES (1, 31);
INSERT INTO `sys_role_menu` VALUES (1, 32);
INSERT INTO `sys_role_menu` VALUES (1, 33);
INSERT INTO `sys_role_menu` VALUES (1, 34);
INSERT INTO `sys_role_menu` VALUES (1, 35);
INSERT INTO `sys_role_menu` VALUES (1, 40);
INSERT INTO `sys_role_menu` VALUES (1, 41);
INSERT INTO `sys_role_menu` VALUES (1, 42);
INSERT INTO `sys_role_menu` VALUES (1, 43);
INSERT INTO `sys_role_menu` VALUES (1, 44);
INSERT INTO `sys_role_menu` VALUES (1, 45);
INSERT INTO `sys_role_menu` VALUES (1, 46);
INSERT INTO `sys_role_menu` VALUES (1, 47);
INSERT INTO `sys_role_menu` VALUES (1, 48);
INSERT INTO `sys_role_menu` VALUES (1, 49);
INSERT INTO `sys_role_menu` VALUES (1, 50);
INSERT INTO `sys_role_menu` VALUES (1, 51);
INSERT INTO `sys_role_menu` VALUES (1, 52);
INSERT INTO `sys_role_menu` VALUES (1, 53);
INSERT INTO `sys_role_menu` VALUES (1, 54);
INSERT INTO `sys_role_menu` VALUES (2, 1);
INSERT INTO `sys_role_menu` VALUES (2, 3);
INSERT INTO `sys_role_menu` VALUES (2, 4);
INSERT INTO `sys_role_menu` VALUES (2, 5);
INSERT INTO `sys_role_menu` VALUES (2, 6);
INSERT INTO `sys_role_menu` VALUES (2, 7);
INSERT INTO `sys_role_menu` VALUES (2, 8);
INSERT INTO `sys_role_menu` VALUES (2, 9);
INSERT INTO `sys_role_menu` VALUES (2, 11);
INSERT INTO `sys_role_menu` VALUES (2, 12);
INSERT INTO `sys_role_menu` VALUES (2, 15);
INSERT INTO `sys_role_menu` VALUES (2, 16);
INSERT INTO `sys_role_menu` VALUES (2, 17);
INSERT INTO `sys_role_menu` VALUES (2, 18);
INSERT INTO `sys_role_menu` VALUES (2, 19);
INSERT INTO `sys_role_menu` VALUES (2, 20);
INSERT INTO `sys_role_menu` VALUES (2, 23);
INSERT INTO `sys_role_menu` VALUES (2, 24);
INSERT INTO `sys_role_menu` VALUES (2, 25);
INSERT INTO `sys_role_menu` VALUES (2, 26);
INSERT INTO `sys_role_menu` VALUES (2, 27);
INSERT INTO `sys_role_menu` VALUES (2, 28);
INSERT INTO `sys_role_menu` VALUES (2, 29);
INSERT INTO `sys_role_menu` VALUES (2, 30);
INSERT INTO `sys_role_menu` VALUES (2, 31);
INSERT INTO `sys_role_menu` VALUES (2, 32);
INSERT INTO `sys_role_menu` VALUES (2, 33);
INSERT INTO `sys_role_menu` VALUES (2, 34);
INSERT INTO `sys_role_menu` VALUES (2, 35);
INSERT INTO `sys_role_menu` VALUES (2, 40);
INSERT INTO `sys_role_menu` VALUES (2, 41);
INSERT INTO `sys_role_menu` VALUES (2, 42);
INSERT INTO `sys_role_menu` VALUES (2, 43);
INSERT INTO `sys_role_menu` VALUES (2, 47);
INSERT INTO `sys_role_menu` VALUES (2, 48);
INSERT INTO `sys_role_menu` VALUES (2, 49);
INSERT INTO `sys_role_menu` VALUES (2, 50);
INSERT INTO `sys_role_menu` VALUES (2, 51);
INSERT INTO `sys_role_menu` VALUES (2, 52);
INSERT INTO `sys_role_menu` VALUES (2, 53);
INSERT INTO `sys_role_menu` VALUES (2, 54);
INSERT INTO `sys_role_menu` VALUES (109, 1);
INSERT INTO `sys_role_menu` VALUES (109, 2);
INSERT INTO `sys_role_menu` VALUES (109, 3);
INSERT INTO `sys_role_menu` VALUES (109, 4);
INSERT INTO `sys_role_menu` VALUES (109, 5);
INSERT INTO `sys_role_menu` VALUES (109, 6);
INSERT INTO `sys_role_menu` VALUES (109, 7);
INSERT INTO `sys_role_menu` VALUES (109, 8);
INSERT INTO `sys_role_menu` VALUES (109, 9);
INSERT INTO `sys_role_menu` VALUES (109, 11);
INSERT INTO `sys_role_menu` VALUES (109, 12);
INSERT INTO `sys_role_menu` VALUES (109, 13);
INSERT INTO `sys_role_menu` VALUES (109, 14);
INSERT INTO `sys_role_menu` VALUES (109, 15);
INSERT INTO `sys_role_menu` VALUES (109, 16);
INSERT INTO `sys_role_menu` VALUES (109, 17);
INSERT INTO `sys_role_menu` VALUES (109, 18);
INSERT INTO `sys_role_menu` VALUES (109, 19);
INSERT INTO `sys_role_menu` VALUES (109, 20);
INSERT INTO `sys_role_menu` VALUES (109, 23);
INSERT INTO `sys_role_menu` VALUES (109, 24);
INSERT INTO `sys_role_menu` VALUES (109, 25);
INSERT INTO `sys_role_menu` VALUES (109, 26);
INSERT INTO `sys_role_menu` VALUES (109, 27);
INSERT INTO `sys_role_menu` VALUES (109, 28);
INSERT INTO `sys_role_menu` VALUES (109, 29);
INSERT INTO `sys_role_menu` VALUES (109, 30);
INSERT INTO `sys_role_menu` VALUES (109, 31);
INSERT INTO `sys_role_menu` VALUES (109, 32);
INSERT INTO `sys_role_menu` VALUES (109, 33);
INSERT INTO `sys_role_menu` VALUES (109, 34);
INSERT INTO `sys_role_menu` VALUES (109, 35);
INSERT INTO `sys_role_menu` VALUES (109, 40);
INSERT INTO `sys_role_menu` VALUES (109, 41);
INSERT INTO `sys_role_menu` VALUES (109, 42);
INSERT INTO `sys_role_menu` VALUES (109, 43);
INSERT INTO `sys_role_menu` VALUES (109, 44);
INSERT INTO `sys_role_menu` VALUES (109, 45);
INSERT INTO `sys_role_menu` VALUES (109, 46);
INSERT INTO `sys_role_menu` VALUES (109, 47);
INSERT INTO `sys_role_menu` VALUES (109, 48);
INSERT INTO `sys_role_menu` VALUES (109, 49);
INSERT INTO `sys_role_menu` VALUES (109, 50);
INSERT INTO `sys_role_menu` VALUES (109, 51);
INSERT INTO `sys_role_menu` VALUES (109, 52);
INSERT INTO `sys_role_menu` VALUES (109, 53);
INSERT INTO `sys_role_menu` VALUES (109, 54);
INSERT INTO `sys_role_menu` VALUES (110, 1);
INSERT INTO `sys_role_menu` VALUES (110, 2);
INSERT INTO `sys_role_menu` VALUES (110, 3);
INSERT INTO `sys_role_menu` VALUES (110, 4);
INSERT INTO `sys_role_menu` VALUES (110, 5);
INSERT INTO `sys_role_menu` VALUES (110, 6);
INSERT INTO `sys_role_menu` VALUES (110, 7);
INSERT INTO `sys_role_menu` VALUES (110, 8);
INSERT INTO `sys_role_menu` VALUES (110, 9);
INSERT INTO `sys_role_menu` VALUES (110, 11);
INSERT INTO `sys_role_menu` VALUES (110, 12);
INSERT INTO `sys_role_menu` VALUES (110, 13);
INSERT INTO `sys_role_menu` VALUES (110, 14);
INSERT INTO `sys_role_menu` VALUES (110, 15);
INSERT INTO `sys_role_menu` VALUES (110, 16);
INSERT INTO `sys_role_menu` VALUES (110, 17);
INSERT INTO `sys_role_menu` VALUES (110, 18);
INSERT INTO `sys_role_menu` VALUES (110, 19);
INSERT INTO `sys_role_menu` VALUES (110, 20);
INSERT INTO `sys_role_menu` VALUES (110, 23);
INSERT INTO `sys_role_menu` VALUES (110, 24);
INSERT INTO `sys_role_menu` VALUES (110, 25);
INSERT INTO `sys_role_menu` VALUES (110, 26);
INSERT INTO `sys_role_menu` VALUES (110, 27);
INSERT INTO `sys_role_menu` VALUES (110, 28);
INSERT INTO `sys_role_menu` VALUES (110, 29);
INSERT INTO `sys_role_menu` VALUES (110, 30);
INSERT INTO `sys_role_menu` VALUES (110, 31);
INSERT INTO `sys_role_menu` VALUES (110, 32);
INSERT INTO `sys_role_menu` VALUES (110, 33);
INSERT INTO `sys_role_menu` VALUES (110, 34);
INSERT INTO `sys_role_menu` VALUES (110, 35);
INSERT INTO `sys_role_menu` VALUES (110, 40);
INSERT INTO `sys_role_menu` VALUES (110, 41);
INSERT INTO `sys_role_menu` VALUES (110, 42);
INSERT INTO `sys_role_menu` VALUES (110, 43);
INSERT INTO `sys_role_menu` VALUES (110, 44);
INSERT INTO `sys_role_menu` VALUES (110, 45);
INSERT INTO `sys_role_menu` VALUES (110, 46);
INSERT INTO `sys_role_menu` VALUES (110, 47);
INSERT INTO `sys_role_menu` VALUES (110, 48);
INSERT INTO `sys_role_menu` VALUES (110, 49);
INSERT INTO `sys_role_menu` VALUES (110, 50);
INSERT INTO `sys_role_menu` VALUES (110, 51);
INSERT INTO `sys_role_menu` VALUES (110, 52);
INSERT INTO `sys_role_menu` VALUES (110, 53);
INSERT INTO `sys_role_menu` VALUES (110, 54);
INSERT INTO `sys_role_menu` VALUES (112, 1);
INSERT INTO `sys_role_menu` VALUES (112, 2);
INSERT INTO `sys_role_menu` VALUES (112, 3);
INSERT INTO `sys_role_menu` VALUES (112, 4);
INSERT INTO `sys_role_menu` VALUES (112, 5);
INSERT INTO `sys_role_menu` VALUES (112, 6);
INSERT INTO `sys_role_menu` VALUES (112, 7);
INSERT INTO `sys_role_menu` VALUES (112, 8);
INSERT INTO `sys_role_menu` VALUES (112, 9);
INSERT INTO `sys_role_menu` VALUES (112, 11);
INSERT INTO `sys_role_menu` VALUES (112, 12);
INSERT INTO `sys_role_menu` VALUES (112, 13);
INSERT INTO `sys_role_menu` VALUES (112, 14);
INSERT INTO `sys_role_menu` VALUES (112, 15);
INSERT INTO `sys_role_menu` VALUES (112, 16);
INSERT INTO `sys_role_menu` VALUES (112, 17);
INSERT INTO `sys_role_menu` VALUES (112, 18);
INSERT INTO `sys_role_menu` VALUES (112, 19);
INSERT INTO `sys_role_menu` VALUES (112, 20);
INSERT INTO `sys_role_menu` VALUES (112, 23);
INSERT INTO `sys_role_menu` VALUES (112, 24);
INSERT INTO `sys_role_menu` VALUES (112, 25);
INSERT INTO `sys_role_menu` VALUES (112, 26);
INSERT INTO `sys_role_menu` VALUES (112, 27);
INSERT INTO `sys_role_menu` VALUES (112, 28);
INSERT INTO `sys_role_menu` VALUES (112, 29);
INSERT INTO `sys_role_menu` VALUES (112, 30);
INSERT INTO `sys_role_menu` VALUES (112, 31);
INSERT INTO `sys_role_menu` VALUES (112, 32);
INSERT INTO `sys_role_menu` VALUES (112, 33);
INSERT INTO `sys_role_menu` VALUES (112, 34);
INSERT INTO `sys_role_menu` VALUES (112, 35);
INSERT INTO `sys_role_menu` VALUES (112, 40);
INSERT INTO `sys_role_menu` VALUES (112, 41);
INSERT INTO `sys_role_menu` VALUES (112, 42);
INSERT INTO `sys_role_menu` VALUES (112, 43);
INSERT INTO `sys_role_menu` VALUES (112, 44);
INSERT INTO `sys_role_menu` VALUES (112, 45);
INSERT INTO `sys_role_menu` VALUES (112, 46);
INSERT INTO `sys_role_menu` VALUES (112, 47);
INSERT INTO `sys_role_menu` VALUES (112, 48);
INSERT INTO `sys_role_menu` VALUES (112, 49);
INSERT INTO `sys_role_menu` VALUES (112, 50);
INSERT INTO `sys_role_menu` VALUES (112, 51);
INSERT INTO `sys_role_menu` VALUES (112, 52);
INSERT INTO `sys_role_menu` VALUES (112, 53);
INSERT INTO `sys_role_menu` VALUES (112, 54);
INSERT INTO `sys_role_menu` VALUES (114, 1);
INSERT INTO `sys_role_menu` VALUES (114, 2);
INSERT INTO `sys_role_menu` VALUES (114, 3);
INSERT INTO `sys_role_menu` VALUES (114, 4);
INSERT INTO `sys_role_menu` VALUES (114, 5);
INSERT INTO `sys_role_menu` VALUES (114, 6);
INSERT INTO `sys_role_menu` VALUES (114, 7);
INSERT INTO `sys_role_menu` VALUES (114, 8);
INSERT INTO `sys_role_menu` VALUES (114, 9);
INSERT INTO `sys_role_menu` VALUES (114, 11);
INSERT INTO `sys_role_menu` VALUES (114, 12);
INSERT INTO `sys_role_menu` VALUES (114, 13);
INSERT INTO `sys_role_menu` VALUES (114, 14);
INSERT INTO `sys_role_menu` VALUES (114, 15);
INSERT INTO `sys_role_menu` VALUES (114, 16);
INSERT INTO `sys_role_menu` VALUES (114, 17);
INSERT INTO `sys_role_menu` VALUES (114, 18);
INSERT INTO `sys_role_menu` VALUES (114, 19);
INSERT INTO `sys_role_menu` VALUES (114, 20);
INSERT INTO `sys_role_menu` VALUES (114, 23);
INSERT INTO `sys_role_menu` VALUES (114, 24);
INSERT INTO `sys_role_menu` VALUES (114, 25);
INSERT INTO `sys_role_menu` VALUES (114, 26);
INSERT INTO `sys_role_menu` VALUES (114, 27);
INSERT INTO `sys_role_menu` VALUES (114, 28);
INSERT INTO `sys_role_menu` VALUES (114, 29);
INSERT INTO `sys_role_menu` VALUES (114, 30);
INSERT INTO `sys_role_menu` VALUES (114, 31);
INSERT INTO `sys_role_menu` VALUES (114, 32);
INSERT INTO `sys_role_menu` VALUES (114, 33);
INSERT INTO `sys_role_menu` VALUES (114, 34);
INSERT INTO `sys_role_menu` VALUES (114, 35);
INSERT INTO `sys_role_menu` VALUES (114, 40);
INSERT INTO `sys_role_menu` VALUES (114, 41);
INSERT INTO `sys_role_menu` VALUES (114, 42);
INSERT INTO `sys_role_menu` VALUES (114, 43);
INSERT INTO `sys_role_menu` VALUES (114, 44);
INSERT INTO `sys_role_menu` VALUES (114, 45);
INSERT INTO `sys_role_menu` VALUES (114, 46);
INSERT INTO `sys_role_menu` VALUES (114, 47);
INSERT INTO `sys_role_menu` VALUES (114, 48);
INSERT INTO `sys_role_menu` VALUES (114, 49);
INSERT INTO `sys_role_menu` VALUES (114, 50);
INSERT INTO `sys_role_menu` VALUES (114, 51);
INSERT INTO `sys_role_menu` VALUES (114, 52);
INSERT INTO `sys_role_menu` VALUES (114, 53);
INSERT INTO `sys_role_menu` VALUES (114, 54);
INSERT INTO `sys_role_menu` VALUES (115, 1);
INSERT INTO `sys_role_menu` VALUES (115, 2);
INSERT INTO `sys_role_menu` VALUES (115, 3);
INSERT INTO `sys_role_menu` VALUES (115, 4);
INSERT INTO `sys_role_menu` VALUES (115, 5);
INSERT INTO `sys_role_menu` VALUES (115, 6);
INSERT INTO `sys_role_menu` VALUES (115, 7);
INSERT INTO `sys_role_menu` VALUES (115, 8);
INSERT INTO `sys_role_menu` VALUES (115, 9);
INSERT INTO `sys_role_menu` VALUES (115, 11);
INSERT INTO `sys_role_menu` VALUES (115, 12);
INSERT INTO `sys_role_menu` VALUES (115, 13);
INSERT INTO `sys_role_menu` VALUES (115, 14);
INSERT INTO `sys_role_menu` VALUES (115, 15);
INSERT INTO `sys_role_menu` VALUES (115, 16);
INSERT INTO `sys_role_menu` VALUES (115, 18);
INSERT INTO `sys_role_menu` VALUES (115, 19);
INSERT INTO `sys_role_menu` VALUES (115, 20);
INSERT INTO `sys_role_menu` VALUES (115, 23);
INSERT INTO `sys_role_menu` VALUES (115, 24);
INSERT INTO `sys_role_menu` VALUES (115, 25);
INSERT INTO `sys_role_menu` VALUES (115, 26);
INSERT INTO `sys_role_menu` VALUES (115, 27);
INSERT INTO `sys_role_menu` VALUES (115, 28);
INSERT INTO `sys_role_menu` VALUES (115, 29);
INSERT INTO `sys_role_menu` VALUES (115, 30);
INSERT INTO `sys_role_menu` VALUES (115, 31);
INSERT INTO `sys_role_menu` VALUES (115, 32);
INSERT INTO `sys_role_menu` VALUES (115, 33);
INSERT INTO `sys_role_menu` VALUES (115, 34);
INSERT INTO `sys_role_menu` VALUES (115, 35);
INSERT INTO `sys_role_menu` VALUES (115, 40);
INSERT INTO `sys_role_menu` VALUES (115, 41);
INSERT INTO `sys_role_menu` VALUES (115, 42);
INSERT INTO `sys_role_menu` VALUES (115, 43);
INSERT INTO `sys_role_menu` VALUES (115, 44);
INSERT INTO `sys_role_menu` VALUES (115, 45);
INSERT INTO `sys_role_menu` VALUES (115, 46);
INSERT INTO `sys_role_menu` VALUES (115, 48);
INSERT INTO `sys_role_menu` VALUES (115, 49);
INSERT INTO `sys_role_menu` VALUES (115, 50);
INSERT INTO `sys_role_menu` VALUES (115, 51);
INSERT INTO `sys_role_menu` VALUES (115, 52);
INSERT INTO `sys_role_menu` VALUES (115, 53);
INSERT INTO `sys_role_menu` VALUES (115, 54);
INSERT INTO `sys_role_menu` VALUES (118, 1);
INSERT INTO `sys_role_menu` VALUES (118, 2);
INSERT INTO `sys_role_menu` VALUES (118, 3);
INSERT INTO `sys_role_menu` VALUES (118, 4);
INSERT INTO `sys_role_menu` VALUES (118, 5);
INSERT INTO `sys_role_menu` VALUES (118, 6);
INSERT INTO `sys_role_menu` VALUES (118, 7);
INSERT INTO `sys_role_menu` VALUES (118, 8);
INSERT INTO `sys_role_menu` VALUES (118, 9);
INSERT INTO `sys_role_menu` VALUES (118, 11);
INSERT INTO `sys_role_menu` VALUES (118, 12);
INSERT INTO `sys_role_menu` VALUES (118, 13);
INSERT INTO `sys_role_menu` VALUES (118, 14);
INSERT INTO `sys_role_menu` VALUES (118, 15);
INSERT INTO `sys_role_menu` VALUES (118, 16);
INSERT INTO `sys_role_menu` VALUES (118, 17);
INSERT INTO `sys_role_menu` VALUES (118, 18);
INSERT INTO `sys_role_menu` VALUES (118, 19);
INSERT INTO `sys_role_menu` VALUES (118, 20);
INSERT INTO `sys_role_menu` VALUES (118, 23);
INSERT INTO `sys_role_menu` VALUES (118, 24);
INSERT INTO `sys_role_menu` VALUES (118, 25);
INSERT INTO `sys_role_menu` VALUES (118, 26);
INSERT INTO `sys_role_menu` VALUES (118, 27);
INSERT INTO `sys_role_menu` VALUES (118, 28);
INSERT INTO `sys_role_menu` VALUES (118, 29);
INSERT INTO `sys_role_menu` VALUES (118, 30);
INSERT INTO `sys_role_menu` VALUES (118, 31);
INSERT INTO `sys_role_menu` VALUES (118, 32);
INSERT INTO `sys_role_menu` VALUES (118, 33);
INSERT INTO `sys_role_menu` VALUES (118, 34);
INSERT INTO `sys_role_menu` VALUES (118, 35);
INSERT INTO `sys_role_menu` VALUES (118, 40);
INSERT INTO `sys_role_menu` VALUES (118, 41);
INSERT INTO `sys_role_menu` VALUES (118, 42);
INSERT INTO `sys_role_menu` VALUES (118, 43);
INSERT INTO `sys_role_menu` VALUES (118, 44);
INSERT INTO `sys_role_menu` VALUES (118, 45);
INSERT INTO `sys_role_menu` VALUES (118, 46);
INSERT INTO `sys_role_menu` VALUES (118, 47);
INSERT INTO `sys_role_menu` VALUES (118, 48);
INSERT INTO `sys_role_menu` VALUES (118, 49);
INSERT INTO `sys_role_menu` VALUES (118, 50);
INSERT INTO `sys_role_menu` VALUES (118, 51);
INSERT INTO `sys_role_menu` VALUES (118, 52);
INSERT INTO `sys_role_menu` VALUES (118, 53);
INSERT INTO `sys_role_menu` VALUES (118, 54);
INSERT INTO `sys_role_menu` VALUES (120, 1);
INSERT INTO `sys_role_menu` VALUES (120, 2);
INSERT INTO `sys_role_menu` VALUES (120, 3);
INSERT INTO `sys_role_menu` VALUES (120, 4);
INSERT INTO `sys_role_menu` VALUES (120, 5);
INSERT INTO `sys_role_menu` VALUES (120, 6);
INSERT INTO `sys_role_menu` VALUES (120, 7);
INSERT INTO `sys_role_menu` VALUES (120, 8);
INSERT INTO `sys_role_menu` VALUES (120, 9);
INSERT INTO `sys_role_menu` VALUES (120, 11);
INSERT INTO `sys_role_menu` VALUES (120, 12);
INSERT INTO `sys_role_menu` VALUES (120, 13);
INSERT INTO `sys_role_menu` VALUES (120, 14);
INSERT INTO `sys_role_menu` VALUES (120, 15);
INSERT INTO `sys_role_menu` VALUES (120, 16);
INSERT INTO `sys_role_menu` VALUES (120, 17);
INSERT INTO `sys_role_menu` VALUES (120, 18);
INSERT INTO `sys_role_menu` VALUES (120, 19);
INSERT INTO `sys_role_menu` VALUES (120, 20);
INSERT INTO `sys_role_menu` VALUES (120, 23);
INSERT INTO `sys_role_menu` VALUES (120, 24);
INSERT INTO `sys_role_menu` VALUES (120, 25);
INSERT INTO `sys_role_menu` VALUES (120, 26);
INSERT INTO `sys_role_menu` VALUES (120, 27);
INSERT INTO `sys_role_menu` VALUES (120, 28);
INSERT INTO `sys_role_menu` VALUES (120, 29);
INSERT INTO `sys_role_menu` VALUES (120, 30);
INSERT INTO `sys_role_menu` VALUES (120, 31);
INSERT INTO `sys_role_menu` VALUES (120, 32);
INSERT INTO `sys_role_menu` VALUES (120, 33);
INSERT INTO `sys_role_menu` VALUES (120, 34);
INSERT INTO `sys_role_menu` VALUES (120, 35);
INSERT INTO `sys_role_menu` VALUES (120, 40);
INSERT INTO `sys_role_menu` VALUES (120, 41);
INSERT INTO `sys_role_menu` VALUES (120, 42);
INSERT INTO `sys_role_menu` VALUES (120, 43);
INSERT INTO `sys_role_menu` VALUES (120, 44);
INSERT INTO `sys_role_menu` VALUES (120, 45);
INSERT INTO `sys_role_menu` VALUES (120, 46);
INSERT INTO `sys_role_menu` VALUES (120, 47);
INSERT INTO `sys_role_menu` VALUES (120, 48);
INSERT INTO `sys_role_menu` VALUES (120, 49);
INSERT INTO `sys_role_menu` VALUES (120, 50);
INSERT INTO `sys_role_menu` VALUES (120, 51);
INSERT INTO `sys_role_menu` VALUES (120, 52);
INSERT INTO `sys_role_menu` VALUES (120, 53);
INSERT INTO `sys_role_menu` VALUES (120, 54);
INSERT INTO `sys_role_menu` VALUES (121, 1);
INSERT INTO `sys_role_menu` VALUES (121, 2);
INSERT INTO `sys_role_menu` VALUES (121, 3);
INSERT INTO `sys_role_menu` VALUES (121, 4);
INSERT INTO `sys_role_menu` VALUES (121, 5);
INSERT INTO `sys_role_menu` VALUES (121, 6);
INSERT INTO `sys_role_menu` VALUES (121, 7);
INSERT INTO `sys_role_menu` VALUES (121, 8);
INSERT INTO `sys_role_menu` VALUES (121, 9);
INSERT INTO `sys_role_menu` VALUES (121, 11);
INSERT INTO `sys_role_menu` VALUES (121, 12);
INSERT INTO `sys_role_menu` VALUES (121, 13);
INSERT INTO `sys_role_menu` VALUES (121, 14);
INSERT INTO `sys_role_menu` VALUES (121, 15);
INSERT INTO `sys_role_menu` VALUES (121, 16);
INSERT INTO `sys_role_menu` VALUES (121, 17);
INSERT INTO `sys_role_menu` VALUES (121, 18);
INSERT INTO `sys_role_menu` VALUES (121, 19);
INSERT INTO `sys_role_menu` VALUES (121, 20);
INSERT INTO `sys_role_menu` VALUES (121, 23);
INSERT INTO `sys_role_menu` VALUES (121, 24);
INSERT INTO `sys_role_menu` VALUES (121, 25);
INSERT INTO `sys_role_menu` VALUES (121, 26);
INSERT INTO `sys_role_menu` VALUES (121, 27);
INSERT INTO `sys_role_menu` VALUES (121, 28);
INSERT INTO `sys_role_menu` VALUES (121, 29);
INSERT INTO `sys_role_menu` VALUES (121, 30);
INSERT INTO `sys_role_menu` VALUES (121, 31);
INSERT INTO `sys_role_menu` VALUES (121, 32);
INSERT INTO `sys_role_menu` VALUES (121, 33);
INSERT INTO `sys_role_menu` VALUES (121, 34);
INSERT INTO `sys_role_menu` VALUES (121, 35);
INSERT INTO `sys_role_menu` VALUES (121, 40);
INSERT INTO `sys_role_menu` VALUES (121, 41);
INSERT INTO `sys_role_menu` VALUES (121, 42);
INSERT INTO `sys_role_menu` VALUES (121, 43);
INSERT INTO `sys_role_menu` VALUES (121, 44);
INSERT INTO `sys_role_menu` VALUES (121, 45);
INSERT INTO `sys_role_menu` VALUES (121, 46);
INSERT INTO `sys_role_menu` VALUES (121, 47);
INSERT INTO `sys_role_menu` VALUES (121, 48);
INSERT INTO `sys_role_menu` VALUES (121, 49);
INSERT INTO `sys_role_menu` VALUES (121, 50);
INSERT INTO `sys_role_menu` VALUES (121, 51);
INSERT INTO `sys_role_menu` VALUES (121, 52);
INSERT INTO `sys_role_menu` VALUES (121, 53);
INSERT INTO `sys_role_menu` VALUES (121, 54);
INSERT INTO `sys_role_menu` VALUES (122, 1);
INSERT INTO `sys_role_menu` VALUES (122, 2);
INSERT INTO `sys_role_menu` VALUES (122, 3);
INSERT INTO `sys_role_menu` VALUES (122, 4);
INSERT INTO `sys_role_menu` VALUES (122, 5);
INSERT INTO `sys_role_menu` VALUES (122, 6);
INSERT INTO `sys_role_menu` VALUES (122, 7);
INSERT INTO `sys_role_menu` VALUES (122, 8);
INSERT INTO `sys_role_menu` VALUES (122, 9);
INSERT INTO `sys_role_menu` VALUES (122, 11);
INSERT INTO `sys_role_menu` VALUES (122, 12);
INSERT INTO `sys_role_menu` VALUES (122, 13);
INSERT INTO `sys_role_menu` VALUES (122, 14);
INSERT INTO `sys_role_menu` VALUES (122, 15);
INSERT INTO `sys_role_menu` VALUES (122, 16);
INSERT INTO `sys_role_menu` VALUES (122, 17);
INSERT INTO `sys_role_menu` VALUES (122, 18);
INSERT INTO `sys_role_menu` VALUES (122, 19);
INSERT INTO `sys_role_menu` VALUES (122, 20);
INSERT INTO `sys_role_menu` VALUES (122, 23);
INSERT INTO `sys_role_menu` VALUES (122, 24);
INSERT INTO `sys_role_menu` VALUES (122, 25);
INSERT INTO `sys_role_menu` VALUES (122, 26);
INSERT INTO `sys_role_menu` VALUES (122, 27);
INSERT INTO `sys_role_menu` VALUES (122, 28);
INSERT INTO `sys_role_menu` VALUES (122, 29);
INSERT INTO `sys_role_menu` VALUES (122, 30);
INSERT INTO `sys_role_menu` VALUES (122, 31);
INSERT INTO `sys_role_menu` VALUES (122, 32);
INSERT INTO `sys_role_menu` VALUES (122, 33);
INSERT INTO `sys_role_menu` VALUES (122, 34);
INSERT INTO `sys_role_menu` VALUES (122, 35);
INSERT INTO `sys_role_menu` VALUES (122, 40);
INSERT INTO `sys_role_menu` VALUES (122, 41);
INSERT INTO `sys_role_menu` VALUES (122, 42);
INSERT INTO `sys_role_menu` VALUES (122, 43);
INSERT INTO `sys_role_menu` VALUES (122, 44);
INSERT INTO `sys_role_menu` VALUES (122, 45);
INSERT INTO `sys_role_menu` VALUES (122, 46);
INSERT INTO `sys_role_menu` VALUES (122, 47);
INSERT INTO `sys_role_menu` VALUES (122, 48);
INSERT INTO `sys_role_menu` VALUES (122, 49);
INSERT INTO `sys_role_menu` VALUES (122, 50);
INSERT INTO `sys_role_menu` VALUES (122, 51);
INSERT INTO `sys_role_menu` VALUES (122, 52);
INSERT INTO `sys_role_menu` VALUES (122, 53);
INSERT INTO `sys_role_menu` VALUES (122, 54);
 
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user`  (
  `user_id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '用户ID',
  `dept_id` bigint(0) NULL DEFAULT NULL COMMENT '部门ID',
  `user_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户账号',
  `nick_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户昵称',
  `user_type` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '00' COMMENT '用户类型(00系统用户)',
  `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '用户邮箱',
  `phonenumber` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '手机号码',
  `sex` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
  `avatar` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '头像地址',
  `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '密码',
  `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
  `del_flag` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
  `login_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '最后登录IP',
  `login_date` datetime(0) NULL DEFAULT NULL COMMENT '最后登录时间',
  `create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '创建者',
  `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  `update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '更新者',
  `update_time` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注',
  `ifBlack` int(0) NULL DEFAULT 0 COMMENT '是否为黑名单 1是 0否',
  `districtId` int(0) NULL DEFAULT NULL COMMENT '区县id',
  `deptName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '部门名称',
  PRIMARY KEY (`user_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 152 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户信息表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_user
-- ----------------------------
INSERT INTO `sys_user` VALUES (1, 100, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', 'https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '192.168.110.103', '2025-01-21 15:39:35', 'admin', '2023-10-02 14:09:09', 'admin', '2025-01-21 15:39:35', '管理员', 0, 4, '测试部门');
INSERT INTO `sys_user` VALUES (100, 3, '18008172471', '蒲悦添', '00', '', '18008172471', '0', 'https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg', '$2a$10$gL9RGP3b2d9YnmLxWm8GSu8XnvHDdJemGLgrslbe.hJPRKQ6Yk5jK', '0', '2', '', NULL, '若依', '2023-10-20 18:25:45', '若依', '2023-10-21 09:33:02', NULL, 0, 2, '测试部门');
INSERT INTO `sys_user` VALUES (101, 3, '18008172470', '蒲悦添', '00', '', '18008172470', '0', 'https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg', '$2a$10$PapRFYddk9FIcsKPJLFby.JKnRt2C1dngbr2EUiDgCNca8fxEfafi', '0', '2', '', NULL, '若依', '2023-10-20 18:27:54', '若依', '2023-10-21 09:33:00', 'string', 0, 2, '测试部门');
INSERT INTO `sys_user` VALUES (102, 3, '18008172471', '蒲悦添', '00', '', '18008172471', '0', 'https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg', '$2a$10$C6fSf7r6uZhWD8kc1nYoAO2oUlp3cFc.Q92Qqa8xQhueD74Ram/pG', '0', '2', '127.0.0.1', '2023-10-23 17:31:08', '若依', '2023-10-21 10:11:08', '蒲悦添', '2023-10-23 17:31:07', NULL, 0, 2, '测试部门');
INSERT INTO `sys_user` VALUES (103, 4, '15983795014', '龚金宝', '00', '', '15983795014', '0', 'https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg', '$2a$10$tYZP3bZiW25sqIDoxfvTueky.s.qKWKGSf16aDzVC8uNtN54d5LpW', '0', '2', '', NULL, '若依', '2023-10-21 11:14:40', '18008172471', '2023-10-27 17:33:25', NULL, 0, 3, '测试部门');
INSERT INTO `sys_user` VALUES (104, 7, '18008172471', '蒲悦添', '00', '', '18008172471', '0', 'C:/Users/Admin/Desktop/qrcode/2023-10-26/1@2x(1).png', '$2a$10$u8zIHBYJ6CePsHMRa2WnW.f/t2m0bU219pzHkA5cXvSBZO3rwTFaq', '0', '0', '127.0.0.1', '2023-11-01 17:52:33', 'admin', '2023-10-26 11:45:09', 'admin', '2023-11-01 18:31:17', NULL, 0, 5, '测试部门');
INSERT INTO `sys_user` VALUES (105, 7, '15983795014', '龚金宝', '00', '', '15983795014', '0', 'C:/Users/Admin/Desktop/qrcode/2023-10-28/1@2x(1).png', '$2a$10$8NYj7NbP1ZA.YcPFVcbEJuPvW1CCCpRFWqhb6kUSyc1X6KYBj6sJG', '0', '0', '192.168.110.13', '2023-10-30 14:36:36', '18008172471', '2023-10-28 09:44:22', 'admin', '2023-11-01 18:31:42', NULL, 0, 5, '测试部门');
INSERT INTO `sys_user` VALUES (106, 7, '13404089107', '蒲卫', '00', '', '13404089107', '0', 'C:/Users/Admin/Desktop/qrcode/2023-10-28/1.jpeg', '$2a$10$e3LCoCMcSbsVRPUnco/Cf.rv8MQQD2PfEvUeBFmgUPaWCof.8vNpe', '0', '0', '127.0.0.1', '2023-11-02 14:07:25', 'admin', '2023-10-28 10:01:58', 'admin', '2023-11-02 14:07:25', NULL, 0, 5, '测试部门');
INSERT INTO `sys_user` VALUES (107, 7, '13198619869', '陈昆', '00', '', '13198619869', '0', 'C:/Users/Admin/Desktop/qrcode/2023-11-01/1.jpeg', '$2a$10$zexbRQ5tt/oMH19RrTkIQ.l1CU0937tWejyigjYeIGEQDg8bhCbly', '0', '0', '192.168.110.103', '2023-11-01 10:38:37', 'admin', '2023-11-01 09:42:44', 'admin', '2023-11-01 18:31:33', NULL, 0, 5, '测试部门');
INSERT INTO `sys_user` VALUES (108, 7, '18384278701', '顾萍丹', '00', '', '18384278701', '1', '2023-11-01/1.jpeg', '$2a$10$YKOBG2yidO8c9seiLNVY8OdczDFDTE3IfBZGJHsmxzi7XgqG6GiAC', '0', '0', '127.0.0.1', '2023-11-02 11:33:26', 'admin', '2023-11-01 17:50:45', 'admin', '2023-11-02 11:33:26', NULL, 0, 5, '测试部门');
INSERT INTO `sys_user` VALUES (109, NULL, '18224358736', '带过去', '00', '', '18224358736', '0', '', '$2a$10$uzvB8W47VSk7Bql.UZcVk.hR5rlTLUMWHnLbIxA.DiLpAt1w07ORq', '0', '2', '', NULL, 'admin', '2023-11-24 17:28:09', '', NULL, '新建账户', 0, 6, '测试部门');
INSERT INTO `sys_user` VALUES (110, 100, '18224358736', 'dgq', '00', '', '18224358736', '0', '', '$2a$10$d06caaGMeEp64CHTuga3uuXeTZgLqYqjyRQLPCfjDNWPEsTLSEDtC', '0', '0', '192.168.110.91', '2024-01-16 14:41:14', 'admin', '2023-11-24 18:05:52', '18224358736', '2024-01-16 14:42:05', '是的发送到发送到', 0, 6, '测试部门');
INSERT INTO `sys_user` VALUES (112, 3, '18224358737', '新建九寨沟', '00', '', '18224358737', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '2', '', NULL, 'admin', '2023-11-25 09:39:21', 'admin', '2023-11-25 09:51:04', NULL, 0, 6, '测试部门');
INSERT INTO `sys_user` VALUES (113, NULL, '18782688863', 'cxl', '00', '', '18782688863', '1', '', '$2a$10$DaIDkaotpQ8uCcYnh38kSOmI0CQDRAUh4x.GVzvmi.RgVKQXurMNC', '0', '0', '192.168.110.29', '2024-01-15 08:41:19', 'admin', '2023-11-28 11:19:08', 'admin', '2024-01-15 08:42:09', '理县', 0, 3, '测试部门');
INSERT INTO `sys_user` VALUES (114, NULL, '18384278702', '顾萍丹', '00', '', '18384278702', '1', '', '$2a$10$uPaiEDDIV7urdQu9Jof4hO1HtKWQj8uQq0KdWfwuMSkUy03UgCF8.', '0', '0', '', NULL, 'admin', '2023-12-20 15:44:10', 'admin', '2024-01-05 10:26:14', NULL, 0, 2, '测试部门');
INSERT INTO `sys_user` VALUES (120, 3, '15666666666', '若依1', '00', 'ry@qq.com', '15666666666', '1', 'https://we-park-life.oss-cn-beijing.aliyuncs.com/img/ebcc2c95e1504371a8b3f3b1167a03a0.jpg', '$2a$10$47oNgNdkEjUdUmMLs7PFz.ggVgUu7/W6Op6XNX79riaeR35tBOH0W', '0', '0', '192.168.10.1', '2023-12-26 10:38:34', 'admin', '2023-10-02 14:09:09', 'admin', '2024-01-10 15:12:34', '测试员', 0, 2, '测试部门');
INSERT INTO `sys_user` VALUES (128, NULL, '18224358737', '罗', '00', '', '18224358737', '0', '', '$2a$10$0xCD32jtU0dOwWnuihe26OR/cqLyIy4SXwv1992YamQN6Ene2HGHe', '1', '0', '', NULL, 'admin', '2024-01-05 09:50:27', 'admin', '2024-01-05 09:51:42', '去玩儿群', 0, 4, '测试部门');
INSERT INTO `sys_user` VALUES (130, NULL, '13222222222', '风', '00', '', '13222222222', '1', '', '$2a$10$wVLYyWAq4cijXdVcxODUyeoj8xQ2UV../Fky3LHIQQp.XRnzvrDbW', '0', '0', '', NULL, 'admin', '2024-01-05 10:41:25', 'admin', '2024-01-05 11:06:37', NULL, 0, 7, '测试部门');
INSERT INTO `sys_user` VALUES (131, NULL, '13288888888', '李', '00', '', '13288888888', '0', '', '$2a$10$4v6iVvNLnrQzRKjESVLLEePXFGMzfjZKm/XwF.4KW47D.JzJuOE62', '0', '0', '192.168.110.22', '2024-01-05 11:40:20', 'admin', '2024-01-05 11:17:00', 'admin', '2024-01-05 11:40:57', NULL, 0, 7, NULL);
INSERT INTO `sys_user` VALUES (134, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$Znlr5UcO.EbxAF5zX21SnOI/zDYmE1wIJ03pllg1d5NXWKEIThRxW', '1', '2', '', NULL, 'admin', '2024-01-09 09:19:06', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (135, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$jPX29kWYYFYaAiydOX6.keDjYdq094DyC1fpeeat.obvrJqtA9Fxu', '1', '2', '', NULL, 'admin', '2024-01-09 09:20:32', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (136, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$uLIS7HoXI2/X4da9zk9YuuvUbLqzvMELeCPODw.wRwGRKdoO3cR3u', '1', '2', '', NULL, 'admin', '2024-01-09 09:21:25', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (137, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$E6sRkL2aqNHrtHrFamY45O8ez6UO04aLNlWzSAtxsvnnjtiRm6DTK', '1', '2', '', NULL, 'admin', '2024-01-09 09:22:52', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (138, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$l38v9eYt3f2R9kru0FwNxOQ5Osbelr3nBzfmmgVgmy4qJy.7WDzLy', '1', '2', '', NULL, 'admin', '2024-01-09 09:23:34', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (139, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$joWPfF/ZZKcY6LSxqr6mk.ahB.VJWMNiDtPKzeU2cKUOa/7KT4Ldq', '1', '2', '', NULL, 'admin', '2024-01-09 09:24:59', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (140, NULL, '15682260585', '罗', '00', '', '15682260585', '0', '', '$2a$10$jng1Z.j/sEtaa6rMzGid7.jH2874JN.ar1qPGNB3YHD1ApD.xoaIC', '0', '0', '192.168.110.91', '2024-01-09 15:01:03', 'admin', '2024-01-09 09:30:01', '', '2024-01-09 15:01:41', NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (143, NULL, '15682260581', '阿坝', '00', '', '15682260581', '0', '', '$2a$10$2MUT7vlzNxg5wPAs.C1yPuU83/DLoLWu.mNz8ado4LL8cq86LX/He', '0', '0', '', NULL, 'admin', '2024-01-11 11:50:27', 'admin', '2024-01-11 14:20:37', '111111', 0, 8, '添加111');
INSERT INTO `sys_user` VALUES (144, NULL, '19522115070', '嘟嘟1', '00', '', '19522115070', '0', '', '$2a$10$mljrMdHPv5GNEtM.vz8thO7w3JUXMUg0ipP443CCpTMR.Zlr8JI62', '0', '0', '', NULL, 'admin', '2024-01-11 14:05:44', '', NULL, NULL, 0, 1, NULL);
INSERT INTO `sys_user` VALUES (145, NULL, '15682260582', '15682260582', '00', '', '添加', '0', '', '$2a$10$6JW9gMwsi6K1Tj48NzfEf.OUwaIAbKgtn/P7a4w7FCrH3K8Pthfb2', '1', '2', '', NULL, 'admin', '2024-01-11 17:28:09', 'admin', '2024-01-11 17:31:01', NULL, 0, 8, '订单');
INSERT INTO `sys_user` VALUES (146, NULL, '15682260582', '罗', '00', '', '15682260582', '1', '', '$2a$10$Hqro7D5KwrzciB8im1swTeMdR7gaZO0b9VpgkK3c93Qo/dO.QSFhm', '1', '2', '', NULL, 'admin', '2024-01-11 17:31:25', 'admin', '2024-01-11 17:31:36', NULL, 0, 8, '121212');
INSERT INTO `sys_user` VALUES (147, NULL, '15102879064', '嘟嘟', '00', '', '15102879064', '1', '', '$2a$10$vFbyKflq6qf93NqfH8cwRecWOa7SasjEhAEWlYiaYr8p5hGGB8.4K', '0', '0', '192.168.110.8', '2024-01-11 17:58:44', 'admin', '2024-01-11 17:58:55', '', '2024-01-11 17:59:27', NULL, 0, 7, '开发部');
INSERT INTO `sys_user` VALUES (148, NULL, '15102879065', '台添', '00', '', '15102879065', '1', '', '$2a$10$i6BA1/WwQFm9Q.g9avxNtOAWdnaHA/lfJx4vxs7qYS0KEmOp5eJyq', '0', '0', '', NULL, 'admin', '2024-01-15 15:27:20', '', NULL, NULL, 0, 13, '测试部');
INSERT INTO `sys_user` VALUES (149, NULL, '15102879065', '台添', '00', '', '15102879065', '1', '', '$2a$10$zTDM9hA4H0kxMCd11oWRBeg9tYKzTHpaZlfiqgjFQzvCS0Fufd2Gm', '0', '0', '', NULL, 'admin', '2024-01-15 15:27:22', '', NULL, NULL, 0, 13, '测试部');
INSERT INTO `sys_user` VALUES (150, NULL, '17780483325', '嘟嘟111111', '00', '', '17780483325', '1', '', '$2a$10$HucYlFuY6a7G5U/imc5v/e8ngzNINr280hkFWlRz8MYeus.LBOb3W', '0', '0', '192.168.110.29', '2024-03-04 10:34:13', 'admin', '2024-01-15 15:27:57', 'admin', '2024-03-04 10:34:13', NULL, 0, 13, '测试部');
INSERT INTO `sys_user` VALUES (151, NULL, '17780483321', '林', '00', '', '17780483321', '1', '', '$2a$10$RTiHyRQxlRNWSV0R.a7rd.noPCuwUb13G/WFj5bh9VsgG.xi4biaO', '1', '0', '192.168.110.8', '2024-01-16 15:28:46', 'admin', '2024-01-16 15:28:52', 'admin', '2024-01-29 17:54:44', NULL, 0, 13, '测试部');
 
-- ----------------------------
-- Table structure for sys_user_post
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_post`;
CREATE TABLE `sys_user_post`  (
  `user_id` bigint(0) NOT NULL COMMENT '用户ID',
  `post_id` bigint(0) NOT NULL COMMENT '岗位ID',
  PRIMARY KEY (`user_id`, `post_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户与岗位关联表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_user_post
-- ----------------------------
INSERT INTO `sys_user_post` VALUES (1, 1);
INSERT INTO `sys_user_post` VALUES (2, 2);
 
-- ----------------------------
-- Table structure for sys_user_role
-- ----------------------------
DROP TABLE IF EXISTS `sys_user_role`;
CREATE TABLE `sys_user_role`  (
  `user_id` bigint(0) NOT NULL COMMENT '用户ID',
  `role_id` bigint(0) NOT NULL COMMENT '角色ID',
  PRIMARY KEY (`user_id`, `role_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户和角色关联表' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of sys_user_role
-- ----------------------------
INSERT INTO `sys_user_role` VALUES (1, 1);
INSERT INTO `sys_user_role` VALUES (101, 2);
INSERT INTO `sys_user_role` VALUES (104, 1);
INSERT INTO `sys_user_role` VALUES (105, 1);
INSERT INTO `sys_user_role` VALUES (106, 112);
INSERT INTO `sys_user_role` VALUES (107, 109);
INSERT INTO `sys_user_role` VALUES (108, 110);
INSERT INTO `sys_user_role` VALUES (110, 1);
INSERT INTO `sys_user_role` VALUES (113, 2);
INSERT INTO `sys_user_role` VALUES (114, 118);
INSERT INTO `sys_user_role` VALUES (120, 2);
INSERT INTO `sys_user_role` VALUES (125, 109);
INSERT INTO `sys_user_role` VALUES (127, 115);
INSERT INTO `sys_user_role` VALUES (128, 114);
INSERT INTO `sys_user_role` VALUES (130, 109);
INSERT INTO `sys_user_role` VALUES (131, 109);
INSERT INTO `sys_user_role` VALUES (133, 109);
INSERT INTO `sys_user_role` VALUES (140, 112);
INSERT INTO `sys_user_role` VALUES (142, 2);
INSERT INTO `sys_user_role` VALUES (143, 118);
INSERT INTO `sys_user_role` VALUES (144, 109);
INSERT INTO `sys_user_role` VALUES (147, 2);
INSERT INTO `sys_user_role` VALUES (148, 121);
INSERT INTO `sys_user_role` VALUES (149, 121);
INSERT INTO `sys_user_role` VALUES (150, 109);
INSERT INTO `sys_user_role` VALUES (151, 1);
 
-- ----------------------------
-- Table structure for t_bill
-- ----------------------------
DROP TABLE IF EXISTS `t_bill`;
CREATE TABLE `t_bill`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `contract_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '合同id',
  `payable_fees_money` double(10, 2) NULL DEFAULT NULL COMMENT '应缴费',
  `payable_fees_time` datetime(0) NULL DEFAULT NULL COMMENT '应缴费日期',
  `pay_fees_status` int(0) NULL DEFAULT 1 COMMENT '缴费状态 1=未缴费 2=待确认 3=已缴费 4=已逾期',
  `pay_fees_money` double(10, 2) NULL DEFAULT NULL COMMENT '缴费金额',
  `pay_fees_time` datetime(0) NULL DEFAULT NULL COMMENT '缴费日期',
  `pay_fees_type` int(0) NULL DEFAULT NULL COMMENT '缴费方式 1=线上缴费 =2线下缴费',
  `bill_type` int(0) NULL DEFAULT NULL COMMENT '账单类型 1=租金 2=押金 3=生活费用',
  `over_days` int(0) NULL DEFAULT NULL COMMENT '逾期天数',
  `payable_fees_penalty` double(10, 2) NULL DEFAULT NULL COMMENT '应缴违约金',
  `start_time` datetime(0) NULL DEFAULT NULL COMMENT '账单周期开始时间',
  `end_time` datetime(0) NULL DEFAULT NULL COMMENT '账单周期结束时间',
  `bank_serial_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '银行流水号',
  `actual_money` double(10, 2) NULL DEFAULT NULL COMMENT '实际收款',
  `voucher` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '凭证上传',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '租金账单' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_bill
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_check_accept_record
-- ----------------------------
DROP TABLE IF EXISTS `t_check_accept_record`;
CREATE TABLE `t_check_accept_record`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `contract_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '合同id',
  `house_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '房屋id',
  `check_time` datetime(0) NULL DEFAULT NULL COMMENT '验收时间',
  `lease_reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '退租原因',
  `check_person` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '验收人员',
  `accompany_person` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '陪同人员',
  `overall_situation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '整体情况',
  `furniture_situation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '家电家具情况',
  `device_situation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '设施设备情况',
  `clean_situation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '清洁情况',
  `other_problem` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '其他问题',
  `pictures` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图片',
  `check_result` int(0) NULL DEFAULT NULL COMMENT '验收结果 1=合格 2=不合格',
  `check_money` double(10, 2) NULL DEFAULT NULL COMMENT '验收结算金额',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '验收记录' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_check_accept_record
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_contract
-- ----------------------------
DROP TABLE IF EXISTS `t_contract`;
CREATE TABLE `t_contract`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `contract_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '合同编号',
  `contract_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '合同名称',
  `start_time` datetime(0) NULL DEFAULT NULL COMMENT '开始时间',
  `end_time` datetime(0) NULL DEFAULT NULL COMMENT '结束时间',
  `total_rent` double(10, 2) NULL DEFAULT 0.00 COMMENT '合计租金',
  `deposit` double(10, 2) NULL DEFAULT 0.00 COMMENT '押金',
  `pay_type` int(0) NULL DEFAULT 1 COMMENT '租金支付方式 1=季付',
  `first_pay_time` datetime(0) NULL DEFAULT NULL COMMENT '第一次支付日期',
  `isIncreasing` int(0) NULL DEFAULT NULL COMMENT '是否递增递减 1=是 0=否',
  `isIncreasing_deposit` int(0) NULL DEFAULT NULL COMMENT '押金是否随租金递增递减 1=是 0=否',
  `proportion` double(10, 2) NULL DEFAULT NULL COMMENT '违约金比例',
  `house_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '房屋id',
  `party_one_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '甲方名称',
  `party_one_person` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '甲方联系人',
  `party_one_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '甲方联系方式',
  `tenant_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '租户id',
  `party_two_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '乙方名称',
  `party_two_person` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '乙方联系人',
  `party_two_phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '乙方联系方式',
  `contract_file` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '合同附件',
  `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '备注',
  `status` int(0) NULL DEFAULT 1 COMMENT '状态 1=待审批 2=未签订 3=已签订',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '合同管理' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_contract
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_contract_rent_type
-- ----------------------------
DROP TABLE IF EXISTS `t_contract_rent_type`;
CREATE TABLE `t_contract_rent_type`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `contract_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '合同id',
  `Increasing_decreasing` int(0) NULL DEFAULT NULL COMMENT '递增递减 1=递增 2=递减',
  `Increasing_decreasing_type` int(0) NULL DEFAULT NULL COMMENT '递增递减形式 1=百分比 2=金额元',
  `numerical_value` double(10, 2) NULL DEFAULT NULL COMMENT '数值',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '租金递增递减方式' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_contract_rent_type
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_fault_area_dic
-- ----------------------------
DROP TABLE IF EXISTS `t_fault_area_dic`;
CREATE TABLE `t_fault_area_dic`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `fault_area_name` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障区域名称',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '故障区域' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_fault_area_dic
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_fault_describe_dic
-- ----------------------------
DROP TABLE IF EXISTS `t_fault_describe_dic`;
CREATE TABLE `t_fault_describe_dic`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `fault_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障区域id',
  `describe_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障描述',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '故障描述' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_fault_describe_dic
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_fault_repair_message
-- ----------------------------
DROP TABLE IF EXISTS `t_fault_repair_message`;
CREATE TABLE `t_fault_repair_message`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `app_user_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户id',
  `item_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '物品id',
  `fault_area_name` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障区域',
  `describe_name` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障描述',
  `describe_detail` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '描述详情',
  `fault_pictures` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '故障图片',
  `service_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '服务地址',
  `repair_type` int(0) NULL DEFAULT NULL COMMENT '报修类型 1=常规维修 2=紧急抢修',
  `visit_time` datetime(0) NULL DEFAULT NULL COMMENT '上门时间',
  `contact_number` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系电话',
  `leave_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '留言',
  `handle_person` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '处理人',
  `handle_time` datetime(0) NULL DEFAULT NULL COMMENT '处理时间',
  `result_describe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '结果描述',
  `repair_picture` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '处理照片',
  `attachment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '附件',
  `status` int(0) NULL DEFAULT 1 COMMENT '状态 1=待处理 2=已处理',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '报修管理' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_fault_repair_message
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_flow_management
-- ----------------------------
DROP TABLE IF EXISTS `t_flow_management`;
CREATE TABLE `t_flow_management`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `sys_serial_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '系统流水号',
  `bank_serial_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '银行流水号',
  `flow_money` double(10, 2) NULL DEFAULT NULL COMMENT '流水金额',
  `deduction_money` double(10, 2) NULL DEFAULT NULL COMMENT '抵扣金额',
  `remaining_money` double(10, 2) NULL DEFAULT NULL COMMENT '剩余金额',
  `pay_time` datetime(0) NULL DEFAULT NULL COMMENT '支付时间',
  `payer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '付款人',
  `flow_status` int(0) NULL DEFAULT NULL COMMENT '流水状态 1=正常 2=异常',
  `flow_type` int(0) NULL DEFAULT NULL COMMENT '流水类型 1=系统 2=银行',
  `pay_type` int(0) NULL DEFAULT NULL COMMENT '支付方式 1=微信支付 2=支付宝支付 3=线下支付',
  `payment_bill_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '缴费账单id',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '流水管理' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_flow_management
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_house
-- ----------------------------
DROP TABLE IF EXISTS `t_house`;
CREATE TABLE `t_house`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `house_picture` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '房屋图片',
  `house_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '房屋名称',
  `house_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '地址',
  `house_area` int(0) NULL DEFAULT NULL COMMENT '建筑面积',
  `house_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '户型',
  `business_attributes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '业务属性',
  `product_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '产品类型',
  `property_right_person` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '产权人',
  `property_right_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '产证编号',
  `property_right_start_time` datetime(0) NULL DEFAULT NULL COMMENT '产权开始日期',
  `property_right_duration` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '产权年限',
  `lease_status` int(0) NULL DEFAULT 1 COMMENT '租赁状态 1=待出租 2=已出租 3=维修中',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  `building` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '楼栋',
  `room_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '房号',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '房屋管理' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_house
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_information
-- ----------------------------
DROP TABLE IF EXISTS `t_information`;
CREATE TABLE `t_information`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `title_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题',
  `sort_by` int(0) NULL DEFAULT NULL COMMENT '排序',
  `info_source` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '信息来源',
  `release_time` datetime(0) NULL DEFAULT NULL COMMENT '发布时间',
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '内容',
  `attachment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '附件',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '资讯管理' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_information
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_invoice
-- ----------------------------
DROP TABLE IF EXISTS `t_invoice`;
CREATE TABLE `t_invoice`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `invoice_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '申请编号',
  `invoice_money` double(10, 2) NULL DEFAULT NULL COMMENT '金额',
  `apply_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '申请人',
  `title_type` int(0) NULL DEFAULT NULL COMMENT '抬头类型 1=企业 2=个人',
  `title_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '抬头名称',
  `serial_number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '税号/身份证号',
  `status` int(0) NULL DEFAULT NULL COMMENT '开票状态  1=待开票 2=已开票',
  `invoice_time` datetime(0) NULL DEFAULT NULL COMMENT '开票日期',
  `invoice_voucher` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '开票凭证',
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
  `contract_number` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '开票合同编号逗号分割',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '开票管理' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_invoice
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_item
-- ----------------------------
DROP TABLE IF EXISTS `t_item`;
CREATE TABLE `t_item`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `type_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '分类id',
  `item_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '物品名称',
  `sort_by` int(0) NULL DEFAULT NULL COMMENT '权重',
  `pictures` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图片',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '维修物品' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_item
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_item_type
-- ----------------------------
DROP TABLE IF EXISTS `t_item_type`;
CREATE TABLE `t_item_type`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '分类名称',
  `sort_by` int(0) NULL DEFAULT NULL COMMENT '权重',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '维修物品分类' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_item_type
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_sys_config
-- ----------------------------
DROP TABLE IF EXISTS `t_sys_config`;
CREATE TABLE `t_sys_config`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `system_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '系统名称',
  `company_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '公司名称',
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系方式',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统公共参数设置' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_sys_config
-- ----------------------------
 
-- ----------------------------
-- Table structure for t_tenant
-- ----------------------------
DROP TABLE IF EXISTS `t_tenant`;
CREATE TABLE `t_tenant`  (
  `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `resident_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '住户名称',
  `checkIn_time` datetime(0) NULL DEFAULT NULL COMMENT '入住时间',
  `tenant_attributes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '租户属性',
  `tenant_type` int(0) NULL DEFAULT NULL COMMENT '租户类型',
  `tenant_building` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '租户楼栋',
  `room_number` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '房号',
  `building_area` int(0) NULL DEFAULT NULL COMMENT '建筑面积',
  `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '联系电话',
  `id_card` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '证件号码',
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱',
  `bank_number` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '银行转账专号',
  `mail_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '通讯地址',
  `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  `update_time` datetime(0) NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  `create_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '创建人',
  `update_by` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '修改人',
  `disabled` int(0) NULL DEFAULT 0 COMMENT '是否删除 0=否 1=是',
  `account` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '登录账号',
  `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '密码',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '租户' ROW_FORMAT = Dynamic;
 
-- ----------------------------
-- Records of t_tenant
-- ----------------------------
 
SET FOREIGN_KEY_CHECKS = 1;