1
dengjunjie
2025-06-17 8f316cbca92dc248151863320c506f961ed95db8
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
/*
 Navicat Premium Data Transfer
 
 Source Server         : DESKTOP-SCT31AM
 Source Server Type    : SQL Server
 Source Server Version : 13001601
 Source Catalog        : WIDESEAWCS_ZH
 Source Schema         : dbo
 
 Target Server Type    : SQL Server
 Target Server Version : 13001601
 File Encoding         : 65001
 
 Date: 17/06/2025 00:40:36
*/
 
 
-- ----------------------------
-- Table structure for Dt_DeviceInfo
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DeviceInfo]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_DeviceInfo]
GO
 
CREATE TABLE [dbo].[Dt_DeviceInfo] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [DeviceCode] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceName] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceType] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceStatus] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceIp] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DevicePort] int  NOT NULL,
  [DevicePlcType] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceRemark] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL,
  [DispatchId] int  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_DeviceInfo] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备编号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DeviceCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备名称',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DeviceName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DeviceType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备状态',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DeviceStatus'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备IP',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DeviceIp'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备端口',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DevicePort'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'PLC类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DevicePlcType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DeviceRemark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'调度表主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo',
'COLUMN', N'DispatchId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备信息',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceInfo'
GO
 
 
-- ----------------------------
-- Records of Dt_DeviceInfo
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_DeviceInfo] ON
GO
 
INSERT INTO [dbo].[Dt_DeviceInfo] ([Id], [DeviceCode], [DeviceName], [DeviceType], [DeviceStatus], [DeviceIp], [DevicePort], [DevicePlcType], [DeviceRemark], [Creater], [CreateDate], [Modifier], [ModifyDate], [DispatchId]) VALUES (N'1', N'FL_SC01', N'辅料堆垛机', N'SpeStackerCrane', N'0', N'192.168.100.80', N'502', N'InovanceAMTcp', NULL, N'System', N'2024-10-21 10:18:08.477', N'admin', N'2024-11-08 10:25:10.393', N'4')
GO
 
INSERT INTO [dbo].[Dt_DeviceInfo] ([Id], [DeviceCode], [DeviceName], [DeviceType], [DeviceStatus], [DeviceIp], [DevicePort], [DevicePlcType], [DeviceRemark], [Creater], [CreateDate], [Modifier], [ModifyDate], [DispatchId]) VALUES (N'1004', N'CP_SC01', N'成品堆垛机', N'SpeStackerCrane', N'0', N'192.168.100.90', N'502', N'InovanceAMTcp', NULL, N'System', N'2024-11-11 08:57:48.343', NULL, NULL, N'4')
GO
 
INSERT INTO [dbo].[Dt_DeviceInfo] ([Id], [DeviceCode], [DeviceName], [DeviceType], [DeviceStatus], [DeviceIp], [DevicePort], [DevicePlcType], [DeviceRemark], [Creater], [CreateDate], [Modifier], [ModifyDate], [DispatchId]) VALUES (N'1005', N'Line01', N'输送线', N'CommonConveyorLine', N'0', N'192.168.0.86', N'103', N'SiemensS7', NULL, N'System', N'2025-05-29 15:52:45.000', NULL, NULL, N'1007')
GO
 
SET IDENTITY_INSERT [dbo].[Dt_DeviceInfo] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_DeviceProtocol
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DeviceProtocol]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_DeviceProtocol]
GO
 
CREATE TABLE [dbo].[Dt_DeviceProtocol] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [DeviceId] int  NOT NULL,
  [DeviceChildCode] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceProDataBlock] varchar(10) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceProOffset] decimal(10,1)  NOT NULL,
  [DeviceProDataType] varchar(10) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceProDataLength] int DEFAULT '1' NOT NULL,
  [DeviceProParamName] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceProParamType] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceProParamDes] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [DeviceProRemark] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_DeviceProtocol] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备子编号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceChildCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'协议数据块',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProDataBlock'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'偏移量',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProOffset'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProDataType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据长度',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProDataLength'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'参数名称',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProParamName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'参数类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProParamType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'参数说明',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProParamDes'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'DeviceProRemark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备协议',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocol'
GO
 
 
-- ----------------------------
-- Records of Dt_DeviceProtocol
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocol] ON
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1', N'FL_SC01', N'MD1001', N'.0', N'Dint', N'1', N'TaskNum', N'DeviceCommand', N'任务号', NULL, N'admin', N'2024-10-21 10:18:12.610', N'admin', N'2024-11-08 10:25:10.397')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1', N'FL_SC01', N'MW2004', N'.0', N'int', N'1', N'WorkType', N'DeviceCommand', N'作业类型', N'1入2出3移库', N'admin', N'2024-10-21 10:18:12.610', N'admin', N'2024-11-08 10:25:10.397')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'1', N'FL_SC01', N'MW2009', N'.0', N'int', N'1', N'StartRow', N'DeviceCommand', N'起始行', NULL, N'admin', N'2024-10-21 10:18:12.610', N'admin', N'2024-11-08 10:25:10.400')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'1', N'FL_SC01', N'MW2010', N'.0', N'int', N'1', N'StartColumn', N'DeviceCommand', N'起始列', NULL, N'admin', N'2024-10-30 16:56:35.617', N'admin', N'2024-11-08 10:25:10.400')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'1', N'FL_SC01', N'MW2011', N'.0', N'int', N'1', N'StartLayer', N'DeviceCommand', N'起始层', NULL, N'admin', N'2024-10-30 16:58:36.710', N'admin', N'2024-11-08 10:25:10.400')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'1', N'FL_SC01', N'MW2012', N'.0', N'int', N'1', N'EndRow', N'DeviceCommand', N'终点行', NULL, N'admin', N'2024-10-30 17:00:43.723', N'admin', N'2024-11-08 10:25:10.403')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'1', N'FL_SC01', N'MW2013', N'.0', N'int', N'1', N'EndColumn', N'DeviceCommand', N'终点列', NULL, N'admin', N'2024-10-30 17:14:13.137', N'admin', N'2024-11-08 10:25:10.403')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'1', N'FL_SC01', N'MW2014', N'.0', N'int', N'1', N'EndLayer', N'DeviceCommand', N'终点层', NULL, N'admin', N'2024-10-30 17:14:13.137', N'admin', N'2024-11-08 10:25:10.407')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'1', N'FL_SC01', N'MW2000', N'.0', N'int', N'1', N'CommandSend', N'DeviceCommand', N'启动命令', N'1为启动,收到MW1512=1完成信号后开启信号给2反馈给PLC,PLC清完成信号1--0', N'admin', N'2024-10-30 17:14:13.137', N'admin', N'2024-11-08 10:25:10.407')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'1', N'FL_SC01', N'MW1500', N'.0', N'int', N'1', N'DeviceName', N'ReadDeviceCommand', N'反馈堆垛机号', NULL, N'admin', N'2024-10-30 17:14:13.140', N'admin', N'2024-11-08 10:25:10.407')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'1', N'FL_SC01', N'MW1501', N'.0', N'int', N'1', N'StackerCraneAutoStatus', N'ReadDeviceCommand', N'反馈控制方式', N'5:联机自动4:本机自动/半自动3:手动2:调试1:自学习', N'admin', N'2024-10-30 17:14:13.140', N'admin', N'2024-11-08 10:25:10.410')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'1', N'FL_SC01', N'MW1502', N'.0', N'int', N'1', N'StackerCraneWorkStatus', N'ReadDeviceCommand', N'反馈设备状态', N'1:空闲,2接收指令,3空载移动,4取货,5取货完成,6满载移动,7卸货,8入库完成,9出库完成,10手动删除任务', N'admin', N'2024-10-30 17:14:51.447', N'admin', N'2024-11-08 10:25:10.410')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'1', N'FL_SC01', N'MD755', N'.0', N'Dint', N'1', N'CurrentTaskNum', N'ReadDeviceCommand', N'反馈指令任务号', N'作业完成后上报完成的任务号', N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'1', N'FL_SC01', N'MW1512', N'.0', N'int', N'1', N'StackerCraneTaskCompleted', N'ReadDeviceCommand', N'反馈指令状态:1完成,2取消。', N'任务完成信号', N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'1', N'FL_SC01', N'MW1520', N'.0', N'int', N'1', N'AccuRow', N'ReadDeviceCommand', N'反馈当前排', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'1', N'FL_SC01', N'MW1521', N'.0', N'int', N'1', N'AccuColumn', N'ReadDeviceCommand', N'反馈当前列', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'1', N'FL_SC01', N'MW1522', N'.0', N'int', N'1', N'AccuLayer', N'ReadDeviceCommand', N'反馈当前层', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'1', N'FL_SC01', N'MW1548', N'.0', N'int', N'1', N'StackerCraneStatus', N'ReadDeviceCommand', N'允许信号,wcs允许下发动作指令', N'1准备就绪0未就绪;准备就绪可下发堆垛机任务', N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'1', N'FL_SC01', N'MW1600', N'.0', N'int', N'1', N'Err_Status', N'ReadDeviceCommand', N'故障代码', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413')
GO
 
SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocol] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_DeviceProtocolDetail
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DeviceProtocolDetail]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_DeviceProtocolDetail]
GO
 
CREATE TABLE [dbo].[Dt_DeviceProtocolDetail] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [DeviceType] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeviceProParamName] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ProtocolDetailType] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ProtocalDetailValue] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ProtocolDetailDes] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_DeviceProtocolDetail] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'DeviceType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备协议参数名称',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'DeviceProParamName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备协议明细类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'ProtocolDetailType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备协议明细取值',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'ProtocalDetailValue'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备协议明细说明',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'ProtocolDetailDes'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备协议明细',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DeviceProtocolDetail'
GO
 
 
-- ----------------------------
-- Records of Dt_DeviceProtocolDetail
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocolDetail] ON
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'SpeStackerCrane', N'StackerCraneStatus', N'Ready', N'1', N'设备状态(1:准备就绪)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:03:13.193')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'SpeStackerCrane', N'StackerCraneStatus', N'Unkonw', N'0', N'设备状态(0:未知)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:03:48.797')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'Maintenance', N'2', N'工作模式(2:调试)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:04:07.243')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'Manual', N'3', N'工作模式(3:手动)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:04:32.090')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'SemiAutomatic', N'4', N'工作模式(4:半自动)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:04:56.577')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'Automatic', N'5', N'工作模式(5:联机)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:05:17.013')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'Standby', N'1', N'作业状态(1:待机)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:05:32.000')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickUp', N'2', N'作业状态(2:收到任务)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:05:47.323')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickAfterMove', N'6', N'作业状态(6:取货完后移动)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:09:20.447')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'Putting', N'7', N'作业状态(7:放货中)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:06:41.770')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PutCompleted', N'8', N'作业状态(8:放货完成)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:07:33.260')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'SpeStackerCrane', N'StackerCraneTaskCompleted', N'WorkCompleted', N'1', N'任务状态(1:任务完成)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:12:45.800')
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickBeforeMove', N'3', N'作业状态(3:取货前移动)', NULL, N'admin', N'2024-10-31 14:10:40.030', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickUp', N'4', N'作业状态(4:取货中)', NULL, N'admin', N'2024-10-31 14:11:19.473', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'SelfStudy', N'1', N'工作模式(1:自学习)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocolDetail] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_DispatchInfo
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DispatchInfo]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_DispatchInfo]
GO
 
CREATE TABLE [dbo].[Dt_DispatchInfo] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [Name] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [JobGroup] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [AssemblyName] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ClassName] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [IntervalSecond] int  NOT NULL,
  [BeginTime] datetime  NULL,
  [EndTime] datetime  NULL,
  [Remark] varchar(1000) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_DispatchInfo] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务名称',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'Name'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务分组',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'JobGroup'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务所在DLL对应的程序集名称',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'AssemblyName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务所在类',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'ClassName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'执行间隔时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'IntervalSecond'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'开始时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'BeginTime'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'结束时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'EndTime'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务描述',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'调度服务配置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_DispatchInfo'
GO
 
 
-- ----------------------------
-- Records of Dt_DispatchInfo
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_DispatchInfo] ON
GO
 
INSERT INTO [dbo].[Dt_DispatchInfo] ([Id], [Name], [JobGroup], [AssemblyName], [ClassName], [IntervalSecond], [BeginTime], [EndTime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'R01', N'SpeStackerCrane', N'WIDESEAWCS_Tasks', N'CommonStackerCraneJob', N'1', NULL, NULL, NULL, N'admin', N'2024-10-25 16:56:09.893', N'admin', N'2024-10-28 13:57:52.737')
GO
 
INSERT INTO [dbo].[Dt_DispatchInfo] ([Id], [Name], [JobGroup], [AssemblyName], [ClassName], [IntervalSecond], [BeginTime], [EndTime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1006', N'Log', N'OtherDevice', N'WIDESEAWCS_Tasks', N'LogJob', N'1', NULL, NULL, NULL, N'admin', N'2024-11-08 10:21:57.300', N'admin', N'2024-11-11 14:30:25.130')
GO
 
INSERT INTO [dbo].[Dt_DispatchInfo] ([Id], [Name], [JobGroup], [AssemblyName], [ClassName], [IntervalSecond], [BeginTime], [EndTime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1007', N'输送线', N'CommonConveyorLine', N'WIDESEAWCS_Tasks', N'CommonConveyorLineJob', N'1', NULL, NULL, NULL, N'admin', N'2025-05-29 15:56:39.000', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Dt_DispatchInfo] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_Router
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Router]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_Router]
GO
 
CREATE TABLE [dbo].[Dt_Router] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [StartPosi] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [NextPosi] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [InOutType] bigint  NOT NULL,
  [ChildPosi] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ChildPosiDeviceCode] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [SrmRow] int  NULL,
  [SrmColumn] int  NULL,
  [SrmLayer] int  NULL,
  [Depth] int  NULL,
  [IsEnd] bit  NOT NULL,
  [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_Router] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'起点位置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'StartPosi'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'终点位置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'NextPosi'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'路由类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'InOutType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'子位置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'ChildPosi'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'子位置所属设备',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'ChildPosiDeviceCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'堆垛机取货/放货行',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'SrmRow'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'堆垛机取货/放货列',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'SrmColumn'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'堆垛机取货/放货层',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'SrmLayer'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'深度',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'Depth'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否是最终点',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'IsEnd'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'设备路由配置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Router'
GO
 
 
-- ----------------------------
-- Records of Dt_Router
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_Router] ON
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'101', N'102', N'1', N'102', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'102', N'103', N'1', N'103', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'103', N'104', N'1', N'104', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'104', N'105', N'1', N'105', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'105', N'106', N'1', N'106', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'106', N'107', N'1', N'107', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'107', N'108', N'1', N'108', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'108', N'109', N'1', N'109', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'109', N'110', N'1', N'110', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'110', N'SC01', N'1', N'SC01', N'1002', N'1', N'100', N'1', N'1', N'1', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'SC01', N'111', N'2', N'111', N'1002', N'2', N'100', N'1', N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'111', N'112', N'2', N'112', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'112', N'113', N'2', N'113', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'113', N'114', N'2', N'114', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'114', N'115', N'2', N'115', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'115', N'116', N'2', N'116', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'116', N'117', N'2', N'117', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'117', N'118', N'2', N'118', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'118', N'119', N'2', N'119', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'119', N'CLOutAreaA', N'2', N'120', N'1002', NULL, NULL, NULL, N'1', N'1', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Dt_Router] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_Task
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Task]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_Task]
GO
 
CREATE TABLE [dbo].[Dt_Task] (
  [TaskId] int  IDENTITY(1,1) NOT NULL,
  [TaskNum] int  NOT NULL,
  [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Roadway] varchar(10) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [TaskType] int  NOT NULL,
  [TaskStatus] int  NOT NULL,
  [SourceAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [TargetAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ExceptionMessage] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [Depth] int  NULL,
  [Grade] int  NOT NULL,
  [WMSId] int  NOT NULL,
  [Dispatchertime] datetime  NULL,
  [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_Task] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'TaskId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'TaskNum'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'托盘编号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'PalletCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'巷道号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'Roadway'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'TaskType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务状态',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'TaskStatus'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'起始地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'SourceAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'目标地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'TargetAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'当前位置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'CurrentAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'下一地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'NextAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'异常信息',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'ExceptionMessage'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'优先级',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'Grade'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'WMS任务主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'WMSId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务下发时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'Dispatchertime'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务信息',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task'
GO
 
 
-- ----------------------------
-- Records of Dt_Task
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_Task] ON
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'121', N'10', N'SC01_CP', N'300', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'CP-002-001-001-01', N'CP-001-001-003-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.833', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'118', N'1', N'SC01_CP', N'100', N'100', N'CP-001-001-001-02', N'CP-003-062-001-01', N'CP-001-001-001-02', N'CP-003-062-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'122', N'11', N'SC01_CP', N'300', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'CP-002-001-002-01', N'CP-001-001-004-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'119', N'2', N'SC01_CP', N'100', N'100', N'CP-001-001-002-02', N'CP-003-062-001-01', N'CP-001-001-002-02', N'CP-003-062-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'123', N'4', N'SC02_CP', N'300', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'CP-002-060-001-01', N'CP-004-060-003-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'120', N'3', N'SC02_CP', N'100', N'100', N'CP-001-060-001-02', N'CP-002-061-001-01', N'CP-001-060-001-02', N'CP-002-061-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'129', N'15', N'SC02_CP', N'300', N'300', N'CP-003-060-001-01', N'CP-004-060-004-02', N'CP-003-060-001-01', N'CP-004-060-004-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 23:01:07.037', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'128', N'13', N'SC02_CP', N'100', N'100', N'CP-004-060-001-02', N'CP-002-061-001-01', N'CP-004-060-001-02', N'CP-002-061-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 23:01:07.037', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'127', N'12', N'SC02_CP', N'100', N'100', N'CP-002-060-004-01', N'CP-002-061-001-01', N'CP-002-060-004-01', N'CP-002-061-001-01', NULL, N'1', N'3', N'0', NULL, NULL, N'System', N'2025-06-16 23:02:32.470', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'135', N'6', N'SC02_CP', N'100', N'100', N'CP-002-060-002-01', N'CP-002-061-001-01', N'CP-002-060-002-01', N'CP-002-061-001-01', NULL, N'1', N'3', N'0', NULL, NULL, N'System', N'2025-06-16 23:54:18.287', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'134', N'5', N'SC02_CP', N'100', N'100', N'CP-001-060-002-02', N'CP-002-061-001-01', N'CP-001-060-002-02', N'CP-002-061-001-01', NULL, N'2', N'3', N'0', NULL, NULL, N'System', N'2025-06-16 23:54:18.287', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'141', N'16', N'SC02_CP', N'100', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'CP-003-060-002-01', N'CP-002-061-001-01', NULL, N'1', N'3', N'0', NULL, NULL, N'System', N'2025-06-17 00:04:36.387', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Dt_Task] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_Task_Hty
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Task_Hty]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_Task_Hty]
GO
 
CREATE TABLE [dbo].[Dt_Task_Hty] (
  [TaskId] int  IDENTITY(1,1) NOT NULL,
  [TaskNum] int  NOT NULL,
  [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Roadway] varchar(10) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [TaskType] int  NOT NULL,
  [TaskStatus] int  NOT NULL,
  [SourceAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [TargetAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [ExceptionMessage] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [Depth] int  NULL,
  [Grade] int  NOT NULL,
  [WMSId] int  NOT NULL,
  [Dispatchertime] datetime  NULL,
  [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_Task_Hty] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'TaskId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'TaskNum'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'托盘编号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'PalletCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'巷道号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'Roadway'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务类型',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'TaskType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务状态',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'TaskStatus'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'起始地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'SourceAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'目标地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'TargetAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'当前位置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'CurrentAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'下一地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'NextAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'异常信息',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'ExceptionMessage'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'优先级',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'Grade'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'WMS任务主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'WMSId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务下发时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'Dispatchertime'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务信息',
'SCHEMA', N'dbo',
'TABLE', N'Dt_Task_Hty'
GO
 
 
-- ----------------------------
-- Records of Dt_Task_Hty
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_Task_Hty] ON
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3148', N'1', N'1111', N'SC01_FL', N'300', N'320', N'FL-001-050-001-01', N'FL-003-060-001-01', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 15:27:38.890', NULL, N'System', N'2025-06-12 15:08:40.073', N'WMS', N'2025-06-12 15:33:15.833')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3195', N'2', N'1111', N'SC01_FL', N'300', N'320', N'FL-003-060-001-01', N'FL-001-058-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 15:54:09.023', NULL, N'System', N'2025-06-12 15:09:40.073', N'WMS', N'2025-06-12 15:56:04.850')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3196', N'3', N'1111', N'SC01_FL', N'300', N'320', N'FL-001-058-001-02', N'FL-001-051-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'2', N'0', N'2025-06-12 16:30:03.393', NULL, N'System', N'2025-06-12 15:09:40.073', N'WMS', N'2025-06-12 16:31:17.343')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3197', N'4', N'1111', N'SC01_FL', N'300', N'320', N'FL-001-051-001-02', N'FL-004-058-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:43:41.190', NULL, N'System', N'2025-06-12 15:09:40.073', N'WMS', N'2025-06-12 16:54:32.217')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3198', N'5', N'1111', N'SC01_FL', N'300', N'320', N'FL-004-058-001-02', N'FL-002-041-001-01', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:54:44.500', NULL, N'System', N'2025-06-12 15:09:41.073', N'WMS', N'2025-06-12 16:56:18.203')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3199', N'6', N'1111', N'SC01_FL', N'300', N'320', N'FL-002-041-001-01', N'FL-003-031-001-01', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:57:07.637', NULL, N'System', N'2025-06-12 15:09:42.073', N'WMS', N'2025-06-12 16:58:09.250')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3200', N'7', N'1111', N'SC01_FL', N'300', N'320', N'FL-003-031-001-01', N'FL-004-060-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:58:10.857', NULL, N'System', N'2025-06-12 15:09:43.073', N'WMS', N'2025-06-12 16:59:47.123')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3201', N'8', N'1111', N'SC01_FL', N'300', N'320', N'FL-004-060-001-02', N'FL-001-058-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:59:48.393', NULL, N'System', N'2025-06-12 15:09:44.073', N'WMS', N'2025-06-12 17:00:54.477')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3202', N'83', N'1', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-001-001-001-02', N'CP-002-062-001-01', N'CP-001-001-001-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 13:58:01.250', N'WMS', N'2025-06-16 15:51:03.573')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3203', N'83', N'2', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-001-001-002-02', N'CP-002-062-001-01', N'CP-001-001-002-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 14:19:01.687', N'WMS', N'2025-06-16 16:28:31.680')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3204', N'87', N'4', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-001-01', N'CP-003-061-001-01', N'CP-002-060-001-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:45:14.387', N'WMS', N'2025-06-16 16:49:17.543')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3205', N'88', N'5', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-002-02', N'CP-003-061-001-01', N'CP-001-060-002-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:52:20.707', N'WMS', N'2025-06-16 16:54:36.053')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3206', N'92', N'9', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-004-02', N'CP-003-061-001-01', N'CP-001-060-004-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:06:41.283', N'admin', N'2025-06-16 17:07:02.720')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3207', N'93', N'10', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-002-001-001-01', N'CP-002-062-001-01', N'CP-002-001-001-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:30:00.287', N'admin', N'2025-06-16 17:31:32.690')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3208', N'94', N'11', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-002-001-002-01', N'CP-002-062-001-01', N'CP-002-001-002-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:36:27.450', N'admin', N'2025-06-16 17:37:17.923')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3209', N'95', N'12', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-004-01', N'CP-003-061-001-01', N'CP-002-060-004-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:40:02.647', N'admin', N'2025-06-16 17:49:01.727')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3210', N'96', N'13', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-004-060-001-02', N'CP-003-061-001-01', N'CP-004-060-001-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:41:15.287', N'admin', N'2025-06-16 17:49:31.583')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3211', N'97', N'15', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-003-060-001-01', N'CP-003-061-001-01', N'CP-003-060-001-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:51:02.107', N'WMS', N'2025-06-16 17:52:33.190')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3212', N'98', N'14', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-004-060-002-02', N'CP-003-061-001-01', N'CP-004-060-002-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:53:37.773', N'WMS', N'2025-06-16 17:54:57.250')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3213', N'99', N'16', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-003-060-002-01', N'CP-003-061-001-01', N'CP-003-060-002-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:55:32.313', N'WMS', N'2025-06-16 17:55:56.583')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3214', N'91', N'8', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-003-01', N'CP-003-061-001-01', N'CP-002-060-003-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:03:26.670', N'admin', N'2025-06-16 17:59:59.073')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3215', N'90', N'7', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-003-02', N'CP-003-061-001-01', N'CP-001-060-003-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:00:18.520', N'admin', N'2025-06-16 18:00:45.490')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3216', N'89', N'6', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-002-01', N'CP-003-061-001-01', N'CP-002-060-002-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:56:40.437', N'admin', N'2025-06-16 18:01:56.593')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3217', N'86', N'3', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-001-02', N'CP-003-061-001-01', N'CP-001-060-001-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:39:31.107', N'admin', N'2025-06-16 18:02:17.590')
GO
 
INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3218', N'140', N'14', N'SC02_CP', N'100', N'190', N'CP-004-060-002-02', N'CP-002-061-001-01', N'CP-004-060-002-02', N'CP-002-061-001-01', NULL, N'2', N'3', N'0', NULL, NULL, N'System', N'2025-06-17 00:04:36.397', N'WMS', N'2025-06-17 00:29:40.333')
GO
 
SET IDENTITY_INSERT [dbo].[Dt_Task_Hty] OFF
GO
 
 
-- ----------------------------
-- Table structure for Dt_TaskExecuteDetail
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_TaskExecuteDetail]') AND type IN ('U'))
    DROP TABLE [dbo].[Dt_TaskExecuteDetail]
GO
 
CREATE TABLE [dbo].[Dt_TaskExecuteDetail] (
  [TaskDetailId] int  IDENTITY(1,1) NOT NULL,
  [TaskId] int  NOT NULL,
  [TaskNum] int  NOT NULL,
  [TaskState] int  NOT NULL,
  [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [IsManual] bit  NOT NULL,
  [IsNormal] bit  NOT NULL,
  [Description] varchar(max) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Dt_TaskExecuteDetail] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'TaskDetailId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务主键',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'TaskId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务号',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'TaskNum'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务状态',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'TaskState'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'当前位置',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'CurrentAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'下一地址',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'NextAddress'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否人工操作',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'IsManual'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否正常',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'IsNormal'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'描述',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'Description'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'任务执行明细',
'SCHEMA', N'dbo',
'TABLE', N'Dt_TaskExecuteDetail'
GO
 
 
-- ----------------------------
-- Records of Dt_TaskExecuteDetail
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Dt_TaskExecuteDetail] ON
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11703', N'14', N'83', N'200', N'CP-002-062-001-01', N'CP-001-001-001-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 13:58:01.840', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11704', N'15', N'85', N'200', N'CP-002-062-001-01', N'CP-001-001-002-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 14:19:02.880', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11709', N'14', N'83', N'200', N'CP-002-062-001-01', N'CP-001-001-001-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 15:51:11.293', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11714', N'15', N'83', N'200', N'CP-002-062-001-01', N'CP-001-001-002-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 16:28:32.450', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11715', N'16', N'86', N'200', N'CP-003-061-001-01', N'CP-001-060-001-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:39:32.003', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11718', N'17', N'87', N'200', N'CP-003-061-001-01', N'CP-002-060-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:45:15.427', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11719', N'17', N'87', N'200', N'CP-003-061-001-01', N'CP-002-060-001-01', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 16:49:18.663', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11720', N'18', N'88', N'200', N'CP-003-061-001-01', N'CP-001-060-002-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:52:21.963', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11721', N'18', N'88', N'200', N'CP-003-061-001-01', N'CP-001-060-002-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 16:54:37.140', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11722', N'19', N'89', N'200', N'CP-003-061-001-01', N'CP-002-060-002-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:56:41.300', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11724', N'20', N'90', N'200', N'CP-003-061-001-01', N'CP-001-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:00:19.287', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11726', N'21', N'91', N'200', N'CP-003-061-001-01', N'CP-002-060-003-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:03:27.570', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11728', N'22', N'92', N'200', N'CP-003-061-001-01', N'CP-001-060-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:06:41.903', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11729', N'22', N'92', N'200', N'CP-003-061-001-01', N'CP-001-060-004-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:07:03.227', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11730', N'23', N'93', N'200', N'CP-002-062-001-01', N'CP-002-001-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:30:01.243', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11731', N'23', N'93', N'200', N'CP-002-062-001-01', N'CP-002-001-001-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:31:34.103', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11732', N'24', N'94', N'200', N'CP-002-062-001-01', N'CP-002-001-002-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:36:28.990', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11733', N'24', N'94', N'200', N'CP-002-062-001-01', N'CP-002-001-002-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:37:19.203', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11734', N'25', N'95', N'200', N'CP-003-061-001-01', N'CP-002-060-004-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:40:03.247', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11735', N'26', N'96', N'200', N'CP-003-061-001-01', N'CP-004-060-001-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:41:16.077', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11736', N'25', N'95', N'200', N'CP-003-061-001-01', N'CP-002-060-004-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:49:02.627', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11737', N'26', N'96', N'200', N'CP-003-061-001-01', N'CP-004-060-001-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:49:32.507', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11738', N'27', N'97', N'200', N'CP-003-061-001-01', N'CP-003-060-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:51:03.057', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11739', N'27', N'97', N'200', N'CP-003-061-001-01', N'CP-003-060-001-01', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 17:52:34.160', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11740', N'28', N'98', N'200', N'CP-003-061-001-01', N'CP-004-060-002-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:53:38.833', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11741', N'28', N'98', N'200', N'CP-003-061-001-01', N'CP-004-060-002-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 17:54:58.227', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11742', N'29', N'99', N'200', N'CP-003-061-001-01', N'CP-003-060-002-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:55:33.320', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11743', N'29', N'99', N'200', N'CP-003-061-001-01', N'CP-003-060-002-01', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 17:55:57.493', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11744', N'21', N'91', N'200', N'CP-003-061-001-01', N'CP-002-060-003-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:00:00.093', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11745', N'20', N'90', N'200', N'CP-003-061-001-01', N'CP-001-060-003-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:00:46.770', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11746', N'19', N'89', N'200', N'CP-003-061-001-01', N'CP-002-060-002-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:01:57.267', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11747', N'16', N'86', N'200', N'CP-003-061-001-01', N'CP-001-060-001-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:02:18.073', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11748', N'30', N'103', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.833', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11749', N'31', N'100', N'100', N'CP-001-001-001-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11750', N'32', N'104', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11751', N'33', N'101', N'100', N'CP-001-001-002-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11752', N'34', N'105', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11753', N'35', N'102', N'100', N'CP-001-060-001-02', N'A04', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11754', N'36', N'115', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11755', N'37', N'112', N'100', N'CP-001-001-001-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11756', N'38', N'116', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11757', N'39', N'113', N'100', N'CP-001-001-002-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11758', N'40', N'117', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11759', N'41', N'114', N'100', N'CP-001-060-001-02', N'A04', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11760', N'42', N'121', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11761', N'43', N'118', N'100', N'CP-001-001-001-02', N'CP-003-062-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11762', N'44', N'122', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11763', N'45', N'119', N'100', N'CP-001-001-002-02', N'CP-003-062-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11764', N'46', N'123', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11765', N'47', N'120', N'100', N'CP-001-060-001-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11766', N'48', N'129', N'300', N'CP-003-060-001-01', N'CP-004-060-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:01:11.160', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11767', N'49', N'128', N'100', N'CP-004-060-001-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:01:11.163', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11768', N'50', N'127', N'100', N'CP-002-060-004-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:02:34.913', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11769', N'51', N'131', N'100', N'CP-002-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.977', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11770', N'52', N'133', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.977', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11771', N'53', N'130', N'100', N'CP-001-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.980', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11772', N'54', N'132', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.983', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11773', N'55', N'135', N'100', N'CP-002-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:54:26.793', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11774', N'56', N'134', N'100', N'CP-001-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:54:26.793', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11775', N'57', N'137', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:58:34.580', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11776', N'58', N'136', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:58:34.580', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11777', N'59', N'139', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:00:28.997', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11778', N'60', N'138', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:00:29.000', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11779', N'61', N'141', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:04:37.843', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11780', N'62', N'140', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:04:37.843', NULL, NULL)
GO
 
INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11781', N'62', N'140', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'堆垛机出库完成', NULL, N'System', N'2025-06-17 00:29:41.733', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Dt_TaskExecuteDetail] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_Department
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Department]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_Department]
GO
 
CREATE TABLE [dbo].[Sys_Department] (
  [DepartmentId] int  IDENTITY(1,1) NOT NULL,
  [DepartmentName] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [DepartmentCode] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [ParentId] int  NOT NULL,
  [DepartmentType] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [Enable] int  NOT NULL,
  [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_Department] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'组织ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'DepartmentId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'组织名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'DepartmentName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'组织编号',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'DepartmentCode'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'上级组织',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'ParentId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'部门类型',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'DepartmentType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否可用',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'Enable'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'组织架构',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Department'
GO
 
 
-- ----------------------------
-- Records of Sys_Department
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_Department] ON
GO
 
SET IDENTITY_INSERT [dbo].[Sys_Department] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_Dictionary
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Dictionary]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_Dictionary]
GO
 
CREATE TABLE [dbo].[Sys_Dictionary] (
  [DicId] int  IDENTITY(1,1) NOT NULL,
  [Config] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [DBServer] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [DBSql] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [DicName] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [DicNo] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [Enable] tinyint  NULL,
  [OrderNo] int  NULL,
  [ParentId] int  NULL,
  [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [SystemType] int  NOT NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_Dictionary] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'字典ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'DicId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'配置项',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'Config'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据库服务',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'DBServer'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'Sql语句',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'DBSql'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'字典名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'DicName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'字典编号',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'DicNo'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否启用',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'Enable'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'排序号',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'OrderNo'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'父级ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'ParentId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'系统类型',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'SystemType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'字典数据',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Dictionary'
GO
 
 
-- ----------------------------
-- Records of Sys_Dictionary
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_Dictionary] ON
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'{valueField: ''Enable'',
textField: ''Enable'',
 containField: null,
  handler: null }', N'1', NULL, N'是否值', N'enable', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2022-01-03 18:30:18.113')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'{valueField: ''Success'',
 textField: ''Success'', 
 containField: null,
 handler: null }
', NULL, NULL, N'响应状态', N'restatus', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'测试超级管理员', N'2018-06-12 10:21:48.000')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'{valueField: ''LogType'',
 textField: ''LogType'', 
 containField: null,
 handler: null }
', NULL, NULL, N'日志类型', N'log', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2022-04-04 13:21:54.927')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'{valueField: ''Role_Id'',
 textField: ''RoleName'', 
 containField: [''Role_Id'',''RoleName''],
 handler: null }
', NULL, N'SELECT RoleId as ''key'',RoleName as ''value'' FROM Sys_Role WHERE Enable=1', N'角色列表', N'roles', N'1', N'123', N'0', N'sql语句需要key,value列,界面才能绑定数据源', N'10', N'system', N'2024-10-21 10:17:32.357', N'测试超级管理员', N'2018-07-13 15:03:53.000')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'{
 valueField: ''AuditStatus'',
 textField: ''AuditStatus'',
  containField:null 
}', NULL, NULL, N'审核状态', N'audit', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2023-05-08 01:05:44.193')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'{
 valueField: ''Gender'',
 textField: ''Gender'',
  containField:null 
}', NULL, NULL, N'性别', N'gender', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'测试超级管理员', N'2018-07-23 11:10:28.000')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'{
 valueField: ''Enable'',
 textField: ''Enable'',
  containField:null 
}', NULL, NULL, N'启用状态', N'status', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'{
 valueField: ''IsRegregisterPhone'',
 textField: ''IsRegregisterPhone'',
  containField:null 
}', NULL, NULL, N'手机用户', N'isphone', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2020-11-20 23:05:48.303')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', NULL, NULL, N'SELECT RoleId AS id,parentId,RoleId AS [key],RoleName AS value FROM Sys_Role', N'级联角色', N'tree_roles', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2020-11-20 23:08:03.217')
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', NULL, NULL, NULL, N'nav', N'nav', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', NULL, NULL, NULL, N'请求方式', N'请求方式', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', NULL, NULL, NULL, N'定时任务状态', N'定时任务状态', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', NULL, NULL, N'SELECT DepartmentId AS ''key'',DepartmentId AS ''id'',ParentId AS parentId,DepartmentName as ''value'' FROM Sys_Department', N'组织机构', N'组织机构', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', NULL, NULL, NULL, N'日志状态', N'LogState', N'1', NULL, N'0', NULL, N'1', N'超级管理员', N'2024-10-21 10:17:32.357', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Sys_Dictionary] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_DictionaryList
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_DictionaryList]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_DictionaryList]
GO
 
CREATE TABLE [dbo].[Sys_DictionaryList] (
  [DicListId] int  IDENTITY(1,1) NOT NULL,
  [DicName] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [DicValue] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [DicId] int  NOT NULL,
  [Enable] tinyint  NULL,
  [OrderNo] int  NULL,
  [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_DictionaryList] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'字典列表ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'DicListId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据源Text',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'DicName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据源Value',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'DicValue'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据源ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'DicId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否可用',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'Enable'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'排序号',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'OrderNo'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'字典明细',
'SCHEMA', N'dbo',
'TABLE', N'Sys_DictionaryList'
GO
 
 
-- ----------------------------
-- Records of Sys_DictionaryList
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_DictionaryList] ON
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'否', N'0', N'3', NULL, N'2', NULL, N'admin', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-01-03 18:30:18.113')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'是', N'1', N'3', NULL, N'1', NULL, N'xxx', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-01-03 18:30:18.113')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'其他', N'0', N'30', NULL, N'10', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-21 16:49:43.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'成功', N'1', N'30', NULL, N'100', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-21 16:49:43.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'异常', N'2', N'30', NULL, N'50', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-21 16:49:43.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'系统', N'System', N'31', NULL, N'100', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.947')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'登陆', N'Login', N'31', NULL, N'90', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.947')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'新建', N'Add', N'31', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'删除', N'Del', N'31', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'编辑', N'Edit', N'31', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'待审核', N'0', N'35', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'审核通过', N'1', N'35', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'审核中', N'2', N'35', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'异常', N'Exception', N'31', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'男', N'0', N'49', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'测试超级管理员', N'2018-07-23 11:10:28.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'女', N'1', N'49', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'测试超级管理员', N'2018-07-23 11:10:28.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'未启用', N'0', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-16 18:17:47.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'已启用', N'1', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-16 18:17:47.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'已删除', N'2', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-16 18:17:47.000')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'128', N'是', N'1', N'59', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2020-11-20 23:05:48.303')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'129', N'否', N'0', N'59', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2020-11-20 23:05:48.303')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'刷新Token', N'ReplaceToeken', N'31', NULL, N'110', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.937')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'145', N'Info', N'3', N'30', NULL, NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'423', N'是', N'1', N'67', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'424', N'否', N'0', N'67', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'435', N'审核未通过', N'3', N'35', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'436', N'get', N'get', N'70', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'437', N'post', N'post', N'70', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'438', N'正常', N'0', N'71', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'439', N'暂停', N'1', N'71', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'442', N'驳回', N'4', N'35', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'443', N'禁用', N'DisEnable', N'73', N'1', N'1', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'开发', N'2023-07-14 14:17:01.037')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'444', N'启用', N'Enable', N'73', N'1', N'0', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'开发', N'2023-07-14 14:17:01.017')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'449', N'信息', N'Info', N'75', N'0', N'1', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'450', N'成功', N'Sucess', N'75', N'0', N'2', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'451', N'失败', N'Error', N'75', N'0', N'3', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'452', N'1', N'1', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'453', N'2', N'2', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'454', N'3', N'3', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'455', N'4', N'4', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550')
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'456', N'未审核', N'OrderState_Unaudited', N'84', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'457', N'已审核', N'OrderState_Audited', N'84', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Sys_DictionaryList] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_Log
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Log]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_Log]
GO
 
CREATE TABLE [dbo].[Sys_Log] (
  [Id] int  IDENTITY(1,1) NOT NULL,
  [BeginDate] datetime  NULL,
  [ElapsedTime] int  NULL,
  [EndDate] datetime  NULL,
  [RequestParam] varchar(max) COLLATE Chinese_PRC_CI_AS  NULL,
  [ResponseParam] varchar(max) COLLATE Chinese_PRC_CI_AS  NULL,
  [Success] int  NULL,
  [Url] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [UserIP] varchar(20) COLLATE Chinese_PRC_CI_AS  NULL,
  [UserName] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [UserId] int  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_Log] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'开始时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'BeginDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'时长',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'ElapsedTime'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'结束时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'EndDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'请求参数',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'RequestParam'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'响应参数',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'ResponseParam'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'响应状态',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'Success'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'请求地址',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'Url'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户IP',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'UserIP'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'UserName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户主键',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Log',
'COLUMN', N'UserId'
GO
 
 
-- ----------------------------
-- Records of Sys_Log
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_Log] ON
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1', N'2024-10-22 09:13:53.610', N'1114', N'2024-10-22 09:13:54.723', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'2', N'2024-10-22 09:13:54.900', N'495', N'2024-10-22 09:13:55.397', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'3', N'2024-10-22 09:14:10.770', N'11', N'2024-10-22 09:14:10.783', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'4', N'2024-10-22 09:14:10.860', N'11', N'2024-10-22 09:14:10.870', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'5', N'2024-10-22 09:16:50.370', N'47', N'2024-10-22 09:16:50.420', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'6', N'2024-10-22 09:16:50.587', N'62', N'2024-10-22 09:16:50.647', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'7', N'2024-10-22 09:16:55.757', N'25', N'2024-10-22 09:16:55.780', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":175,"rows":[{"id":175,"deviceId":3,"deviceChildCode":"111","deviceProDataBlock":"DB80","deviceProOffset":500.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"IsOccupied","deviceProParamType":"IsOccupied","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":174,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":984.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":173,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":980.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":172,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":952.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":171,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":950.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":170,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":934.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":169,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":930.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":168,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":902.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":167,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":900.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":166,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":884.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":165,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":880.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":164,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":852.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":163,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":850.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":162,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":834.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":161,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":830.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":160,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":802.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":159,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":800.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":158,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":784.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":157,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":780.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":156,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":752.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":155,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":750.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":154,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":734.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":153,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":730.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":152,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":702.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":151,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":700.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":150,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":684.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":149,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":680.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":148,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":652.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":147,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":650.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":146,"deviceId":3,"deviceChildCode":"113","deviceProDataBlock":"DB90","deviceProOffset":634.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceProtocol/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'8', N'2024-10-22 09:17:01.483', N'16', N'2024-10-22 09:17:01.497', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"name":"SC01","jobGroup":"CommonStackerCrane","assemblyName":"WIDESEAWCS_Tasks","className":"CommonStackerCraneJob","intervalSecond":1,"beginTime":null,"endTime":null,"remark":null,"creater":"1","createDate":"2024-10-21 10:18:16","modifier":null,"modifyDate":null},{"id":3,"name":"Line01","jobGroup":"CommonConveyorLine","assemblyName":"WIDESEAWCS_Tasks","className":"CommonConveyorLineJob","intervalSecond":1,"beginTime":null,"endTime":null,"remark":null,"creater":"1","createDate":"2024-10-21 10:18:16","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DispatchInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'9', N'2024-10-22 09:17:06.250', N'22', N'2024-10-22 09:17:06.270', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":20,"rows":[{"id":1,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneStatus","protocolDetailType":"Normal","protocalDetailValue":"1","protocolDetailDes":"设备状态(1:正常)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":2,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneStatus","protocolDetailType":"Fault","protocalDetailValue":"2","protocolDetailDes":"设备状态(2:故障)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":3,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneStatus","protocolDetailType":"EmergencyStop","protocalDetailValue":"3","protocolDetailDes":"设备状态(3:急停)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":4,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"Maintenance","protocalDetailValue":"0","protocolDetailDes":"工作模式(0:维修)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":5,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"Manual","protocalDetailValue":"1","protocolDetailDes":"工作模式(1:手动","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":6,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"SemiAutomatic","protocalDetailValue":"2","protocolDetailDes":"工作模式(2:半自动)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":7,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"Automatic","protocalDetailValue":"3","protocolDetailDes":"工作模式(3:自动)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":8,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"Standby","protocalDetailValue":"0","protocolDetailDes":"作业状态(0:待机)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":9,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"PickUp","protocalDetailValue":"1","protocolDetailDes":"作业状态(1:取货中)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":10,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"PickUpCompleted","protocalDetailValue":"2","protocolDetailDes":"作业状态(2:取货完成)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":11,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"Putting","protocalDetailValue":"4","protocolDetailDes":"作业状态(4:放货中)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":12,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"PutCompleted","protocalDetailValue":"5","protocolDetailDes":"作业状态(5:放货完成)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":13,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"WorkCompleted","protocalDetailValue":"6","protocolDetailDes":"作业状态(6:任务完成)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":14,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestInbound","protocalDetailValue":"1","protocolDetailDes":"1","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":15,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestInNextAddress","protocalDetailValue":"2","protocolDetailDes":"2","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":32,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"ConveyorLineInFinish","protocalDetailValue":"3","protocolDetailDes":"3","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":34,"deviceType":"CommonConveyorLine","deviceProParamName":"IsOccupied","protocolDetailType":"IsOccupied","protocalDetailValue":"0","protocolDetailDes":"0","remark":null,"creater":"1","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":35,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestOutbound","protocalDetailValue":"4","protocolDetailDes":"4","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":36,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestOutNextAddress","protocalDetailValue":"5","protocolDetailDes":"5","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":37,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"ConveyorLineOutFinish","protocalDetailValue":"6","protocolDetailDes":"6","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceProtocolDetail/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'10', N'2024-10-22 13:35:52.117', N'1247', N'2024-10-22 13:35:53.363', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3e20442e-7f2f-471e-b3b5-e9ddc9245d9f\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTcyOTU3NTM1MyIsIm5iZiI6IjE3Mjk1NzUzNTMiLCJleHAiOiIxNzI5NTgyNTUzIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.68BSxRqyPDtO3M9pewWJ9oB5-7bI5zygiEKPF1m3c-Y","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'11', N'2024-10-22 13:35:53.473', N'146', N'2024-10-22 13:35:53.620', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'12', N'2024-10-22 13:35:55.963', N'354', N'2024-10-22 13:35:56.317', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'13', N'2024-10-22 13:36:24.250', N'19', N'2024-10-22 13:36:24.270', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'14', N'2024-10-22 13:36:24.373', N'20', N'2024-10-22 13:36:24.393', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'15', N'2024-10-22 13:38:22.693', N'13', N'2024-10-22 13:38:22.707', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'16', N'2024-10-22 13:38:23.143', N'4', N'2024-10-22 13:38:23.147', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'17', N'2024-10-22 13:38:23.353', N'3', N'2024-10-22 13:38:23.357', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'18', N'2024-10-22 13:38:23.550', N'4', N'2024-10-22 13:38:23.553', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'19', N'2024-10-22 13:38:24.263', N'3', N'2024-10-22 13:38:24.267', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'20', N'2024-11-11 14:29:57.683', N'291', N'2024-11-11 14:29:57.973', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTMwNjU5NyIsIm5iZiI6IjE3MzEzMDY1OTciLCJleHAiOiIxNzMxMzEzNzk3IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.XxwzchRRFqyxU9WlEdF3Jjlq0v42xTkQA_O8JqnEwRE","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'21', N'2024-11-11 14:30:01.190', N'723', N'2024-11-11 14:30:01.913', N'{"QueryString":"","BodyData":"[\"deviceType\",\"deviceStatus\",\"devicePlcType\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceTcp","value":"汇川Tcp"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'22', N'2024-11-11 14:30:06.140', N'69', N'2024-11-11 14:30:06.207', N'{"QueryString":"","BodyData":"[4]"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/del', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'23', N'2024-11-11 14:30:09.790', N'50', N'2024-11-11 14:30:09.840', N'{"QueryString":"","BodyData":"[\"deviceType\",\"jobAssembly\",\"jobClassName\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'24', N'2024-11-11 14:30:25.090', N'86', N'2024-11-11 14:30:25.177', N'{"QueryString":"","BodyData":"{\"mainData\":{\"name\":\"Log\",\"jobGroup\":\"OtherDevice\",\"assemblyName\":\"WIDESEAWCS_Tasks\",\"className\":\"LogJob\",\"intervalSecond\":1,\"beginTime\":\"\",\"endTime\":\"\",\"remark\":\"\",\"id\":\"1006\"},\"detailData\":null,\"delKeys\":null}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/DispatchInfo/update', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'25', N'2024-11-11 14:44:07.617', N'1231', N'2024-11-11 14:44:08.847', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":3,\"PalletCode\":\"A0000082\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-001-003-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-001-003-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:44:06.3228234+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'26', N'2024-11-11 14:44:11.563', N'1221', N'2024-11-11 14:44:12.783', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceTcp","value":"汇川Tcp"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'27', N'2024-11-11 14:44:18.973', N'3220', N'2024-11-11 14:44:22.193', N'{"QueryString":"?taskNum=3","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'28', N'2024-11-11 14:44:24.210', N'104', N'2024-11-11 14:44:24.313', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'29', N'2024-11-11 14:44:41.580', N'32', N'2024-11-11 14:44:41.613', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":4,\"PalletCode\":\"A0000017\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-002-002-004-01\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-002-002-004-01\",\"NextAddress\":\"001-001-001\",\"Depth\":1,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:44:40.8925669+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'30', N'2024-11-11 14:45:06.150', N'41', N'2024-11-11 14:45:06.190', N'{"QueryString":"?taskNum=4","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/StackCraneTaskCompleted', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'31', N'2024-11-11 14:51:06.910', N'645', N'2024-11-11 14:51:07.553', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":5,\"PalletCode\":\"A0000015\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-001-002-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-001-002-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:51:06.0966165+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'32', N'2024-11-11 14:51:16.987', N'122', N'2024-11-11 14:51:17.110', N'{"QueryString":"?taskNum=5","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/TaskCancel', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'33', N'2024-11-11 14:53:25.977', N'821', N'2024-11-11 14:53:26.797', N'{"QueryString":"?taskNum=5","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【5】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/TaskExecuteDetail/GetDetailDatas', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'34', N'2024-11-11 14:54:00.737', N'183', N'2024-11-11 14:54:00.920', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":6,\"PalletCode\":\"A0000012\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-002-003-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-002-003-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:54:00.2584421+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'35', N'2024-11-11 14:54:08.380', N'81', N'2024-11-11 14:54:08.463', N'{"QueryString":"?taskNum=6","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/StackCraneTaskCompleted', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'36', N'2024-11-11 15:03:54.623', N'199', N'2024-11-11 15:03:54.823', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":7,\"PalletCode\":\"A0000018\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-002-004-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-002-004-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T15:03:54.5410077+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'37', N'2024-11-11 15:04:08.940', N'89', N'2024-11-11 15:04:09.027', N'{"QueryString":"?taskNum=7","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/StackCraneTaskCompleted', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1020', N'2024-11-12 11:42:47.760', N'236', N'2024-11-12 11:42:47.997', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTM4Mjk2NyIsIm5iZiI6IjE3MzEzODI5NjciLCJleHAiOiIxNzMxMzkwMTY3IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.6Ki6g0gTQ6HGbXRSMKyxhnAOxZrBNvSwiwrWTNuqTCw","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1021', N'2024-11-12 11:42:51.860', N'573', N'2024-11-12 11:42:52.433', N'{"QueryString":"","BodyData":"[\"deviceType\",\"deviceStatus\",\"devicePlcType\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceTcp","value":"汇川Tcp"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1022', N'2025-05-21 17:26:27.047', N'5022', N'2025-05-21 17:26:32.070', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAkNJREFUaIHVWduRgzAMlG7oho6umZBm0lHq0X0kcEZI1sM2ITvDhOCXvJZXwiAREQAAIsL79iuRtd9qh3RhVq6waD+jB0DEdNtPkwMwgCBOyBUm2YLuBJWERL2nxdsifUbGOV2DRutK7/6HaxDH6PVY+695iVYmepvlQV5N4SuHd9kIusUIeszz4dnv8xnqY7PpPRcuA+kwX5LjXXlEBFiUwuV1rSTVjJOIKRElic/FuxUnq7OQEaXXLOyX3UfIWcmwSFPtEubjXfCDBjVHkuX/l4iAbiRuK6+Bmqd47WxNOzYP6hliOSGaHkkovaS2jTwTjZCoaisRkaejbPSRyGkVakt/JL1Z771YSZu0TjICfRikkRxvBNM8oJxXFGt/U20AL0aFeC+k7N27Ba16YphvEbaM11iGereYlufwZxF0zaSzW8rKfj05T9kWEbeLP4uimwdxclqEmBOieVDped7JRxJeIrI9KBNOR2kNwJ68khwiOlxlPf7Mwk6km7Hs//YU6Vr2XBIjlfXAgaARZzJb33d0kaSRwreel5iWKI2vcfRDroz+aCjJkYz2EiPa8O5PW+A0QWcdmEVW8THP6SONrA1aWXeCRn1+GYna2EPPpHu0y+Qv0fo1iTn9yLWGiH7USJAmzJNGT1sAB0EjoxqH9sLJ4d2OZb3qsapA3vbLNYhnp+bLXAftuLJuHTyIZ6AWWg6uWl8ktdeMyFcLDaoH8Urf/mW0FVUN+gQ51iq3aGKmrTuKnWWYtSi8XIpS0bY1/AFLZL835GbUXQAAAABJRU5ErkJggg==","uuid":"653e05d9-d8f5-477d-8f77-26bb1a10ba21"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1023', N'2025-05-29 15:41:01.700', N'8624', N'2025-05-29 15:41:10.323', N'{"QueryString":"","BodyData":"{\n  \"car_id\": 0,\n  \"areaName\": \"string\",\n  \"type\": 0,\n  \"user\": \"string\"\n}"}', N'{"code":400,"message":"未定义申请类型[type:0]"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1024', N'2025-05-29 15:41:18.537', N'31', N'2025-05-29 15:41:18.567', N'{"QueryString":"","BodyData":"{\n  \"car_id\": 0,\n  \"areaName\": \"string\",\n  \"type\": 1,\n  \"user\": \"string\"\n}"}', N'{"code":200,"message":"success"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1025', N'2025-05-29 15:41:32.750', N'55', N'2025-05-29 15:41:32.807', N'{"QueryString":"","BodyData":"{\n  \"car_id\": 0,\n  \"areaName\": \"string\",\n  \"type\": 1,\n  \"user\": \"string\"\n}"}', N'{"code":200,"message":"success"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1026', N'2025-05-29 15:42:05.120', N'24', N'2025-05-29 15:42:05.143', N'{"QueryString":"","BodyData":"{\n  \"car_id\": 0,\n  \"areaName\": \"string\",\n  \"type\": 1,\n  \"user\": \"string\"\n}"}', N'{"code":200,"message":"success"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1027', N'2025-05-29 15:42:36.200', N'13230', N'2025-05-29 15:42:49.430', N'{"QueryString":"","BodyData":"{\n  \"car_id\": 0,\n  \"areaName\": \"string\",\n  \"type\": 1,\n  \"user\": \"string\"\n}"}', N'{"code":400,"message":"未找到输送线设备信息"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1028', N'2025-06-03 16:44:08.153', N'2911', N'2025-06-03 16:44:11.067', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":4,\"PalletCode\":\"A0000062\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-001-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T16:44:00.1864351+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1029', N'2025-06-03 17:22:02.700', N'6593', N'2025-06-03 17:22:09.293', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":6,\"PalletCode\":\"A0000021\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-002-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T17:21:17.2475311+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1030', N'2025-06-03 17:25:20.357', N'6507', N'2025-06-03 17:25:26.863', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":7,\"PalletCode\":\"1\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-003-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-003-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T17:25:01.9714596+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1031', N'2025-06-03 17:28:35.777', N'7120', N'2025-06-03 17:28:42.897', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":8,\"PalletCode\":\"1111\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-004-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-004-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T17:28:20.8091327+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1032', N'2025-06-12 15:08:36.107', N'5947', N'2025-06-12 15:08:42.053', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":81,\"PalletCode\":\"1111\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FL-002-061-001-01\",\"TargetAddress\":\"FL-001-001-001-02\",\"CurrentAddress\":\"FL-002-061-001-01\",\"NextAddress\":\"FL-001-001-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-12T15:08:12.4997132+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://192.168.100.22:9291/api/Task/ReceiveTask/', N'192.168.100.22', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1033', N'2025-06-16 13:57:07.473', N'3272', N'2025-06-16 13:57:10.747', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAj1JREFUaIHtWU2awiAMDXOccp9Z6GEcD9Mu5j7tdXAxHxjTJIQ/v476NloKIby+JJS6EEKAN8biPZzWVbz/9SwnRtuonUMjBwDAvbuCcihWEH5SPZTRit4+7OwFgnmaaFMxJBu1tnv4VDvfjqBREx0BNQ8OLJ2OjpG+Z5M0jUkp62vl0jkXwzlbVtOYq7ungUt7HcHrsMwfoSZpKQFy7dykzrlETrzO2XZX90BObCv1sQcW7/dlXpvQyjwmApvHSmLHKUQA6ErSlMmpx6rkqo2i9allolcfewlZQjDwwrV+tL/WB4AQZF24xjxWD7YrtadxGfXQPpIP1oVLY3ZzSknammdiX3yPC6XYNk9TUZK0JGsuXKL/p3V9+C/1l2AOMTwRdw8j/G0f0jVWj7WCuaurVgBHjtZfQ1EOKjEcISVsC87f232ssdRTtbSCJajHmzPNOy0J2wqNHI0wbT1sDmqVZS9iaOIuqWoSSpVlCjEpxjlYyFm8L1bp/Dvl3BwCk4I41rlKYNkgsuOESqUpyFKJeuSjRFDJlp3uNU7rypb2xXs4b9uufecEQ0RJeHHQ3r0wufE//U2+hRBCLTnJCLMJjJinCc7bVkQQB6t6rFsRK4afSVNyuAXk1NHjbR4j+qAJI90bdpDSAPjp51brWdEwgjjH/uOh3MseuWpzW/yKfaqOXEsXfkTlWH0SFXTERWno5S+18/lwmMFTPj2PwvCPhgBtZR7L8RXyEochOWj04p9J7icHIdBXmMV7uAHRqUEsqQeiNwAAAABJRU5ErkJggg==","uuid":"714add2f-c2c6-4061-a635-488a9d36e747"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1034', N'2025-06-16 13:57:19.947', N'480', N'2025-06-16 13:57:20.430', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"714add2f-c2c6-4061-a635-488a9d36e747\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA1MzQ0MCIsIm5iZiI6IjE3NTAwNTM0NDAiLCJleHAiOiIxNzUwMDYwNjQwIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.DMNsi6agZk4nBvQlbKfLwULHgwgiPx3Cu3SB4-4UnqI","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1035', N'2025-06-16 13:57:21.990', N'243', N'2025-06-16 13:57:22.230', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1036', N'2025-06-16 13:57:33.147', N'1683', N'2025-06-16 13:57:34.827', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1037', N'2025-06-16 13:57:32.123', N'3648', N'2025-06-16 13:57:35.770', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1038', N'2025-06-16 13:58:00.510', N'1393', N'2025-06-16 13:58:01.903', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":83,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-002-062-001-01\",\"TargetAddress\":\"CP-001-001-001-02\",\"CurrentAddress\":\"CP-002-062-001-01\",\"NextAddress\":\"CP-001-001-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T13:57:48.5280157+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1039', N'2025-06-16 14:11:39.693', N'558', N'2025-06-16 14:11:40.253', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1040', N'2025-06-16 14:11:45.290', N'75', N'2025-06-16 14:11:45.363', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1041', N'2025-06-16 14:11:47.323', N'178', N'2025-06-16 14:11:47.500', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1042', N'2025-06-16 14:11:47.503', N'505', N'2025-06-16 14:11:48.007', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1043', N'2025-06-16 14:19:00.373', N'2523', N'2025-06-16 14:19:02.893', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":85,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-002-062-001-01\",\"TargetAddress\":\"CP-001-001-002-02\",\"CurrentAddress\":\"CP-002-062-001-01\",\"NextAddress\":\"CP-001-001-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T14:18:32.0174605+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1044', N'2025-06-16 14:20:02.230', N'561', N'2025-06-16 14:20:02.793', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1045', N'2025-06-16 14:20:12.920', N'16741', N'2025-06-16 14:20:29.663', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1046', N'2025-06-16 14:20:50.183', N'960', N'2025-06-16 14:20:51.143', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1047', N'2025-06-16 14:21:00.903', N'552', N'2025-06-16 14:21:01.457', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1048', N'2025-06-16 14:21:08.590', N'625', N'2025-06-16 14:21:09.213', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1049', N'2025-06-16 14:21:36.560', N'498', N'2025-06-16 14:21:37.057', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1050', N'2025-06-16 14:21:43.133', N'15475', N'2025-06-16 14:21:58.607', N'{"QueryString":"?taskNum=83","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【83】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1051', N'2025-06-16 14:27:52.263', N'547', N'2025-06-16 14:27:52.810', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1052', N'2025-06-16 15:03:26.557', N'3506', N'2025-06-16 15:03:30.063', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1053', N'2025-06-16 15:03:47.983', N'218', N'2025-06-16 15:03:48.200', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1054', N'2025-06-16 15:03:53.073', N'19460', N'2025-06-16 15:04:12.530', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1055', N'2025-06-16 15:50:56.070', N'31288', N'2025-06-16 15:51:27.360', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1056', N'2025-06-16 15:51:55.660', N'503', N'2025-06-16 15:51:56.163', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1057', N'2025-06-16 15:51:58.200', N'1281', N'2025-06-16 15:51:59.480', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA2MDMxOSIsIm5iZiI6IjE3NTAwNjAzMTkiLCJleHAiOiIxNzUwMDY3NTE5IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.vu2KEQnd2VAj_YR7MUx3JUBxJgbsfRRW1y-T9KiAJZ4","devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/replaceToken', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1058', N'2025-06-16 15:52:02.247', N'292', N'2025-06-16 15:52:02.540', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1059', N'2025-06-16 15:54:08.870', N'5118', N'2025-06-16 15:54:13.987', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【83】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1060', N'2025-06-16 15:54:42.450', N'540', N'2025-06-16 15:54:42.990', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【83】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1061', N'2025-06-16 15:54:55.167', N'383', N'2025-06-16 15:54:55.550', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1062', N'2025-06-16 15:55:06.763', N'729', N'2025-06-16 15:55:07.490', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【83】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1063', N'2025-06-16 15:55:00.277', N'8974', N'2025-06-16 15:55:09.250', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1064', N'2025-06-16 15:55:20.027', N'8068', N'2025-06-16 15:55:28.093', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1065', N'2025-06-16 15:56:01.980', N'420', N'2025-06-16 15:56:02.400', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1066', N'2025-06-16 16:13:44.360', N'3002', N'2025-06-16 16:13:47.363', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1067', N'2025-06-16 16:14:50.820', N'39409', N'2025-06-16 16:15:30.230', N'{"QueryString":"?taskNum=83","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【83】,异常信息:由于目标计算机积极拒绝,无法连接。 [::ffff:127.0.0.1]:9290 (127.0.0.1:9290)","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1068', N'2025-06-16 16:25:40.087', N'3004', N'2025-06-16 16:25:43.090', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1069', N'2025-06-16 16:26:07.017', N'14035', N'2025-06-16 16:26:21.050', N'{"QueryString":"?taskNum=83","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【83】,异常信息:由于目标计算机积极拒绝,无法连接。 [::ffff:127.0.0.1]:9290 (127.0.0.1:9290)","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1070', N'2025-06-16 16:26:51.150', N'299', N'2025-06-16 16:26:51.447', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1071', N'2025-06-16 16:27:03.863', N'721', N'2025-06-16 16:27:04.583', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1072', N'2025-06-16 16:27:04.583', N'249', N'2025-06-16 16:27:04.833', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":9,"rows":[{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1073', N'2025-06-16 16:27:24.730', N'241', N'2025-06-16 16:27:24.970', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1074', N'2025-06-16 16:27:43.007', N'264', N'2025-06-16 16:27:43.270', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1075', N'2025-06-16 16:28:30.783', N'1751', N'2025-06-16 16:28:32.537', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1076', N'2025-06-16 16:29:23.147', N'317', N'2025-06-16 16:29:23.463', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1077', N'2025-06-16 16:29:24.160', N'292', N'2025-06-16 16:29:24.450', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1078', N'2025-06-16 16:29:27.203', N'369', N'2025-06-16 16:29:27.573', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":10,"rows":[{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1079', N'2025-06-16 16:30:16.163', N'267', N'2025-06-16 16:30:16.430', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":10,"rows":[{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1080', N'2025-06-16 16:39:30.197', N'1816', N'2025-06-16 16:39:32.013', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":86,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-001-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:39:20.7566581+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1081', N'2025-06-16 16:41:31.023', N'367', N'2025-06-16 16:41:31.390', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1082', N'2025-06-16 16:42:25.067', N'1086', N'2025-06-16 16:42:26.153', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1083', N'2025-06-16 16:42:00.143', N'28339', N'2025-06-16 16:42:28.483', N'{"QueryString":"?taskNum=86","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【86】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1084', N'2025-06-16 16:42:55.827', N'3357', N'2025-06-16 16:42:59.183', N'{"QueryString":"?taskNum=86","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【86】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1085', N'2025-06-16 16:43:13.233', N'450', N'2025-06-16 16:43:13.687', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1086', N'2025-06-16 16:43:51.000', N'392', N'2025-06-16 16:43:51.390', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1087', N'2025-06-16 16:45:13.220', N'2247', N'2025-06-16 16:45:15.467', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":87,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-001-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:45:07.3797958+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1088', N'2025-06-16 16:45:32.313', N'531', N'2025-06-16 16:45:32.843', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":17,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1089', N'2025-06-16 16:47:39.047', N'548', N'2025-06-16 16:47:39.593', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":17,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1090', N'2025-06-16 16:49:16.397', N'2328', N'2025-06-16 16:49:18.727', N'{"QueryString":"?taskNum=87","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1091', N'2025-06-16 16:50:58.263', N'1120', N'2025-06-16 16:50:59.380', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1092', N'2025-06-16 16:51:17.077', N'599', N'2025-06-16 16:51:17.673', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1093', N'2025-06-16 16:51:20.630', N'481', N'2025-06-16 16:51:21.113', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1094', N'2025-06-16 16:51:26.257', N'611', N'2025-06-16 16:51:26.867', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":11,"rows":[{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1095', N'2025-06-16 16:52:19.437', N'2541', N'2025-06-16 16:52:21.977', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":88,\"PalletCode\":\"5\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-002-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:52:08.4476875+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1096', N'2025-06-16 16:52:40.083', N'674', N'2025-06-16 16:52:40.760', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":18,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1097', N'2025-06-16 16:54:18.977', N'4263', N'2025-06-16 16:54:23.240', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":18,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1098', N'2025-06-16 16:54:35.300', N'2273', N'2025-06-16 16:54:37.573', N'{"QueryString":"?taskNum=88","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1099', N'2025-06-16 16:54:46.577', N'313', N'2025-06-16 16:54:46.890', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1100', N'2025-06-16 16:54:55.247', N'189', N'2025-06-16 16:54:55.437', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1101', N'2025-06-16 16:56:39.443', N'1869', N'2025-06-16 16:56:41.310', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":89,\"PalletCode\":\"6\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-002-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-002-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:56:32.6365692+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1102', N'2025-06-16 16:57:30.507', N'222', N'2025-06-16 16:57:30.730', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1103', N'2025-06-16 16:57:32.553', N'246', N'2025-06-16 16:57:32.800', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1104', N'2025-06-16 16:57:38.673', N'37074', N'2025-06-16 16:58:15.750', N'{"QueryString":"?taskNum=89","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【89】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1105', N'2025-06-16 16:58:28.993', N'245', N'2025-06-16 16:58:29.240', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1106', N'2025-06-16 16:59:42.487', N'233', N'2025-06-16 16:59:42.720', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1107', N'2025-06-16 17:00:17.803', N'1510', N'2025-06-16 17:00:19.313', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":90,\"PalletCode\":\"7\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-003-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-003-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:00:09.8153953+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1108', N'2025-06-16 17:00:29.080', N'288', N'2025-06-16 17:00:29.367', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1109', N'2025-06-16 17:00:43.430', N'314', N'2025-06-16 17:00:43.747', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1110', N'2025-06-16 17:00:33.180', N'24161', N'2025-06-16 17:00:57.340', N'{"QueryString":"?taskNum=90","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【90】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1111', N'2025-06-16 17:02:38.977', N'282', N'2025-06-16 17:02:39.260', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1112', N'2025-06-16 17:03:25.737', N'1842', N'2025-06-16 17:03:27.580', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":91,\"PalletCode\":\"8\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-003-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-003-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:03:20.1450592+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1113', N'2025-06-16 17:03:44.760', N'315', N'2025-06-16 17:03:45.077', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1114', N'2025-06-16 17:05:03.123', N'2913', N'2025-06-16 17:05:06.037', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1115', N'2025-06-16 17:05:08.730', N'292', N'2025-06-16 17:05:09.023', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1116', N'2025-06-16 17:05:17.450', N'252', N'2025-06-16 17:05:17.700', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1117', N'2025-06-16 17:06:06.903', N'2415', N'2025-06-16 17:06:09.320', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1118', N'2025-06-16 17:06:40.640', N'1308', N'2025-06-16 17:06:41.947', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":92,\"PalletCode\":\"9\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-004-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-004-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:06:32.2997006+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1119', N'2025-06-16 17:06:56.990', N'276', N'2025-06-16 17:06:57.267', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":22,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1120', N'2025-06-16 17:07:02.097', N'17764', N'2025-06-16 17:07:19.860', N'{"QueryString":"?taskNum=92","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【92】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1121', N'2025-06-16 17:07:27.050', N'258', N'2025-06-16 17:07:27.310', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1122', N'2025-06-16 17:07:33.197', N'241', N'2025-06-16 17:07:33.440', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":3206,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":"admin","modifyDate":"2025-06-16 17:07:02"},{"taskId":3205,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":"WMS","modifyDate":"2025-06-16 16:54:36"},{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1123', N'2025-06-16 17:07:42.883', N'195', N'2025-06-16 17:07:43.080', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1124', N'2025-06-16 17:25:50.713', N'962', N'2025-06-16 17:25:51.673', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1125', N'2025-06-16 17:25:54.907', N'5691', N'2025-06-16 17:26:00.597', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA2NTk2MCIsIm5iZiI6IjE3NTAwNjU5NjAiLCJleHAiOiIxNzUwMDczMTYwIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.iUTVE0BoKtvZAk7tS3zEzdHB7F8zIKgqOqwRTetu8tM","devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/replaceToken', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1126', N'2025-06-16 17:29:59.143', N'2118', N'2025-06-16 17:30:01.260', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":93,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-002-062-001-01\",\"TargetAddress\":\"CP-002-001-001-01\",\"CurrentAddress\":\"CP-002-062-001-01\",\"NextAddress\":\"CP-002-001-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:29:53.6221591+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1127', N'2025-06-16 17:30:34.197', N'678', N'2025-06-16 17:30:34.873', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":23,"taskNum":93,"palletCode":"10","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-001-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:30:00","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1128', N'2025-06-16 17:39:58.863', N'4439', N'2025-06-16 17:40:03.300', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":95,\"PalletCode\":\"12\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-004-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-004-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:39:53.0894969+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1129', N'2025-06-16 17:41:14.340', N'1751', N'2025-06-16 17:41:16.090', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":96,\"PalletCode\":\"13\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-004-060-001-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-004-060-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:41:04.1287565+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1130', N'2025-06-16 17:46:39.050', N'808', N'2025-06-16 17:46:39.857', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":25,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1131', N'2025-06-16 17:48:56.040', N'525', N'2025-06-16 17:48:56.567', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":25,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1132', N'2025-06-16 17:49:00.680', N'19582', N'2025-06-16 17:49:20.260', N'{"QueryString":"?taskNum=95","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1133', N'2025-06-16 17:49:22.680', N'338', N'2025-06-16 17:49:23.017', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1134', N'2025-06-16 17:49:26.780', N'345', N'2025-06-16 17:49:27.127', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1135', N'2025-06-16 17:49:30.860', N'17017', N'2025-06-16 17:49:47.880', N'{"QueryString":"?taskNum=96","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1136', N'2025-06-16 17:49:49.857', N'379', N'2025-06-16 17:49:50.237', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1137', N'2025-06-16 17:49:52.923', N'360', N'2025-06-16 17:49:53.283', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1138', N'2025-06-16 17:51:01.290', N'1775', N'2025-06-16 17:51:03.063', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":97,\"PalletCode\":\"15\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-003-060-001-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-003-060-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:50:54.2383909+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1139', N'2025-06-16 17:52:04.623', N'379', N'2025-06-16 17:52:05.003', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":27,"taskNum":97,"palletCode":"15","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:51:02","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1140', N'2025-06-16 17:52:31.807', N'2397', N'2025-06-16 17:52:34.207', N'{"QueryString":"?taskNum=97","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1141', N'2025-06-16 17:52:40.200', N'355', N'2025-06-16 17:52:40.553', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1142', N'2025-06-16 17:53:00.630', N'398', N'2025-06-16 17:53:01.027', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1143', N'2025-06-16 17:53:36.467', N'2379', N'2025-06-16 17:53:38.847', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":98,\"PalletCode\":\"14\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-004-060-002-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-004-060-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:53:27.8422505+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1144', N'2025-06-16 17:54:56.440', N'1811', N'2025-06-16 17:54:58.250', N'{"QueryString":"?taskNum=98","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1145', N'2025-06-16 17:55:03.240', N'396', N'2025-06-16 17:55:03.637', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1146', N'2025-06-16 17:55:07.347', N'566', N'2025-06-16 17:55:07.910', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":19,"rows":[{"taskId":3212,"taskNum":98,"palletCode":"14","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:53:37","modifier":"WMS","modifyDate":"2025-06-16 17:54:57"},{"taskId":3211,"taskNum":97,"palletCode":"15","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:51:02","modifier":"WMS","modifyDate":"2025-06-16 17:52:33"},{"taskId":3210,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":"admin","modifyDate":"2025-06-16 17:49:31"},{"taskId":3209,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":"admin","modifyDate":"2025-06-16 17:49:01"},{"taskId":3208,"taskNum":94,"palletCode":"11","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-002-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:36:27","modifier":"admin","modifyDate":"2025-06-16 17:37:17"},{"taskId":3207,"taskNum":93,"palletCode":"10","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-001-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:30:00","modifier":"admin","modifyDate":"2025-06-16 17:31:32"},{"taskId":3206,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":"admin","modifyDate":"2025-06-16 17:07:02"},{"taskId":3205,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":"WMS","modifyDate":"2025-06-16 16:54:36"},{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1147', N'2025-06-16 17:55:30.937', N'2393', N'2025-06-16 17:55:33.330', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":99,\"PalletCode\":\"16\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-003-060-002-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-003-060-002-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:55:24.0442283+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1148', N'2025-06-16 17:55:55.597', N'1918', N'2025-06-16 17:55:57.517', N'{"QueryString":"?taskNum=99","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1149', N'2025-06-16 17:59:54.597', N'488', N'2025-06-16 17:59:55.083', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1150', N'2025-06-16 17:59:58.187', N'18186', N'2025-06-16 18:00:16.373', N'{"QueryString":"?taskNum=91","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【91】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1151', N'2025-06-16 18:00:20.600', N'526', N'2025-06-16 18:00:21.127', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1152', N'2025-06-16 18:00:22.200', N'467', N'2025-06-16 18:00:22.667', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1153', N'2025-06-16 18:00:44.137', N'3618', N'2025-06-16 18:00:47.757', N'{"QueryString":"?taskNum=90","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【90】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1154', N'2025-06-16 18:01:53.007', N'5930', N'2025-06-16 18:01:58.937', N'{"QueryString":"?taskNum=89","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":"任务完成异常,任务号:【89】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1155', N'2025-06-16 18:02:02.853', N'498', N'2025-06-16 18:02:03.350', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1156', N'2025-06-16 18:02:04.377', N'336', N'2025-06-16 18:02:04.713', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1157', N'2025-06-16 18:02:09.497', N'218', N'2025-06-16 18:02:09.713', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":23,"rows":[{"taskId":3213,"taskNum":99,"palletCode":"16","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:55:32","modifier":"WMS","modifyDate":"2025-06-16 17:55:56"},{"taskId":3212,"taskNum":98,"palletCode":"14","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:53:37","modifier":"WMS","modifyDate":"2025-06-16 17:54:57"},{"taskId":3211,"taskNum":97,"palletCode":"15","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:51:02","modifier":"WMS","modifyDate":"2025-06-16 17:52:33"},{"taskId":3210,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":"admin","modifyDate":"2025-06-16 17:49:31"},{"taskId":3209,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":"admin","modifyDate":"2025-06-16 17:49:01"},{"taskId":3208,"taskNum":94,"palletCode":"11","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-002-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:36:27","modifier":"admin","modifyDate":"2025-06-16 17:37:17"},{"taskId":3207,"taskNum":93,"palletCode":"10","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-001-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:30:00","modifier":"admin","modifyDate":"2025-06-16 17:31:32"},{"taskId":3206,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":"admin","modifyDate":"2025-06-16 17:07:02"},{"taskId":3214,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":"admin","modifyDate":"2025-06-16 17:59:59"},{"taskId":3215,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":"admin","modifyDate":"2025-06-16 18:00:45"},{"taskId":3216,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":"admin","modifyDate":"2025-06-16 18:01:56"},{"taskId":3205,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":"WMS","modifyDate":"2025-06-16 16:54:36"},{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1158', N'2025-06-16 18:02:17.160', N'1679', N'2025-06-16 18:02:18.837', N'{"QueryString":"?taskNum=86","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":"任务完成异常,任务号:【86】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1159', N'2025-06-16 18:02:20.757', N'296', N'2025-06-16 18:02:21.053', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1160', N'2025-06-16 18:02:21.053', N'244', N'2025-06-16 18:02:21.300', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1161', N'2025-06-16 18:02:23.030', N'349', N'2025-06-16 18:02:23.377', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1162', N'2025-06-16 18:10:07.143', N'341', N'2025-06-16 18:10:07.487', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1163', N'2025-06-16 21:40:54.480', N'42456', N'2025-06-16 21:41:36.937', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":103,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0303332+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":100,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0342962+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":104,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0370424+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":101,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0399879+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":105,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0419951+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":102,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"A04\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"A04\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0438301+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1164', N'2025-06-16 21:44:20.150', N'2131', N'2025-06-16 21:44:22.280', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":109,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1091615+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":106,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.111438+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":110,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1135949+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":107,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1154685+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":111,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1166929+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":108,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"A04\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"A04\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1179025+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":false,"code":0,"message":"有重复任务","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1165', N'2025-06-16 21:57:44.387', N'26633', N'2025-06-16 21:58:11.020', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":115,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.370193+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":112,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3742335+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":116,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3770143+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":113,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3800713+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":117,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3822595+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":114,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"A04\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"A04\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3839388+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1166', N'2025-06-16 21:58:28.300', N'559', N'2025-06-16 21:58:28.860', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"message":"授权未通过","status":false,"code":401}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1167', N'2025-06-16 21:58:31.407', N'16256', N'2025-06-16 21:58:47.663', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAdVJREFUaIHlWdGOxCAI1I3/3fbLuZdzYysKI6i93CSb3XZxQBxR20CTEc6g/l+y3YFIRBR+Ea8Y6PheumIm90x8youyA/GKt28r3pYcrl/svVJB2ehtndmJz/OGNTnxitVIeKnQglYMUmz/XkG9/sYr+isIhXetQ3xKoINqBUlkdND3Xv4tJbW0lyAFnzkQpXOcPdXcFqteghBibXuOIweFjKx3DC0kLSFCWnJwW4dR3pLHokbEX1WDNJgx0lzb/BkBWtNa9klj9EQv6NHltMeLTD+tL63v1DIaXVXQzkjwUsIoqhrUAiJ1rggjPNqVTGrnMVi3GoTKWGPPJceiTiQ5LQ4E7BSz1IsSLeVYC29PoRZ+DuophgCdUk8gtVB7Kn/+p41LNcWQVcuanLeh+TxIg2pb3tkgSqO68iwG7cTzUcO6B5J2z9riavEv1abcHjnHpZEgueCkwLzQ6pymw9kGUVBaIW2vWuRxSEUhPu5QExUncktCekv2lod53KuOna9fwhkq/9I1x+EWz1Cjl7y/8ohD4ojhDPSUsif+/DPuGVm32nu3t3BOnSuzp+KKxKk8aAJZUZe8faj6NcMxGsROiCviojhcsHLK5t+wR0uQK5Zlb64fDf7eF+1N0W4AAAAASUVORK5CYII=","uuid":"faa5065c-ab73-402c-b7d2-5610d92e3bd0"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1168', N'2025-06-16 21:58:50.487', N'104', N'2025-06-16 21:58:50.590', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAi5JREFUaIHdWV2SwiAMDh1Ps72PD/Uwbg+zPux96HXYh504KRKSQNDqN+NMqySB/HwEhKQAfINqjGacVb9WZ6ttSWeTVu/JjFicl82QUkrwAQhrgHS1L0WSMzuodSLviskqwDknrKF7MhqENTzYGmq7tU5fwRsS6Jx6Ng0KtsQwKlI5Ycl9aumd8CFfID7f5nknsMS4e9c4BXXksiW79PuaDW1A8vKzBrFK0rlzLufNZIDKX84b/Px+AUDZUfcJMXzSmp2So3EM+1vuoNwpFLWFcTqoTC2TcKI1mKPfmT0AZBcbsRNoHVpCuqYuTqutx7LWu4OQaEu4nDe1oTwDcUwtMzldLWM04yyOn/IaXWJ8iDxyR80Q6qmROOdoHEc/kj1qU/quByxJS7uXycgaVARNx5egaTk4tPBXuqb/EkPFPd6nsvT5Ns8m53CwOqe3J0P5CV/oVifxBZ1QqaEs6eF6oBHwJPdiiZUcZIm+taRqeih6z4EtfdCuxDhYFulVUlq0ZKGlHE+eZyiupDCjtGU2+kxn0X8vMQ3vAPBZwXXJUvcMUI5o9xlKccTQ4ASgdw4HKm/VNaKX8SR/84VZC5YYq72NFOGXXqNwF06l92dB+y/KM7DLoDxSJjJzajK16OmqbYYE5NeYnwTNeg79t8/Ia1yt7qllF/G6a5Ewkpy1uicc6NU3tNwTHxqe9ftOHIVzleZ8aA7yQg+XPaVR9MSIlqCGQziIW/QrDrI5/gAO8cuRMeSxvAAAAABJRU5ErkJggg==","uuid":"9f4db46d-02dc-4f2a-92f1-b9802ed67156"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1169', N'2025-06-16 21:58:51.487', N'285', N'2025-06-16 21:58:51.773', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"faa5065c-ab73-402c-b7d2-5610d92e3bd0\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA4MjMzMSIsIm5iZiI6IjE3NTAwODIzMzEiLCJleHAiOiIxNzUwMDg5NTMxIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.5SUy6VaEgXF89SfFVeXtKmnlzQ5mrDX0UXVzVXC5j8c","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1170', N'2025-06-16 21:58:53.557', N'143', N'2025-06-16 21:58:53.700', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1171', N'2025-06-16 21:58:59.763', N'2075', N'2025-06-16 21:59:01.837', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":36,"taskNum":115,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":37,"taskNum":112,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"A01","currentAddress":"CP-001-001-001-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":38,"taskNum":116,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":39,"taskNum":113,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"A01","currentAddress":"CP-001-001-002-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":40,"taskNum":117,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":41,"taskNum":114,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"A04","currentAddress":"CP-001-060-001-02","nextAddress":"A04","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1172', N'2025-06-16 21:58:58.617', N'7302', N'2025-06-16 21:59:05.920', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1173', N'2025-06-16 21:59:07.950', N'142', N'2025-06-16 21:59:08.093', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1174', N'2025-06-16 21:59:09.983', N'141', N'2025-06-16 21:59:10.127', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1175', N'2025-06-16 21:59:10.127', N'961', N'2025-06-16 21:59:11.087', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":36,"taskNum":115,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":37,"taskNum":112,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"A01","currentAddress":"CP-001-001-001-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":38,"taskNum":116,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":39,"taskNum":113,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"A01","currentAddress":"CP-001-001-002-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":40,"taskNum":117,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":41,"taskNum":114,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"A04","currentAddress":"CP-001-060-001-02","nextAddress":"A04","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1176', N'2025-06-16 22:04:18.003', N'1336', N'2025-06-16 22:04:19.340', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1177', N'2025-06-16 22:04:22.077', N'1806', N'2025-06-16 22:04:23.883', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n  handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n  containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n  containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务执行中"},{"key":"320","value":"移库任务完成"},{"key":"398","value":"移库任务取消"},{"key":"399","value":"移库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1178', N'2025-06-16 22:04:21.060', N'2888', N'2025-06-16 22:04:23.947', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":36,"taskNum":115,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":37,"taskNum":112,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"A01","currentAddress":"CP-001-001-001-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":38,"taskNum":116,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":39,"taskNum":113,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"A01","currentAddress":"CP-001-001-002-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":40,"taskNum":117,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":41,"taskNum":114,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"A04","currentAddress":"CP-001-060-001-02","nextAddress":"A04","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1179', N'2025-06-16 22:05:18.713', N'394', N'2025-06-16 22:05:19.107', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1180', N'2025-06-16 22:08:31.690', N'417', N'2025-06-16 22:08:32.107', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1181', N'2025-06-16 22:08:35.800', N'392', N'2025-06-16 22:08:36.193', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1182', N'2025-06-16 22:08:44.483', N'441', N'2025-06-16 22:08:44.927', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1183', N'2025-06-16 22:09:08.053', N'8954', N'2025-06-16 22:09:17.007', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":121,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5075135+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":118,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5096848+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":122,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5110079+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":119,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5122909+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":123,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5143302+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":120,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5164686+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1184', N'2025-06-16 22:09:58.980', N'315', N'2025-06-16 22:09:59.293', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1185', N'2025-06-16 22:10:09.197', N'1489', N'2025-06-16 22:10:10.687', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":124,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"System\",\"CreateDate\":\"2025-06-16T22:09:28.352898+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":125,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"System\",\"CreateDate\":\"2025-06-16T22:09:32.6088906+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":126,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"System\",\"CreateDate\":\"2025-06-16T22:09:37.9353221+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":false,"code":0,"message":"有重复任务","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1186', N'2025-06-16 23:01:02.147', N'9043', N'2025-06-16 23:01:11.190', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":129,\"PalletCode\":\"15\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-003-060-001-01\",\"TargetAddress\":\"CP-004-060-004-02\",\"CurrentAddress\":\"CP-003-060-001-01\",\"NextAddress\":\"CP-004-060-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:00:57.6330097+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":128,\"PalletCode\":\"13\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-004-060-001-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-004-060-001-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:00:57.6348294+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1187', N'2025-06-16 23:02:29.900', N'5029', N'2025-06-16 23:02:34.930', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":127,\"PalletCode\":\"12\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-002-060-004-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-002-060-004-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:02:29.7799194+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1188', N'2025-06-16 23:04:37.910', N'1184', N'2025-06-16 23:04:39.093', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":9,"rows":[{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1189', N'2025-06-16 23:46:41.043', N'39097', N'2025-06-16 23:47:20.140', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":131,\"PalletCode\":\"6\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-002-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-002-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1218223+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":133,\"PalletCode\":\"16\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-003-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-003-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1241149+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":130,\"PalletCode\":\"5\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1270458+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":132,\"PalletCode\":\"14\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-004-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-004-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1297988+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1190', N'2025-06-16 23:47:28.440', N'2080', N'2025-06-16 23:47:30.520', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1191', N'2025-06-16 23:47:32.493', N'14686', N'2025-06-16 23:47:47.180', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA4ODg2NyIsIm5iZiI6IjE3NTAwODg4NjciLCJleHAiOiIxNzUwMDk2MDY3IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.zpI7LH003MhS4lOf8wSSAhOo2Lctwhk98yFAQhuU-AI","devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/replaceToken', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1192', N'2025-06-16 23:47:52.450', N'1945', N'2025-06-16 23:47:54.393', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1193', N'2025-06-16 23:50:01.567', N'1968', N'2025-06-16 23:50:03.533', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1194', N'2025-06-16 23:50:07.743', N'1694', N'2025-06-16 23:50:09.437', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1195', N'2025-06-16 23:50:28.703', N'2283', N'2025-06-16 23:50:30.987', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1196', N'2025-06-16 23:51:21.477', N'2341', N'2025-06-16 23:51:23.820', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1197', N'2025-06-16 23:54:08.350', N'18595', N'2025-06-16 23:54:26.943', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":135,\"PalletCode\":\"6\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-002-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-002-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:54:07.938254+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":134,\"PalletCode\":\"5\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:54:07.9395847+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1198', N'2025-06-17 00:04:31.303', N'6608', N'2025-06-17 00:04:37.910', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":141,\"PalletCode\":\"16\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-003-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-003-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-17T00:04:29.2431378+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":140,\"PalletCode\":\"14\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-004-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-004-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-17T00:04:29.251732+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0')
GO
 
INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1199', N'2025-06-17 00:29:38.377', N'3471', N'2025-06-17 00:29:41.847', N'{"QueryString":"?taskNum=140","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0')
GO
 
SET IDENTITY_INSERT [dbo].[Sys_Log] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_Menu
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Menu]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_Menu]
GO
 
CREATE TABLE [dbo].[Sys_Menu] (
  [MenuId] int  IDENTITY(1,1) NOT NULL,
  [MenuName] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [Auth] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [Icon] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [Description] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [Enable] tinyint  NULL,
  [TableName] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [ParentId] int  NOT NULL,
  [Url] varchar(50) COLLATE Chinese_PRC_CI_AS  NULL,
  [OrderNo] int  NULL,
  [MenuType] int  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_Menu] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'菜单ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'MenuId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'菜单名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'MenuName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'权限',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Auth'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'图标',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Icon'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'描述',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Description'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否启用',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Enable'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'表名',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'TableName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'父级ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'ParentId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'路径',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Url'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'排序号',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'OrderNo'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'菜单类型',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'MenuType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'菜单配置',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Menu'
GO
 
 
-- ----------------------------
-- Records of Sys_Menu
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_Menu] ON
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'用户管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-user', NULL, N'1', N'.', N'0', NULL, N'4000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:07.567')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'用户管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_User', N'1', N'/Sys_User', N'2000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:14.030')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'权限管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'ivu-icon ivu-icon-ios-boat', NULL, N'1', N',', N'1', N'/permission', N'1000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:20.727')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'角色管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Role', N'1', N'/Sys_Role', N'900', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:23.177')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'系统设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-setting', NULL, N'1', N'系统设置', N'0', N'/', N'0', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:38.703')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'菜单设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Menu', N'5', N'/sysmenu', N'10', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:42.007')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'下拉框绑定设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Dictionary', N'5', N'/Sys_Dictionary', N'10', N'99', N'admin', N'2024-10-21 10:17:39.367', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'日志管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'xxx', N'0', N'/', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'接口日志', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Log', N'8', N'/Sys_Log/Manager', N'0', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:34.273')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'设备管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'', N'0', N'/', N'8000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'设备信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DeviceInfo', N'10', N'/deviceInfo', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'任务管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'', N'0', N'/', N'7000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'任务信息', N'[{"text":"查询","value":"Search"},{"text":"导出","value":"Export"},{"text":"回滚到上一步","value":"Previous"},{"text":"跳转到下一步","value":"Next"},{"text":"手动完成","value":"TaskHandCompleted"},{"text":"取消任务","value":"TaskHandCancel"}]', N'el-icon-date', NULL, N'1', N'Dt_Task', N'12', N'/task', N'500', NULL, N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-11-04 11:10:13.903')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'设备协议信息', N'[{"text":"查询","value":"Search"},{"text":"删除","value":"Delete"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DeviceProtocol', N'10', N'/deviceProtocol', N'500', NULL, N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-11-06 16:03:41.397')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'设备协议明细信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DeviceProtocolDetail', N'10', N'/deviceProtocolDetail', N'500', NULL, N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-11-06 16:03:47.953')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'调度服务配置信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DispatchInfo', N'10', N'/dispatchInfo', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'基础管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'', N'0', N'/', N'7000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'路由配置信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"查看全部路由","value":"ViewAllRouter"},{"text":"路由配置","value":"AddRouters"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_Router', N'17', N'/router', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557')
GO
 
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'任务历史信息', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'/Task_Hty', N'12', N'/task_hty', N'0', NULL, N'admin', N'2024-11-01 08:45:17.247', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Sys_Menu] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_Role
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Role]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_Role]
GO
 
CREATE TABLE [dbo].[Sys_Role] (
  [RoleId] int  IDENTITY(1,1) NOT NULL,
  [DeptId] int  NULL,
  [Enable] tinyint  NOT NULL,
  [ParentId] int  NOT NULL,
  [RoleName] varchar(50) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_Role] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'主键',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'RoleId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'部门主键',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'DeptId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否启用',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'Enable'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'父ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'ParentId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'RoleName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色表',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Role'
GO
 
 
-- ----------------------------
-- Records of Sys_Role
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_Role] ON
GO
 
INSERT INTO [dbo].[Sys_Role] ([RoleId], [DeptId], [Enable], [ParentId], [RoleName], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'111', N'1', N'0', N'超级管理员', N'超级管理员', N'2024-10-21 10:17:42.397', N'admin', N'2024-04-29 13:53:44.717')
GO
 
SET IDENTITY_INSERT [dbo].[Sys_Role] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_RoleAuth
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_RoleAuth]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_RoleAuth]
GO
 
CREATE TABLE [dbo].[Sys_RoleAuth] (
  [AuthId] int  IDENTITY(1,1) NOT NULL,
  [AuthValue] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [MenuId] int  NOT NULL,
  [RoleId] int  NULL,
  [UserId] int  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_RoleAuth] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色身份验证ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'AuthId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户权限',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'AuthValue'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'菜单ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'MenuId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'RoleId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'UserId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色身份验证管理',
'SCHEMA', N'dbo',
'TABLE', N'Sys_RoleAuth'
GO
 
 
-- ----------------------------
-- Records of Sys_RoleAuth
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_RoleAuth] ON
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'136', N'Search,Add,Delete,Update,Import,Export', N'1', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'137', N'Search,Add,Delete,Update,Import,Export', N'2', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-04-29 15:04:07.830')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'138', N'Search,Add,Delete,Update,Import,Export', N'3', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'140', N'Search,Add,Delete,Update,Import,Export', N'4', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'141', N'Search,Add,Delete,Update,Import,Export', N'5', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'143', N'Search,Add,Delete,Update,Import,Export', N'6', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'Search,Add,Delete,Update,Import,Export', N'7', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-04-29 15:00:47.033')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'146', N'Search,Add,Delete,Update,Import,Export', N'8', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-04-29 15:04:07.830')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'148', N'Search,Add,Delete,Update,Import,Export', N'9', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'153', N'Search,Add,Delete,Update,Import,Export', N'10', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'154', N'Search,Add,Delete,Update,Import,Export', N'12', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'155', N'Search,Add,Previous,Next,Delete,Update,Import,Export', N'13', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-10-22 13:58:39.937')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'156', N'Search,Add,Delete,Update,Import,Export', N'11', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-10-22 13:58:39.937')
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'157', N'Search', N'11', N'2', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'158', N'Search,Add,Delete,Update,Import,Export', N'10', N'2', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'159', N'Search,Add,Delete,Update,Import,Export', N'17', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'160', N'Search,Add,Delete,Update,ViewAllRouter,AddRouters,Import,Export', N'18', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'161', N'Search,Add,Previous,Next,Delete,Update,Import,Export', N'13', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'162', N'Search,Add,Delete,Update,Import,Export', N'11', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'163', N'Search,Add,Delete,Update,Import,Export', N'14', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'164', N'Search,Add,Delete,Update,Import,Export', N'15', N'1', NULL, N'admin', N'2024-10-22 13:58:39.960', NULL, NULL)
GO
 
INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'165', N'Search,Add,Delete,Update,Import,Export', N'16', N'1', NULL, N'admin', N'2024-10-22 13:58:39.960', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Sys_RoleAuth] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_Tenant
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Tenant]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_Tenant]
GO
 
CREATE TABLE [dbo].[Sys_Tenant] (
  [TenantId] int  IDENTITY(1,1) NOT NULL,
  [TenantName] varchar(200) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [TenantType] int  NOT NULL,
  [DbType] int  NOT NULL,
  [ConnectionString] varchar(1000) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Status] int  NOT NULL,
  [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS  NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_Tenant] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'租户ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'TenantId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'租户名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'TenantName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'租户类型',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'TenantType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'数据库类型',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'DbType'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'连接字符串',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'ConnectionString'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'状态',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'Status'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'租户',
'SCHEMA', N'dbo',
'TABLE', N'Sys_Tenant'
GO
 
 
-- ----------------------------
-- Records of Sys_Tenant
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_Tenant] ON
GO
 
SET IDENTITY_INSERT [dbo].[Sys_Tenant] OFF
GO
 
 
-- ----------------------------
-- Table structure for Sys_User
-- ----------------------------
IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_User]') AND type IN ('U'))
    DROP TABLE [dbo].[Sys_User]
GO
 
CREATE TABLE [dbo].[Sys_User] (
  [User_Id] int  IDENTITY(1,1) NOT NULL,
  [UserName] varchar(100) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [Role_Id] int  NOT NULL,
  [RoleName] varchar(100) COLLATE Chinese_PRC_CI_AS  NULL,
  [PhoneNo] varchar(11) COLLATE Chinese_PRC_CI_AS  NULL,
  [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [UserPwd] varchar(200) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [UserTrueName] varchar(100) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [DeptName] varchar(100) COLLATE Chinese_PRC_CI_AS  NULL,
  [Dept_Id] int  NULL,
  [Email] varchar(100) COLLATE Chinese_PRC_CI_AS  NULL,
  [Enable] tinyint  NOT NULL,
  [Gender] int  NULL,
  [HeadImageUrl] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [LastModifyPwdDate] datetime  NULL,
  [Address] varchar(200) COLLATE Chinese_PRC_CI_AS  NULL,
  [AuditDate] datetime  NULL,
  [AuditStatus] int  NULL,
  [Auditor] varchar(100) COLLATE Chinese_PRC_CI_AS  NULL,
  [Token] varchar(500) COLLATE Chinese_PRC_CI_AS  NULL,
  [TenantId] bigint DEFAULT '0' NOT NULL,
  [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS  NOT NULL,
  [CreateDate] datetime  NOT NULL,
  [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS  NULL,
  [ModifyDate] datetime  NULL
)
GO
 
ALTER TABLE [dbo].[Sys_User] SET (LOCK_ESCALATION = TABLE)
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'User_Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'帐号',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'UserName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Role_Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'角色名称',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'RoleName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'电话',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'PhoneNo'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'备注',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Remark'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'密码',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'UserPwd'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'真实姓名',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'UserTrueName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'部门',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'DeptName'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'部门ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Dept_Id'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'邮箱',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Email'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'是否可用',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Enable'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'性别',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Gender'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'头像',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'HeadImageUrl'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'最后密码修改时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'LastModifyPwdDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'地址',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Address'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'审核时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'AuditDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'审核状态',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'AuditStatus'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'审核人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Auditor'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'令牌',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Token'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'租户ID',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'TenantId'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建者',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Creater'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'创建时间',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'CreateDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改人',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'Modifier'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'修改日期',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User',
'COLUMN', N'ModifyDate'
GO
 
EXEC sp_addextendedproperty
'MS_Description', N'用户表',
'SCHEMA', N'dbo',
'TABLE', N'Sys_User'
GO
 
 
-- ----------------------------
-- Records of Sys_User
-- ----------------------------
SET IDENTITY_INSERT [dbo].[Sys_User] ON
GO
 
INSERT INTO [dbo].[Sys_User] ([User_Id], [UserName], [Role_Id], [RoleName], [PhoneNo], [Remark], [UserPwd], [UserTrueName], [DeptName], [Dept_Id], [Email], [Enable], [Gender], [HeadImageUrl], [LastModifyPwdDate], [Address], [AuditDate], [AuditStatus], [Auditor], [Token], [TenantId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'admin', N'1', N'超级管理员', N'', N'', N'j79rYYvCz4vdhcboB1Ausg==', N'超级管理员', N'', N'0', N'', N'1', N'1', N'', N'2024-04-16 19:58:55.000', N'系统服务器', N'2024-04-16 00:54:06.000', N'1', N'超级管理员', N'', N'0', N'系统', N'2024-10-21 10:17:53.730', NULL, NULL)
GO
 
SET IDENTITY_INSERT [dbo].[Sys_User] OFF
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_DeviceInfo
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_DeviceInfo]', RESEED, 1005)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_DeviceInfo
-- ----------------------------
ALTER TABLE [dbo].[Dt_DeviceInfo] ADD CONSTRAINT [PK_Dt_DeviceInfo_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_DeviceProtocol
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_DeviceProtocol]', RESEED, 19)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_DeviceProtocol
-- ----------------------------
ALTER TABLE [dbo].[Dt_DeviceProtocol] ADD CONSTRAINT [PK_Dt_DeviceProtocol_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_DeviceProtocolDetail
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_DeviceProtocolDetail]', RESEED, 40)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_DeviceProtocolDetail
-- ----------------------------
ALTER TABLE [dbo].[Dt_DeviceProtocolDetail] ADD CONSTRAINT [PK_Dt_DeviceProtocolDetail_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_DispatchInfo
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_DispatchInfo]', RESEED, 1007)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_DispatchInfo
-- ----------------------------
ALTER TABLE [dbo].[Dt_DispatchInfo] ADD CONSTRAINT [PK_Dt_DispatchInfo_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_Router
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_Router]', RESEED, 61)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_Router
-- ----------------------------
ALTER TABLE [dbo].[Dt_Router] ADD CONSTRAINT [PK_Dt_Router_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_Task
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 62)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_Task
-- ----------------------------
ALTER TABLE [dbo].[Dt_Task] ADD CONSTRAINT [PK_Dt_Task_TaskId] PRIMARY KEY CLUSTERED ([TaskId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_Task_Hty
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_Task_Hty]', RESEED, 3218)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_Task_Hty
-- ----------------------------
ALTER TABLE [dbo].[Dt_Task_Hty] ADD CONSTRAINT [PK__Dt_Task___7C6949B1355E7676] PRIMARY KEY CLUSTERED ([TaskId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Dt_TaskExecuteDetail
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Dt_TaskExecuteDetail]', RESEED, 11781)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Dt_TaskExecuteDetail
-- ----------------------------
ALTER TABLE [dbo].[Dt_TaskExecuteDetail] ADD CONSTRAINT [PK_Dt_TaskExecuteDetail_TaskDetailId] PRIMARY KEY CLUSTERED ([TaskDetailId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_Department
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_Department]', RESEED, 1)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_Department
-- ----------------------------
ALTER TABLE [dbo].[Sys_Department] ADD CONSTRAINT [PK_Sys_Department_DepartmentId] PRIMARY KEY CLUSTERED ([DepartmentId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_Dictionary
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_Dictionary]', RESEED, 75)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_Dictionary
-- ----------------------------
ALTER TABLE [dbo].[Sys_Dictionary] ADD CONSTRAINT [PK_Sys_Dictionary_DicId] PRIMARY KEY CLUSTERED ([DicId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_DictionaryList
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_DictionaryList]', RESEED, 457)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_DictionaryList
-- ----------------------------
ALTER TABLE [dbo].[Sys_DictionaryList] ADD CONSTRAINT [PK_Sys_DictionaryList_DicListId] PRIMARY KEY CLUSTERED ([DicListId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_Log
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_Log]', RESEED, 1199)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_Log
-- ----------------------------
ALTER TABLE [dbo].[Sys_Log] ADD CONSTRAINT [PK_Sys_Log_Id] PRIMARY KEY CLUSTERED ([Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_Menu
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_Menu]', RESEED, 19)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_Menu
-- ----------------------------
ALTER TABLE [dbo].[Sys_Menu] ADD CONSTRAINT [PK_Sys_Menu_MenuId] PRIMARY KEY CLUSTERED ([MenuId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_Role
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_Role]', RESEED, 1)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_Role
-- ----------------------------
ALTER TABLE [dbo].[Sys_Role] ADD CONSTRAINT [PK_Sys_Role_RoleId] PRIMARY KEY CLUSTERED ([RoleId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_RoleAuth
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_RoleAuth]', RESEED, 165)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_RoleAuth
-- ----------------------------
ALTER TABLE [dbo].[Sys_RoleAuth] ADD CONSTRAINT [PK_Sys_RoleAuth_AuthId] PRIMARY KEY CLUSTERED ([AuthId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_Tenant
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_Tenant]', RESEED, 1)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_Tenant
-- ----------------------------
ALTER TABLE [dbo].[Sys_Tenant] ADD CONSTRAINT [PK_Sys_Tenant_TenantId] PRIMARY KEY CLUSTERED ([TenantId])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO
 
 
-- ----------------------------
-- Auto increment value for Sys_User
-- ----------------------------
DBCC CHECKIDENT ('[dbo].[Sys_User]', RESEED, 1)
GO
 
 
-- ----------------------------
-- Primary Key structure for table Sys_User
-- ----------------------------
ALTER TABLE [dbo].[Sys_User] ADD CONSTRAINT [PK_Sys_User_User_Id] PRIMARY KEY CLUSTERED ([User_Id])
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  
ON [PRIMARY]
GO