leiqunqing
2026-01-19 ba8aa925e7901381ceb394adb53eca8723d1c4c5
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
SQLite format 3@   S4  .fê ø¸èÇ–& „
ý
‡Ý\Æ>ºÒ¸K%%[tablesqlite_stat1sqlite_stat1:CREATE TABLE sqlite_stat1(tbl,idx,stat)J+‚[triggerTrgSymbolInsertSymbolCREATE TRIGGER TrgSymbolInsert AFTER INSERT ON Symbol
BEGIN
    INSERT INTO SymbolCompletion(rowid, UnqualifiedName) 
    VALUES (new.Id, new.UnqualifiedName);
ENDe +ƒtriggerTrgSymbolDeleteSymbolCREATE TRIGGER TrgSymbolDelete AFTER DELETE ON Symbol
BEGIN
    INSERT INTO SymbolCompletion(SymbolCompletion, rowid, UnqualifiedName)
    VALUES ('delete', old.Id, old.UnqualifiedName);
END ;;tableSymbolCompletion_configSymbolCompletion_config CREATE TABLE 'SymbolCompletion_config'(k PRIMARY KEY, v) WITHOUT ROWID ==tableSymbolCompletion_docsizeSymbolCompletion_docsize CREATE TABLE 'SymbolCompletion_docsize'(id INTEGER PRIMARY KEY, sz BLOB)
55ItableSymbolCompletion_idxSymbolCompletion_idx
CREATE TABLE 'SymbolCompletion_idx'(segid, term, pgno, PRIMARY KEY(segid, term)) WITHOUT ROWID    77tableSymbolCompletion_dataSymbolCompletion_data    CREATE TABLE 'SymbolCompletion_data'(id INTEGER PRIMARY KEY, block BLOB)ƒ'--†tableSymbolCompletionSymbolCompletionCREATE VIRTUAL TABLE 'SymbolCompletion' USING fts5(
    'UnqualifiedName',
    content = '', -- Creates a contentless table  to save database space: https://www.sqlite.org/fts5.html#external_content_and_contentless_tables
    tokenize = "trigram" -- Built-in tokenizer that allows FTS5 to support more general substring matching: https://www.sqlite.org/fts5.html#tokenizers
)t?indexIX_Symbol_UnqualifiedNameSymbolCREATE INDEX 'IX_Symbol_UnqualifiedName' ON 'Symbol' ('UnqualifiedName')5GindexIX_Symbol_DocumentIdSymbolCREATE INDEX 'IX_Symbol_DocumentId' ON 'Symbol' ('DocumentId', 'ExtentStart', 'ExtentLength')…ŠtableSymbolSymbolCREATE TABLE 'Symbol' (
    'Id' INTEGER PRIMARY KEY AUTOINCREMENT,
    'DocumentId' INTEGER,
    'FullyQualifiedName' VARCHAR(500) NOT NULL,
    'UnqualifiedName' VARCHAR(500) COLLATE NOCASE NOT NULL,
    'CommentStart' INTEGER NOT NULL,
    'CommentLength' INTEGER NOT NULL,
    'NameStart' INTEGER NOT NULL,
    'NameLength' INTEGER NOT NULL,
    'BodyStart' INTEGER NOT NULL,
    'BodyLength' INTEGER NOT NULL,
    'ExtentStart' INTEGER NOT NULL,
    'ExtentLength' INTEGER NOT NULL,
    'SymbolKind' INTEGER NOT NULL,
    'MethodSignature' VARCHAR(500),
    FOREIGN KEY(DocumentId) REFERENCES Document(Id) ON DELETE CASCADE
)n5indexIX_Document_FilePathDocumentCREATE UNIQUE INDEX 'IX_Document_FilePath' ON 'Document' ('FilePath')P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)\ƒ tableDocumentDocumentCREATE TABLE 'Document' (
    'Id' INTEGER PRIMARY KEY AUTOINCREMENT,
    'FilePath' VARCHAR(500) NOT NULL COLLATE NOCASE,
    'LastWriteTimeUtc' INTEGER NOT NULL,
    UNIQUE(FilePath)
)/Cindexsqlite_autoindex_Document_1DocumentØOûöìñæßØ  
ž
,    £    ƒøuâI¸@ÂF»?´8ÂtkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlzwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvzwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs|{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csvoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsv{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.csp cE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.csx sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.css iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.csy
uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csy    uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.csrgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.csiUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsonpcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jsiUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.csT+E:\gsxm\FaDianJi\代码管理\WIDESEAWCK„ð)>‚ûÚcPn8  o=‡  of”YÜa\[ ñ    ²    &”
s ÿ Œ
«
:ÒÑŠø`Ð×{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.cs tkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlzwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvzwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs|{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csvoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsv{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.cspcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs yuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs
yuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    rgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig3‚/E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767959389.logèß{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1766486446.logsumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsontkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_LogService.cs) òÕÕåDocument`D Symbol@Document o;‡  of”YÜa\[ ñ    ²    &”
s ÿ Œ
«
:ÒÑŠø`Ð×{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.cs tkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlzwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvzwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs|{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csvoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsv{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.cspcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs yuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs
yuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    rgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig2‚/E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767959389.logèß{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1766486446.logsumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsontkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_LogService.cs)‹PûöñåßÙÓÍÇÁ»©£µ¯—ë‘‹…¬MøšD»i¾b¿kҍC'KWIDESEAWCS_DTO.System.ActionDTOActionDTO°    ¿±£ÍE&77WIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System…œ×{ø
P%kaWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.InboundInboundf5Â¥*R$maWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.OutboundOutboundï5K.+O#[%aWIDESEAWCS_Common.TaskEnum.TaskTypeEnumTaskTypeEnumÒ äóÆP"AAaWIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnum£¿™C
Z!w#`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_FinishTask_Finishj7Ê «1T q`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_NewTask_Newñ7O2+S_)`WIDESEAWCS_Common.TaskEnum.TaskStatusEnumTaskStatusEnumÒæþÆPAA`WIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnum£¿*™P
1;    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.BoolIndexAttributeBoolIndexAttribute=(W    BoolIndexAttribute(int)Tw    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.IndexIndexñ÷ æ\k1    WIDESEAWCS_Common.Attributes.BoolIndexAttributeBoolIndexAttribute·ۑªÂSEE    WIDESEAWCS_Common.AttributesWIDESEAWCS_Common.Attributes…£Ì{ô
]!9WIDESEAWCS_BasicInfoService.ScanStationService.RepositoryRepository(
3
91k9WIDESEAWCS_BasicInfoService.ScanStationService.ScanStationServiceScanStationServiceœí •d    ScanStationService(IRepository<Dt_ScanStation>)[i19WIDESEAWCS_BasicInfoService.ScanStationServiceScanStationService"Š»0RCC9WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ:ça
]!4WIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepository(
3
91k4WIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoServiceœí •d    ProcessInfoService(IRepository<Dt_ProcessInfo>)[i14WIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoService"Š»0RCC4WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ:ça
Yw!WIDESEAWCS_BasicInfoService.FormulaService.RepositoryRepository
 
í5)[WIDESEAWCS_BasicInfoService.FormulaService.FormulaServiceFormulaServiceŒÕ …\    FormulaService(IRepository<Dt_Formula>)Sa)WIDESEAWCS_BasicInfoService.FormulaServiceFormulaService"z¯RCCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñçE
` !WIDESEAWCS_BasicInfoService.FormulaDetailService.RepositoryRepository6
A
;' 5sWIDESEAWCS_BasicInfoService.FormulaDetailService.FormulaDetailServiceFormulaDetailService¤ù h    FormulaDetailService(IRepository<Dt_FormulaDetail>)_ m5WIDESEAWCS_BasicInfoService.FormulaDetailServiceFormulaDetailService"’Á>R
CCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñHço
X    u! WIDESEAWCS_BasicInfoService.BoxingService.RepositoryRepository
 
ç4{'W WIDESEAWCS_BasicInfoService.BoxingService.BoxingServiceBoxingServiceˆ Ï Z    BoxingService(IRepository<Dt_Boxing>)Q_' WIDESEAWCS_BasicInfoService.BoxingServiceBoxingService" v¬ RCC WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñç>
@7
WIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualSÁ*•VÍ    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)_!
WIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository/
:
 :"3o
WIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailService ó ™f    BoxingDetailService(IRepository<Dt_BoxingDetail>)]k3
WIDESEAWCS_BasicInfoService.BoxingDeta¨!J¥nI¢B?›a9—@AŠp1‰wD’Ct/ƒY.ƒ9+ƒ0‚t,‚V(‚8&‚VH¡w~U'àFïà ÖÊ¿´õéÞÓÇ»¯¤™
Ì
À
µ
ª
Ÿ
”
ˆ
|
p
e
Z
N
B
5
(
 
 
    ø    ì    à    Ô    È    ¼    °    ¤    ˜    Œ    €    t    g    Z    M    A    5    )            ÷ëßÓÇ»¯£—‹sg[OC6)øìàÔȼ°¤˜Œ€svk_SH= V J ? 4 (    ú ï ã × Ì À ´ ©  ‘ † z o c W L A 6 *    ý ò ç Ü Ñ Æ » ° ¥ ™  ‚ w l a U I > 2 &   
ú
î
ã
Ø     þ ó1%g[OC7*÷ìáúíáÕɽ°£–Š~rfZNA4' óæÙÌ¿²¥˜‹~rfZNB6*øìàÔȼ°¤˜ŒrfZNB6*úîáÕÈ»¯¢–Š~reXK?3'õéÝÑŸ¬ “†znbV¨œ‘†zncX è Ü Ñ Æ » ° ¥ š Ž ƒ x m b \<x& \ˆg% \Äw$ \ÿ{# \Q0" \ζ! Yu  Y`d Y’ƒ YÝg Y%j Y]{ Y”| Yø“ YÎÀ Sàf S-f Szf S´y Sé~ S2 S΂ QÔ¨ QPx Qœg Qég Q6f Qaˆ Qœx
Qø‹     Qθ M
'V M    s¨ Mÿh MNd M’p Mßh Mv Mjg M£zÿ Mærþ M(sý Mfwü MŸzû Mø    Œú MΠ   ¹ù J    „gø JÀw÷ Jþuö J=tõ J‰gô J¾~ó Jô}ò J€kñ JÊið Jnï JPtî JÙ    í J¯    Fì E.uë E}fê EÊgé Efè EN{ç E„yæ Eµå Eø²ä EÎßã B ºÚâ B šá B
$£à B    B—ß B`•Þ B}—Ý BŒ¤Ü B™¦Û B¥§Ú B®©Ù B¼¤Ø BÇ©× BÉ ÒÖ BŸ ÿÕ A<uÔ A‹fÓ AÁ}Ò A hÑ AB}Ð Ax}Ï A«€Î AøÀÍ AÎíÌ @L!Ë @" Ê @ùÉ @Î!È @¥ÏÇ @{üÆ 7#$Å 7ø!Ä 7Óà 7¬¢Â 7{ÖÁ 6ï#À 6Æ¿ 6ž{¾ 6{¡½  t¼  ª» 
Ạ
¹     O¸ †· ½¶ ôµ +´ `³ ¡s² Ԁ±  {° D{¯ ƒt® Ø $­ ® Q¬  Ìl«  lª  Rl© 
‘p¨     Îq§      q¦ Pi¥ ‹x¤ Ïn£ u¢ Uk¡ l  Õ{Ÿ  {ž E{ ƒtœ Ø g› ® ”š Ì}™ }˜ Jk— ‰t– Øx• ®¥”  “  šv’  Ðz‘  v 
>z     vvŽ ¬z ætŒ v‹ S{Š r‰ Îqˆ  r‡ A{† y{… ¸t„  Ÿƒ ë ̂ É} ÿ}€
Hj
‡t~ Øu} ®¢| RŒ{
Ë{z
{y
;{x
ytw Ø v ®:u
1õ$t
1Å$s 1ž‚r
1{¨q
.ô;p
.À(o
.†.n .?÷m .'l
-PEk -—j -ØÇi
,BWh
,6g
,Æ.f
,‘+e ,JVd ,†c
+íLb
+À|a
*,'`
*ù'_
*Î^
*±]
*6o\
*ý-[
*Ç*Z
*–%Y
*j"X *#7W *ögV
)íBU
)ÀrT
(^9S ( “R (ÞÃQ
'íXP 'ÀˆO
&e6N &M &ç¾L
%e6K %J %ç¾I
#]2H #G #ç²F
"i8E "“D "çÄC
![1B
!~A !ç¯@
 ¾n?
 g7>  =  çO<
dX#;
d, :
dþ"9
dÑ!8 d£ß7
d{
6
bp,5
bG4
b 3
b÷2
bÒ1 b£0
b{+/
2ó-.
2Ãd- 2›,
H!+
 *
õ)
Ê!( £Í'
{ø&
a¥*%
a.+$ aÆ# a™C"
`«1!
`2+  `Æ `™P
    W
    æ     ªÂ
    {ô
99
9•d 90 9ça
49
4•d 40 4ça
í5
…\  çE
;
h > ço
 
 ç4    
 Z     ç> 
Í
 
 :
d, : H
;šÓ¡7Û¡³ lɱèVDÕóÂàc ­ ¤J,P ¸ínü•¯oü㡎{ËÇ®ão±Š_”    Kº­  ]  gõ§g
¸
u Ô ƒ8
. ý    çˆ 4    š    `    äÞKú² [ ”Õ àX—˜ èH1H|†3X8kuF¢5Ô" Å N
ò
©
f
    ØV – ë ÔÇ×Vþçй¢‹.E%      - : íù ‹ R9¥   Âáh´_ v 
Ò
‰
F    ÿ ¤ M þ º g 5 ×    ¹    {    ,ù+óbÀ|¥3ÃԤt½]/StationComponent6¸/StationComponent5·/StationComponent4¶/StationComponent3µ/StationComponent2´/StationComponent1³3StationComponentQty²/StationEndProduct±#StationName°#StationCode¯Id®)Dt_ScanStation­;WIDESEAWCS_Model.Models¬ Height3« Height2ª Height1©!ScrewAngle¨#ScrewTorque§#PressHeight¦!TestResult¥9StiffnessValueStandard¤)StiffnessValue£3TorsioValueStandard¢#TorsioValue¡%ComponentQty #ProductNameŸ#ProductCodež!PalletCodeIdœ)Dt_ProcessInfo›;WIDESEAWCS_Model.Modelsš'ComponentName™'ComponentCode˜FormulaId—Id–-Dt_FormulaDetail•;WIDESEAWCS_Model.Models” Details“/YDirectionHeight3’3XDirectionDistance3‘/YDirectionHeight23XDirectionDistance2/YDirectionHeight1Ž3XDirectionDistance1+DintAutoScrewOnŒ/ScrewTorqueOutput‹5ScrewDownsetDistanceŠ'ProductHeight‰%ProductWidthˆ'ProductLength‡#ProductName†#ProductCode…Id„!Dt_Formulaƒ;WIDESEAWCS_Model.Models‚'ComponentName'ComponentCode€ BoxingIdId~+Dt_BoxingDetail};WIDESEAWCS_Model.Models| Details{#ProductNamez#ProductCodey!PalletCodexIdw Dt_Boxingv;WIDESEAWCS_Model.Modelsu Passwordt UserNames LoginInfor-WIDESEAWCS_Modelq ModifyPwdp1GetCurrentUserInfoo    Loginn-ISys_UserServicemAWIDESEAWCS_ISystemServicesl)InitTenantInfok1ISys_TenantServicejAWIDESEAWCS_ISystemServicesi)SavePermissionh7GetUserTreePermissiong=GetCurrentTreePermissionf)GetAllChildrene-ISys_RoleServicedAWIDESEAWCS_ISystemServicesc5ISys_RoleAuthServicebAWIDESEAWCS_ISystemServicesa DelMenu`Save_#GetTreeItem^ GetMenu]!GetActions\)GetPermissions[+GetUserMenuListZ/GetMenuActionListY=GetCurrentMenuActionListX-ISys_MenuServiceWAWIDESEAWCS_ISystemServicesV+ISys_LogServiceUAWIDESEAWCS_ISystemServicesT-GetVueDictionaryS9ISys_DictionaryServiceRAWIDESEAWCS_ISystemServicesQAISys_DictionaryListServicePAWIDESEAWCS_ISystemServicesO!RepositoryN3IScanStationServiceMCWIDESEAWCS_BasicInfoServiceL!RepositoryK3IProcessInfoServiceJCWIDESEAWCS_BasicInfoServiceI!RepositoryH+IFormulaServiceGCWIDESEAWCS_BasicInfoServiceF!RepositoryE7IFormulaDetailServiceDCWIDESEAWCS_BasicInfoServiceC!RepositoryB)IBoxingServiceACWIDESEAWCS_BasicInfoService@7IsComponentCodesEqual?!Repository>5IBoxingDetailService=CWIDESEAWCS_BasicInfoService< SaveCache;Data:
Config9    DicNo8-VueDictionaryDTO77WIDESEAWCS_DTO.System6 Actions5    IsApp4Text3Pid2Id1/UserPermissionDTO07WIDESEAWCS_DTO.System/ Actions. MenuDTO-7WIDESEAWCS_DTO.System,    Value+Text*
MenuId) ActionId( ActionDTO'7WIDESEAWCS_DTO.System& Inbound% Outbound$%TaskTypeEnum#AWIDESEAWCS_Common.TaskEnum"#Task_Finish! Task_New )TaskStatusEnumAWIDESEAWCS_Common.TaskEnum1BoolIndexAttribute    Index1BoolIndexAttribute EWIDESEAWCS_Common.Attributes!Repository1ScanStationService1ScanStationServiceCWIDESEAWCS_BasicInfoService!Repository1ProcessInfoService1ProcessInfoServiceCWIDESEAWCS_BasicInfoService!Repository)FormulaService)FormulaServiceCWIDESEAWCS_BasicInfoService!Repository 5FormulaDetailService 5FormulaDetailService CWIDESEAWCS_BasicInfoService
!Repository    'BoxingService'BoxingServiceCWIDESEAWCS_BasicInfoService7IsComponentÓ1St% StartPLC ß*;WIDESEAWCS_Model.Models|$ CGetProductAndPartsByBoardNo¢¡[N¦oyÄâ«ØÎ—µƒeì[[öööâ-Œ€€€€‚^–0adeD    ilD detD
ervDtaD forDiceDfoDlsDladDseDmulDormDrmuDviDserDtaiD ulaDvicD›C€€€€·
å0.atsy&ta_ba      &  co   dt&    fi!ne ach;t'de il    1 lu+nspp4ry7 sei&kta:it  uve;wcbas      &  oou$x5utcac;neshe;in&no8od : m   n9s_
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ti'dat:est        1    xic7to&    eawca;di7en#    nt
:
u 
po%qu:rm0p0v        
 
$
sesta        
 
1
xa        t*    fig9n!or s  &gde:se9ibo=uce    $ i&n8t7dels    1 nb%df        &g5i!on
 
     sa4c:h!
s0
to%k_f!n enstty#lad sinse  1ue+men)is0    moonpo:ul n.atar7 bo%det'    en    :    w fi9o
 
&gd:s9id(s!    se  ttc : ud-i)m  o.s&cede:limmp:n.a7
d'    e:f9i(s  olrm y                        %    se  &i%un$t$xi5pee#r0id2on:s%roqua:rep%ibmi0u ocpe0vi
 
  $ yd7 s_b      &  c   d&    ap4v;cao:ean q:r                 ic&no0 t%k_ est#si tae&ys&tai
 
  1 stbo$co : em&sx*    io        o.&r%ri  tr  us    yp#ual:dt-ed7id)la nd$se
tb$eval+ec;ic    $ ue7wcs                                                            idxat
 
in5ydt7pe#st&
 
 
 
     1
         
 
17
2
 
E7    
    ! F1 !    
     
 
         
! 
    
 
 
 
             
"
 
 
 
F 
    1    H    
      
      
 
 F21 \ˆ€€€€ƒ<¿0_baC asiCwcCbasC cinCs_C
desCeawCrvCseCfosCiceCiCdeCnfC¡”€€€€¡
̀€€€¡
Œ€€€€'̀€€€"”€€€€-„€€€€)„€€€€!”€€€€E”€€€€S”€€€€¿
GŒ€€€€B”€€€€ö„<ˆ€€€€M”€€€€L€€€€@Œ€€€€#Ȁ€€€
”€€€€
eøTK–    /~D(Z´©Ÿ:wpiÖøÝÝÝÝÝÝÝÝÝñòe    0ul  w
0esp
0css 0j nd     0le     
0lerˆ           0tc¿  
    0ub    0tv
0s_u
0onc
ä    ú6úèâÜÖÐÊľ¸²¬¦ š”Žˆ‚|vpjd^XRLF@:4.("
þøòìæàÚÔÎȼ¶°ª¤ž˜’Œ†€ztnhb\VPJD>82,&  ü ö ð ê ä Þ Ø Ò Ì Æ À º ´ ® ¨ ¢ œ –  Š „ ~ x r l f ` Z T N H B < 6 0 * $     ÿ ø ñ ê ã Ü Õ Î Ç À ¹ ² « ¤  –  ˆ  z s l e ^ W P I B ; 4 - &   
 ü õ î ç à Ù Ò Ë Ä ½ ¶ ¯ ¨ ¡ š “ Œ … ~ w p i b [ T M F ? 8 1 * #    
ù
ò
ë
ä
Ý
Ö
Ï
È
Á
º
³
¬
¥
ž
—

‰
‚
{
t
m
f
_
X
Q
J
C
<
5
.
'
 
 
 
 
    ý    ö    ï    è    á    Ú    Ó    Ì    Å    ¾    ·    °    ©    ¢    ›    ”        †        x    q    j    c    \    U    N    G    @    9    2    +    $                    úóìåÞ×ÐÉ»´­¦Ÿ˜‘Šƒ|ung`YRKD=6/(! þ÷ðéâÛÔÍÆ¿¸±ª£œ•އ€yrkd]VOHA:3,%    ûôíæßØÑÊüµ®§ ™’‹„}vohaZSLE>70)" ÿøñêãÜÕÎÇÀ¹²«¤–ˆzsle^WPIB;4-&
üõîçàÙÒËĽ¶¯¨¡š“Œ…~wpib[TMF?81*#ùòëäÝÖÏÈÁº³ƒTƒS
ƒR ƒQƒPƒOƒNƒM ƒLƒKƒJƒI    ƒH
ƒG ƒF ƒEƒD
ƒCƒB ƒAƒ@ƒ?ƒ>ƒ=ƒ<ƒ;ƒ:ƒ9 ƒ8ƒ7    ƒ6ƒ5 ƒ4ƒ3 ƒ2    ƒ1 ƒ0ƒ/ƒ.ƒ- ƒ,ƒ+ƒ* ƒ)ƒ( ƒ' ƒ&ƒ%ƒ$ƒ# ƒ"ƒ!ƒ  ƒƒƒƒƒƒƒƒ ƒƒƒƒƒƒƒƒ ƒ ƒƒ  ƒ ƒ ƒ
ƒ     ƒƒƒƒƒƒƒƒƒ‚‚~
‚}
‚|‚{‚z ‚y‚x‚w‚v‚u‚t‚s ‚r‚q‚p‚o‚n ‚m‚l‚k‚j‚i‚h‚g%‚f‚e‚d"‚c‚b‚a    ‚`‚_    ‚^‚]‚\‚[‚Z‚Y‚X"‚W‚V‚U"‚T‚S‚R‚Q ‚P‚O‚N%‚M‚L‚K%‚J‚I‚H%‚G ‚F‚E‚D%‚C‚B‚A‚@‚?(‚>‚=‚<‚;‚:‚9 ‚8‚7‚6‚5‚4    ‚3‚2‚1‚0
‚/‚.‚-‚,‚+‚*
‚)‚(‚'‚&‚%‚$‚#‚"‚!‚ ‚‚‚‚‚‚‚‚‚‚‚‚‚‚
‚‚‚‚‚ ‚ ‚ ‚
‚    ‚‚‚‚‚‚‚‚‚    ~}|{zyxwvuts r
qp    onmlkjihgfedcba`_^]\[ZYXWV UTSR QP O N
M LKJIHG    FEDCBA@?>=<;:9876543210    /    .- ,+*)('    &    %$# "!     
               
     
           ~} |{z    y    xwvutsrqponmlk jih gfe dcba`_^    ]\[ Z YXWVU TSRQPONMLKJIHG FEDCBA @?>=<;:9876543210/.-,+*)('&%$#
"!           
      5‚
ôô version ùU¢/° µ 8 ¼ 8 7
´
:    ©    yæáèF¥ Uùùùùùùù‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvÜx†ëõ抁‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsvÜx†ëõŽVxcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jsÜx†ëö¬ägwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.csÜx†ëòÜ gŽ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.csÜx†ëòÜ {E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csÜx†ëòµzg÷oE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.csÜx†ëòµzgw‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSee‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsvÜx†ëõ¿Œ‚/E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsvÜx†ëõ¿Œ‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsvÜx†ëõ¿ŒyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csÜx†ëòµz ´mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csÜx†ëòµz‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.csÜx†ëóÈ.‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.csÜx†ëóÈ.‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.csÜx†ë󡁂E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.csÜx†ëó¡x cE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.csÜx†ëôeÁ sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.csÜx†ëôeÃ{ iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.csÜx†ëð(=„uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csÜx†ëðuہ    uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.csÜx†ëðÄ@zgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.csÜx†ëôeÃ{iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.csÜx†ëôeÁ}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.csÜx†ëôeÃsUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonÜx†ëõgG}mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsonÜx†ëõgGqUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.csÜx†ëðëO\+E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\.editorconfigÜx†ëé× ÝÉJ ø „
ð
j    ì    méjéjÉp‘>ÁEEEEEYYYYYYÝpOE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\R_PLCDBName.csÜx†ëøÑ/qE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\jquery-3.3.1.min.jsÜx†ëöԁ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlÜ}þ§(«hOE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\R_PLCDBName.csz7gE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleNodes.csÜx†ëòÜ {6iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleAuthor.csÜx†ëòÜ k5IE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.csÜx†ëôÝnñæsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.csÜx†ëð(ñcEE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cso2QE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\MenuDTO.csÜx†ëñHl1KE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\LoginInfo.csÜx†ëòw0qE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.jsonÜx†ëõ@M zyqE:\gsxmi3EE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.csÜx†ëøª/}.mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_UserService.csÜx†ëò)l-qE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_TenantService.csÜx†ëò)l},mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleService.csÜx†ëò)l+uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleAuthService.csÜx†ëò7}*mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_MenuService.csÜx†ëò7|)kE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_LogService.csÜx†ëò7(yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryService.csÜx†ëò7'‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryListService.csÜx†ëñÇ: ñ
wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.csÜx†ëñŒ:ý…wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.csÜx†ëñxk$IE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\index.htmlÜx†ëõŽVwoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.csÜx†ëñ=bw‡{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.csÜx†ëñ=b}!mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingService.csÜx†ëñ=b‰yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csÜx†ëñ=bkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.csÜx†ëð(wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.csÜx†ëð(
!‘¬½”‘Bù Ð H Î ] ì x 
”
    ”    *ÂRáu—ƒ1– E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoDetailService.cs]‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoDetailService.cs\û}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csX~{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.cs U|wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs S{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryService.cs(‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryListService.cs'‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\WIDESEAWCS_IBasicInfoService.csprojj|wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.csÖù{wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.cs)OvkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.csI¦{uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csY"umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingService.cs!zsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.csA¬ kYE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\WIDESEAWCS_DTO.csprojipcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\VueDictionaryDTO.csdoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\UserPermissions.csbgQE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\MenuDTO.cs2iUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\UpdatePartScannedStatusRequest.csÖözsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\ToolingBoardSubmitDto.csC’qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\WIDESEAWCS_Common.csprojhqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskTypeEnum.csasiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskStatusEnum.cs`paE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\PLCEnum\W_PLCDBName.cs-YpaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\PLCEnum\R_PLCDBName.cs-byuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    ‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csproj+ßqcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\Spire.XLS.dll)zsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.cs TsiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs xoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.csHÌæS+    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\.editorconfig
Õ" ¬ '   ; Ä H
ÐÝ    ×ï
Saîy‰ œ*¸BÎ\ãsèèèèˆ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ProductRecordServer\IVV_ProductRecordHeadService.cs#Ÿ‹E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ProductRecordServer\WIDESEAWCS_ProductRecordService.csproj'Áü E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ProductRecordServer\VV_ProductRecordH‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfoDetail.csZAoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\WIDESEAWCS_Model.csprojmxsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\UserPermissions.cscqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_User.cs\siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Tenant.csYumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_RoleAuth.csSqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Role.csQqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Menu.csMpcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Log.csJ{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DictionaryList.csEwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Dictionary.csBwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Department.csAtkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Actions.cs@rgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleNodes.cs7siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleAuthor.cs6    \ E:~{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.cs¸²{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs{wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs†|wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.csFðwoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csvmE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csudKE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\LoginInfo.cs1‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ITaskInfoService\WIDESEAWCS_ITaskInfoService.csprojl‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\WIDESEAWCS_ISystemServices.csprojkumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_UserService.cs.wqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_TenantService.cs-umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleService.cs,yuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleAuthService.cs+umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_MenuService.cs*
!‘¬½”‘Bù Ð H Î ] ì x 
”
    ”    *ÂRáu—ƒ1– E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoDetailService.cs]‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoDetailService.cs\û}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csX~{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.cs U|wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs S{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryService.cs(‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryListService.cs'‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\WIDESEAWCS_IBasicInfoService.csprojj|wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.csÖù{wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.cs)OvkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.csI¦{uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csY"umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingService.cs!zsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.csA¬ kYE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\WIDESEAWCS_DTO.csprojipcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\VueDictionaryDTO.csdoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\UserPermissions.csbgQE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\MenuDTO.cs2iUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\UpdatePartScannedStatusRequest.csÖözsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\ToolingBoardSubmitDto.csC’qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\WIDESEAWCS_Common.csprojhqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskTypeEnum.csasiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskStatusEnum.cs`paE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\PLCEnum\W_PLCDBName.cs-YpaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\PLCEnum\R_PLCDBName.cs-byuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    ‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csproj+ßqcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\Spire.XLS.dll)zsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.cs TsiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs xoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.csHÌæS+    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\.editorconfig
Õ" ¬ '   ; Ä H
ÐÝ    ×ï
Saîy‰ œ*¸BÎ\ãsèèèèˆ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ProductRecordServer\IVV_ProductRecordHeadService.cs#Ÿ‹E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ProductRecordServer\WIDESEAWCS_ProductRecordService.csproj'Áü E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ProductRecordServer\VV_ProductRecordH‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfoDetail.csZAoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\WIDESEAWCS_Model.csprojmxsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\UserPermissions.cscqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_User.cs\siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Tenant.csYumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_RoleAuth.csSqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Role.csQqeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Menu.csMpcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Log.csJ{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DictionaryList.csEwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Dictionary.csBwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Department.csAtkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Actions.cs@rgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleNodes.cs7siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleAuthor.cs6    \ E:~{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.cs¸²{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs{wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs†|wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.csFðwoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs{yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csvmE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csudKE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\LoginInfo.cs1‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ITaskInfoService\WIDESEAWCS_ITaskInfoService.csprojl‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\WIDESEAWCS_ISystemServices.csprojkumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_UserService.cs.wqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_TenantService.cs-umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleService.cs,yuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleAuthService.cs+umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_MenuService.cs* ^š÷}™¥àÌ_hÌٚ6 h J ð I
Í^    Ù Îzz~”
†”áiF‚%E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_DictionaryList.tsvÜx†ëö ¤G‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryListController.csÜx†ëôD‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryController.csÜx†ëóÈ.yMeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Menu.csÜx†ëóUEyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DictionaryList.csÜx†ëóUBqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Dictionary.csÜx†ëóU|@kE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Actions.csÜx†ëòÜ MnqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DeAqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Department.csÜx†ëóUXaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Servw?aE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\swg-login.htmlÜx†ë÷".y>eE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\swaggerdoc.jsÜx†ëöû{=iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\swaggerdoc.cssÜx†ëöqÍògYE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\ss;YE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\site.jsÜx†ëöû    nˆsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.csÜx†ëð(    n{PiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_MenuService.csÜx†ë÷¾£u:]E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\site.cssÜx†ëö4«
kk‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAN‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Menu.tsvÜx†ëö ¤ ÔbgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServiceszLgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_LogService.csÜx†ë÷¾£K‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_LogController.csÜx†ëô \vuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryServiIuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryService.csÜx†ë÷ƒö    O‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_MenuController.csÜx†ëô„csm ‚%E:\gH}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryListService.csÜx†ë÷ƒöxJcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Log.csÜx†ëóU.cs÷‚E:\gsxm\Fav<_E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\style.cssÜx†ëöqÍq‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DBC‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvÜx†ëõæŠ
‰À£zØQ ý sÀ è ` Ô B
¸
/    ¢     “‹ ™&­<ÄRîdkîE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Cont‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoDetailController.cs\ý‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaController.csHځ
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingDetailController.cs:o‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局异常错误日志AOP_1767041349.log›cIE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\index.html$qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketSetup.csfwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketHostService.csepcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs rgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_UserController.cs^‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_TenantController.csZ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.csW‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.csU‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_MenuController.csO‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_LogController.csK ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryListController.csG‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryController.csD‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.cs    ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ScanStationController.cs Z‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoController.cs/»
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaDetailController.cs å    E:\gsxm\FaDianJi\代kUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.json]kE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\Basic‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingController.cs`D
‰À£zØQ ý sÀ è ` Ô B
¸
/    ¢     “‹ ™&­<ÄRîdkîE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Cont‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoDetailController.cs\ý‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaController.csHځ
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingDetailController.cs:o‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局异常错误日志AOP_1767041349.log›cIE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\index.html$qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketSetup.csfwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketHostService.csepcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs rgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_UserController.cs^‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_TenantController.csZ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.csW‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.csU‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_MenuController.csO‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_LogController.csK ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryListController.csG‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryController.csD‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.cs    ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ScanStationController.cs Z‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoController.cs/»
‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaDetailController.cs å    E:\gsxm\FaDianJi\代kUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.json]kE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\Basic‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingController.cs`D *–…ót Þ N Í A Ä G
¹
:    ¿    -¡$§,³0¶5º¯:¨Š–– l‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESyneE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server.csproj܆˜Ãy~wmaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\WIDESEAWCS_Model.csprojÜz8•¦Ü l‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ITaskInfoService\WIDESEAWCS_ITaskInfoService.csprojÜx†ëòw k‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\WIDESEAWCS_ISystemServices.csprojÜx†ëò)lj‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\WIDESEAWCS_IBasicInfoService.csprojÜx†ëñŒ:siYE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\WIDESEAWCS_DTO.csproj܁B2!yheE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\WIDESEAWCS_Common.csprojÜ~ÒDœÙ‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csprojÜ~»£éM‘yfeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketSetup.csÜx†ëô yeqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketHostService.csÜx†ëô yxdcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\VueDictionaryDTO.csÜx†ëñHcsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\UserPermissions.csÜx†ëóR[wbaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\UserPermissions.csÜx†ëñHyaeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskTypeEnum.csÜx†ëðëO{`iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskStatusEnum.csÜx†ëðÄ@{_iE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_UserService.csÜx†ë÷åÁ    ^‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_UserController.csÜx†ëô>µ]‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_User.tsvÜx†ëö4«y\eE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_User.csÜx†ëóR[}[mE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_TenantService.csÜx†ë÷åÁ Z‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_TenantController.csÜx†ëô>µ{YiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Tenant.csÜx†ëóR[{XiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.csÜx†ë÷åÁ    W‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.csÜx†ëô„VqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csÜx†ë÷¾£ U‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.csÜx†ëô„T‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_RoleAuth.tsvÜx†ëö4«}SmE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_RoleAuth.csÜx†ëóR[R‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.tsvÜx†ëö4«yQeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Role.csÜx†ëóR[
F¾A㉠  •  › 
¡
#    ¥    '©+­/±3µ7¹;F_éßgCŠE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767964513.logþßC E:\gsxC~E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767966266.logøÔE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.json0cIE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.cs5}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767957598.logâ|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767782006.log4×|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767690548.log)Ô|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767090372.log í}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767955829.logڇ}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767953292.logÑâ}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767893166.logÌS}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767891186.logÅ}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767886687.log½”}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767881252.log·}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767878621.log°g}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767876837.log¨â}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767875057.log¡b}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767873288.log™î}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767871522.log’|}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767869794.log‹+}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767867444.logƒ×|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767863216.log~;|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767807025.log{9|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767803172.logt    |yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767797403.lognS|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767794499.loggæ|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767792591.log` |yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767790807.logY'|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767789023.logQ¯|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767787256.logJE|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767785516.logBÞ|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767783815.log;’
F¾A㉠  •  › 
¡
#    ¥    '©+­/±3µ7¹;F_éßgCŠE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767964513.logþßC E:\gsxC~E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767966266.logøÔE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.json0cIE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.cs5}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767957598.logâ|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767782006.log4×|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767690548.log)Ô|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767090372.log í}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767955829.logڇ}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767953292.logÑâ}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767893166.logÌS}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767891186.logÅ}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767886687.log½”}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767881252.log·}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767878621.log°g}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767876837.log¨â}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767875057.log¡b}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767873288.log™î}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767871522.log’|}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767869794.log‹+}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767867444.logƒ×|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767863216.log~;|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767807025.log{9|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767803172.logt    |yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767797403.lognS|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767794499.loggæ|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767792591.log` |yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767790807.logY'|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767789023.logQ¯|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767787256.logJE|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767785516.logBÞ|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767783815.log;’ d´l(â›\ Í x 0 æ š L ú ³ ` 
Ä
y
$ú¦K±Fô    ¹dddddddddddddddddSUa+)WIDESEAWCS_ISystemServices.ISys_LogServiceISys_LogServiceþ'íBNTAA)WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÊæLÀr
S-A(WIDESEAWCS_ISystemServices.ISys_DictionaryService.GetVueDictionaryGetVueDictionaryu^9    GetVueDictionary(string[])bRo9(WIDESEAWCS_ISystemServices.ISys_DictionaryServiceISys_DictionaryServiceSK “PQAA(WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesèÞÃ
iPwA'WIDESEAWCS_ISystemServices.ISys_DictionaryListServiceISys_DictionaryListServiceþ=íXOOAA'WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÊæbÀˆ
NI!&WIDESEAWCS_BasicInfoService.IScanStationService.RepositoryRepositoryˆ
“e6Çk3&WIDESEAWCS_BasicInfoService.IScanStationServiceIScanStationService&ZHhCC&WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ—ç¾
!%WIDESEAWCS_BasicInfoService.IProcessInfoService.RepositoryRepositoryˆ
“e6³k3%WIDESEAWCS_BasicInfoService.IProcessInfoServiceIProcessInfoService&ZHTCC%WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ—ç¾
ZHy!#WIDESEAWCS_BasicInfoService.IFormulaService.RepositoryRepository|
‡]2NÅc+#WIDESEAWCS_BasicInfoService.IFormulaServiceIFormulaService&RDNnCC#WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ‹ç²
N!"WIDESEAWCS_BasicInfoService.IFormulaDetailService.RepositoryRepositoryŽ
™i8·o7"WIDESEAWCS_BasicInfoService.IFormulaDetailServiceIFormulaDetailService&^J“TCC"WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñçÄ
YBw!!WIDESEAWCS_BasicInfoService.IBoxingService.RepositoryRepositoryy
„[1RAa)!WIDESEAWCS_BasicInfoService.IBoxingServiceIBoxingService&PC~R@CC!WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñˆç¯
ց7 WIDESEAWCS_BasicInfoService.IBoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualª
ʾn    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)! WIDESEAWCS_BasicInfoService.IBoxingDetailService.RepositoryRepository‹
–g7¶m5 WIDESEAWCS_BasicInfoService.IBoxingDetailServiceIBoxingDetailService&\×TCC WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ(çO
S;mdWIDESEAWCS_DTO.System.VueDictionaryDTO.SaveCacheSaveCached    n X#I:cdWIDESEAWCS_DTO.System.VueDictionaryDTO.DataData:? , M9gdWIDESEAWCS_DTO.System.VueDictionaryDTO.ConfigConfig  þ"K8edWIDESEAWCS_DTO.System.VueDictionaryDTO.DicNoDicNoßå Ñ!Q7Y-dWIDESEAWCS_DTO.System.VueDictionaryDTOVueDictionaryDTO°Ƽ£ßE677dWIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System…œé{
 
P5kbWIDESEAWCS_DTO.System.UserPermissionDTO.ActionsActions‡ p,L4gbWIDESEAWCS_DTO.System.UserPermissionDTO.IsAppIsAppSY GJ3ebWIDESEAWCS_DTO.System.UserPermissionDTO.TextText+0  H2cbWIDESEAWCS_DTO.System.UserPermissionDTO.PidPid ÷F1abWIDESEAWCS_DTO.System.UserPermissionDTO.IdIdÝà ÒS0[/bWIDESEAWCS_DTO.System.UserPermissionDTOUserPermissionDTO°ÇÜ£E/77bWIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System…œ
{+
F.W2WIDESEAWCS_DTO.System.MenuDTO.ActionsActions  ó-=-G2WIDESEAWCS_DTO.System.MenuDTOMenuDTOÐè?ÃdE,772WIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System¥¼n›
D+WWIDESEAWCS_DTO.System.ActionDTO.ValueValueV\ H!B*UWIDESEAWCS_DTO.System.ActionDTO.TextText,1  F)YWIDESEAWCS_DTO.System.ActionDTO.MenuIdMenuId õJ(]WIDESEAWCS_DTO.System.ActionDTO.ActionIdActionIdÕÞ Ê! M 0 Ý W ýøšD»i¾b¿kҍC'KWIDESEAWCS_DTO.System.ActionDTOActionDTO°    ¿±£ÍE&77WIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System…œ×{ø
P%kaWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.InboundInboundf5Â¥*R$maWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.OutboundOutboundï5K.+O#[%aWIDESEAWCS_Common.TaskEnum.TaskTypeEnumTaskTypeEnumÒ äóÆP"AAaWIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnum£¿™C
Z!w#`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_FinishTask_Finishj7Ê «1T q`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_NewTask_Newñ7O2+S_)`WIDESEAWCS_Common.TaskEnum.TaskStatusEnumTaskStatusEnumÒæþÆPAA`WIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnum£¿*™P
1;    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.BoolIndexAttributeBoolIndexAttribute=(W    BoolIndexAttribute(int)Tw    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.IndexIndexñ÷ æ\k1    WIDESEAWCS_Common.Attributes.BoolIndexAttributeBoolIndexAttribute·ۑªÂSEE    WIDESEAWCS_Common.AttributesWIDESEAWCS_Common.Attributes…£Ì{ô
„°!9WIDESEAWCS_BasicInfoService.ScanStationService.RepositoryRepository(
3
9 „1k9WIDESEAWCS_BasicInfoService.ScanStationService.ScanStationServiceScanStationServiceœí •d    ScanStationService(IRepository<Dt_ScanStation>) „ði19WIDESEAWCS_BasicInfoService.ScanStationServiceScanStationService"Š»0 „“CC9WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ:ça
„?!4WIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepository(
3
9 „à1k4WIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoServiceœí •d    ProcessInfoService(IRepository<Dt_ProcessInfo>) „@i14WIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoService"Š»0 „ãCC4WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ:ça
„w!WIDESEAWCS_BasicInfoService.FormulaService.RepositoryRepository
 
í54)[WIDESEAWCS_BasicInfoService.FormulaService.FormulaServiceFormulaServiceŒÕ …\    FormulaService(IRepository<Dt_Formula>)©a)WIDESEAWCS_BasicInfoService.FormulaServiceFormulaService"z¯TCCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñçE
` !WIDESEAWCS_BasicInfoService.FormulaDetailService.RepositoryRepository6
A
; „_5sWIDESEAWCS_BasicInfoService.FormulaDetailService.FormulaDetailServiceFormulaDetailService¤ù h    FormulaDetailService(IRepository<Dt_FormulaDetail>) „µm5WIDESEAWCS_BasicInfoService.FormulaDetailServiceFormulaDetailService"’Á> „TCCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñHço
X    u! WIDESEAWCS_BasicInfoService.BoxingService.RepositoryRepository
 
ç4{'W WIDESEAWCS_BasicInfoService.BoxingService.BoxingServiceBoxingServiceˆ Ï Z    BoxingService(IRepository<Dt_Boxing>)Q_' WIDESEAWCS_BasicInfoService.BoxingServiceBoxingService" v¬ RCC WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñç>
|7
WIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualSÁ*•VÍ    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)¹!
WIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository/
:
 :X3o
WIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailService ó ™f    BoxingDetailService(IRepository<Dt_BoxingDetail>)³k3
WIDESEAWCS_BasicInfoService.BoxingDetailServiceBoxingDetailService"ŽdÝTCC
WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñçç
¾÷¾    ^§0.mo,    ’€€€¯n
þ0.co‚?mo‚!qu‚?"sy‚8_ht‚Aid‚#mo‚!9 o€€€¦Jô0_ba›|o’(‰Ufo’*‰Tpr’,‰jsc’.‰jta’&‰j un’-‰Tade’+‰U    ge’-‰Til’)‰R  na’-‰Td’2‰es’.‰jrdœse’*‰U    i›|k’&‰jti’.‰j    veœwc’&‰Vbas›|oaœx’(‰Tcan’.‰aes’,‰jin›|jo’'‰bodœm’2‰Rs_’&‰V
ts’6‰j ut’3‰jdes’&‰V t’) ‰G    
le’4‰gnoœeaw’&‰Vct’6‰j u’3‰jde’6‰jntœof’7‰jn’4‰jpoœr’5‰jquœrv’(‰N
 sc’4‰g e’&‰V s’,    ‰a    
ta’)‰R
 e’6‰j    oœxe’3‰jt’1‰jffl’7‰j    li’7‰j
or’*‰Ts’,‰P wo’-‰Tgboœde’)‰Tse’(‰Vhan’4‰gice’(‰N i›|de’&‰Vls’)‰R ne’4‰g  f’,‰P
g’(‰T on’.‰j scœto’-‰Tjob’'‰bkma’-‰T lad’+‰Us’*‰Ucj’'‰bed’6‰jo’4‰gp’5‰jin’4‰N
 se’)‰Rman’-‰O ma’2‰jpoœul’*‰Tnag’-‰Tdl’4‰genœs’4‰g  fo’,‰P gbœd’)‰Ts’(‰Vit’-‰Tli’4‰j    se’.‰j t’.‰jtcœoarœce’,‰jdeœff’7‰jw’-‰Tliœmm’2‰jpœneœl’4‰js’.‰j olœrk’-‰T
m’*‰Tyœse’,‰P iœxi’(‰Tplc’'‰bonœsœre’5‰jo’,‰jquaœrdnœepœs’5‰j    km’-‰T mu’*‰Toc’,‰jvi’(‰N  s_b›|t’&‰j avœca’.‰a oœea’&‰Vqœr’(‰N    
t’0‰jic›|n’,‰j    tœks’&‰jsc’5‰j i’,‰js’5‰j ta’.‰jtai’)‰R  s’&‰j t’.‰jcoœec’6‰j
x’1‰jio’.‰j
of’-‰Toœrœsc’6‰j ualœla’*‰Tni’-‰Tte’3‰jvetœic’(‰N  wcs’&‰V    id’&‰Vor’-‰T    xec’3‰jin’(‰T   
 
    
 
 
0
 
  1     
 
 
 
 
 
 0
 /
 
 
 
 
 
 
  0 9Ā€€Ž|P0_baœ6oœ8foœ9unœ;adeœ:geœ;ilœ7naœ;rdœ?seœ9iœ6veœ?wcœ6basœ6oaœ?xœ7cinœ6odœ>mœ>s_œ6desœ6tœ7noœ?eawœ6ntœ>poœ=quœ>rvœ6seœ6taœ7oœ?forœ9sœ6woœ;gboœ?deœ7seœ8iceœ6iœ6deœ6lsœ7nfœ6gœ7scœ>toœ;kmaœ;ladœ:sœ9inœ?seœ7manœ;poœ>ulœ9nagœ;enœ>foœ6gbœ?dœ7sœ8itœ;tcœ>oarœ?deœ>fwœ;liœ?mpœ>neœ>olœ?rkœ;mœ9yœ=seœ6iœ=xiœ7ponœ>sœ=quaœ>rdnœ?epœ=kmœ;muœ9viœ6s_bœ6avœ?coœ>eaœ6qœ>rœ6icœ6tœ=taiœ7coœ>ofœ;oœ?rœ=ualœ>laœ9niœ;vetœ?icœ6wcsœ6idœ6orœ;xinœ7     
 
 
     
                         èVŸ?¾€€€‚N‘0ardœ?veœ?boaœ? dnoœ?etoœ?gboœ? ingœ?
linœ?    ngbœ? oarœ?liœ?olœ?rdnœ?savœ?tooœ?vetœ?                                                PŸ>>„€€€€ƒ§0codœ> mœ>desœ>entœ>
quœ>seœ>iscœ>mpoœ>nenœ>    tcœ> odeœ>mpœ>neœ>ponœ>quaœ>scoœ>O¬]7
t ¬e    
„gÀE
—½õéÞÓȽ±¥˜Œrg[NC7,!    þóçÛÎÁ´§štgZMA4' ô è Ü Ð Å º ® ¢   
r g [ O D 9 . " 
õ
ê
ß
Ô
É
¾
³
¨

‘
…
z
o
d
Y
M
A
6
*
 
 
    ý    ò    æ    Û    Ð    Ä    ¹    ®    t    h    \    P    D    7    +         ÿóçÛϵ¨œ„xl`SF9,øëÞÑÄ·ª„xk^QD7+ûïãÖɽ½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½°£—Š}qeXK>1$
þòæÚζªž’†yl`SF:- üðäØÌÀ´¨œƒvi]PC6)õéÝÐö©œƒvi\O Ž nPâå· P    Í¶ Páµ PÆ´ P5γ P¼m² P mò± P    @!° P4¯ P Ô® PÈá­ P›!¬ P\5« Pî0ઠPÂ1© O–c O–bb Oç£a OT‡` OŸ©_ OÑÄ^ OŒ;] Oú¥\ OÇÛ[ M
'V M    s¨ Mÿh MNd M’p Mßh Mv Mjg M£zÿ Mærþ M(sý Mfwü MŸzû Mø    Œú MΠ   ¹ù L Y¨ L6ʧ L
ù¦ KyWZ KæñY K¯+X J    „gø JÀw÷ Jþuö J=tõ J‰gô J¾~ó Jô}ò J€kñ JÊið Jnï JPtî JÙ    í J¯    Fì I¬V¥ I溤 Iîì£ I‹
W¢ Iz¡ IA-  I5Ÿ I|ž IP¼ HÌoœ H6 › H
;š G mW Gæ.V G¯hU E.uë E}fê EÊgé Efè EN{ç E„yæ Eµå Eø²ä EÎßã D÷'9T D•
VS DzR DA-Q Dü;P DR3åO D4"N B ºÚâ B šá B
$£à B    B—ß B`•Þ B}—Ý BŒ¤Ü B™¦Û B¥§Ú B®©Ù B¼¤Ø BÇ©× BÉ ÒÖ BŸ ÿÕ A<uÔ A‹fÓ AÁ}Ò A hÑ AB}Ð Ax}Ï A«€Î AøÀÍ AÎíÌ @L!Ë @" Ê @ùÉ @Î!È @¥ÏÇ @{üÆ    €û99    €#9•d    €90    € 9ça 8Z     €Á8ø     €µ8–
    €©81        €8Ê    €‘8c    €…8û    €y8–    €m81    €a8Ì    €U8r
    €I8    €=8°    €18Yÿ    €%8
þ    €8žÖý    € 8{üü 7#$Å 7ø!Ä 7Óà 7¬¢Â 7{ÖÁ 6ï#À 6Æ¿ 6ž{¾ 6{¡½ ~.49#4•d40 4ça
2ó-.
2Ãd- 2›,
1õ$t
1Å$s 1ž‚r
1{¨q
.ô;p
.À(o
.†.n .?÷m .'l
-PEk -—j -ØÇi
,BWh
,6g
,Æ.f
,‘+e ,JVd ,†c
+íLb
+À|a
*,'`
*ù'_
*Î^
*±]
*6o\
*ý-[
*Ç*Z
*–%Y
*j"X *#7W *ögV
)íBU
)ÀrT
(^9S ( “R (ÞÃQ
'íXP 'ÀˆO ,Œ&e6N;&M/&ç¾L#%e6K%J %ç¾I
#]2H ,;#G ,/#ç²F ,#"i8E Z"“D Z "çÄC
![1B
!~A !ç¯@v ¾n? XQ g7> XF = X: çO< X.; X#h X> X ço
 t¼  ª»
áºõ
¹é    O¸Ý†·Ñ½¶Åôµ¹+´­`³¡¡s²•Ԁ±ˆ {°|D{¯pƒt®dØ $­W® Q¬JÌ}™>}˜2Jk—&‰t–Øx• ®¥” É} ÿ}€
Hj
‡t~ Øu} ®¢| ”aM ï L µJK ´qJ ï=I µzH NÊG ßeF 2íE ø*D EÉC z¿B 5;A ™|@ \¼?  À‘  ?  JŽ  Ái  wºŒ  Lè‹
 ç4    
 Z     ç>
    W
    æ     ªÂ
    {ô ¢&Š na‰
Òˆ ¶Ó‡ ˆ† ~… ªZ„ aªƒ 3Û‚
H!+
 *
õ)
Ê!( £Í'
{ø& "³®UÄF Î Y Ç k ¥ F
ö
—
E    ì    wæ[ÌzŸMô•§j+äQþ³‹‹‹‹‹‹‹aWIDESEAWCS_Model.Models.Dt_BoxingDetail.IdIdH5ëî ‡tQ}[+WIDESEAWCS_Model.Models.Dt_BoxingDetailDt_BoxingDetail=ØuJ|;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸Ñ®¢
(_WIDESEAWCS_Model.Models.Dt_Boxing.DetailsDetailsÉÑ RŒÛg#WIDESEAWCS_Model.Models.Dt_Boxing.ProductNameProductNameŠ7- 9 Ë{„g#WIDESEAWCS_Model.Models.Dt_Boxing.ProductCodeProductCodeÂ7e q {-e!WIDESEAWCS_Model.Models.Dt_Boxing.PalletCodePalleI~aWIDESEAWCS_Model.Models.Dt_BoxingDetail.IdIdH5ëî ‡tQ}[+WIDESEAWCS_Model.Models.Dt_BoxingDetailDt_BoxingDetail=ØuJ|;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸Ñ®¢
EtS1WIDESEAWCS_Model.LoginInfo.PasswordPassword õ$EsS1WIDESEAWCS_Model.LoginInfo.UserNameUserNameÓÜ Å$=rA1WIDESEAWCS_Model.LoginInfoLoginInfo«    ºfž‚;q--1WIDESEAWCS_ModelWIDESEAWCS_Model…—Œ{¨
npw?.WIDESEAWCS_ISystemServices.ISys_UserService.ModifyPwdModifyPwd    ô;    ModifyPwd(string, string)|o    15.WIDESEAWCS_ISystemServices.ISys_UserService.GetCurrentUserInfoGetCurrentUserInfoÓÀ(    GetCurrentUserInfo()]no-.WIDESEAWCS_ISystemServices.ISys_UserService.LoginLogin™†.    Login(LoginInfo)Wmc-.WIDESEAWCS_ISystemServices.ISys_UserServiceISys_UserServiceP{»?÷PlAA.WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServices8'
}k)C-WIDESEAWCS_ISystemServices.ISys_TenantService.InitTenantInfoInitTenantInfocPE    InitTenantInfo(string, int)Zjg1-WIDESEAWCS_ISystemServices.ISys_TenantServiceISys_TenantServiceEW—PiAA-WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesâþ¡ØÇ
 h)e,WIDESEAWCS_ISystemServices.ISys_RoleService.SavePermissionSavePermissionUBW    SavePermission(List<UserPermissionDTO>, int)g7A,WIDESEAWCS_ISystemServices.ISys_RoleService.GetUserTreePermissionGetUserTreePermission6    GetUserTreePermission(int)f=A,WIDESEAWCS_ISystemServices.ISys_RoleService.GetCurrentTreePermissionGetCurrentTreePermissionÙÆ.    GetCurrentTreePermission()se)3,WIDESEAWCS_ISystemServices.ISys_RoleService.GetAllChildrenGetAllChildren¡‘+    GetAllChildren(int)Wdc-,WIDESEAWCS_ISystemServices.ISys_RoleServiceISys_RoleService[†JVPcAA,WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServices'C`†
]bk5+WIDESEAWCS_ISystemServices.ISys_RoleAuthServiceISys_RoleAuthServiceþ1íLNaAA+WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÊæVÀ|
]`s%*WIDESEAWCS_ISystemServices.ISys_MenuService.DelMenuDelMenu?,'    DelMenu(int)Y_m)*WIDESEAWCS_ISystemServices.ISys_MenuService.SaveSave ù'    Save(Sys_Menu)i^{#-*WIDESEAWCS_ISystemServices.ISys_MenuService.GetTreeItemGetTreeItemÕ Î    GetTreeItem(int)Z]s*WIDESEAWCS_ISystemServices.ISys_MenuService.GetMenuGetMenu¸±    GetMenu()\y!}*WIDESEAWCS_ISystemServices.ISys_MenuService.GetActionsGetActionsF
6o    GetActions(int, List<ActionDTO>, List<Permissions>, int)s[)3*WIDESEAWCS_ISystemServices.ISys_MenuService.GetPermissionsGetPermissionsý-    GetPermissions(int)vZ+5*WIDESEAWCS_ISystemServices.ISys_MenuService.GetUserMenuListGetUserMenuListÕÇ*    GetUserMenuList(int)|Y/9*WIDESEAWCS_ISystemServices.ISys_MenuService.GetMenuActionListGetMenuActionList–%    GetMenuActionList(int)X=A*WIDESEAWCS_ISystemServices.ISys_MenuService.GetCurrentMenuActionListGetCurrentMenuActionListqj"    GetCurrentMenuActionList()WWc-*WIDESEAWCS_ISystemServices.ISys_MenuServiceISys_MenuService4_û#7PVAA*WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesAög
ßZsål æ S Ó *
faöpéNÔZZZZZõõõ    sÓLLLLL߁yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767783815.log܆+ûgǁéWyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767782006.logÜ‚6KÔwÚbaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\PLCEnum\R_PLCDBName.csÜ~½}º (wÚYaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\PLCEnum\W_PLCDBName.csÜ~½v„`£ ×_‚ E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csprojÜ~¼ÍCzºq
wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.csÜu¦ü²Ll„sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.csÜ|)îÓTyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767690548.logÜ}ÿ¹݁ÒOwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.csÜ~3¨‡¦xҁcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\Spire.XLS.dllÜ~üô`ÝçðsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.csÜ~µ¿æ+(iÚcEE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.csÜ~½®€W¥wE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.csÜyhˆ€$çkE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.csÜya?Íxö~¤oE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.csÜy`ÃO°"
›uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csÜy\ I£šUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonÜyQ†ìõáY‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ScanStationController.csÜuÌ    Žß;‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoController.csÜt|Jkg›e‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaDetailController.csÜy5Çbq ±‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaController.csÜy50PQ—myE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767090372.logÜ~¨:-à"‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingController.csÜy2@í–%”‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingDetailController.csÜy2>OE{}ŽumE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csÜy/]|̚ƒ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局异常错误日志AOP_1767041349.log܆‚˜g¬syE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1766486446.logÜy3¨úš¹wqaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csprojÜz8œë p‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\WIDESEAWCS_TaskInfoService.csprojÜx†ëøH        o‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csprojÜx†ëø øn /÷©Gå
ñ
°
k
$    Ê    {    1Û…9íœO»n¼YöŸ<é–I÷÷÷÷÷÷÷÷÷÷€€€€€     &      cV#iWIDESEAWCS_Model.Models.Dt_ProcessInfo.Height1Height1 ; © ± RlVÎo!WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewAngleScrewAngle
K<
é
 
ô
‘pVsq#WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewTorqueScrewTorque    ˆ<
&
2     ÎqVq#WIDESEAWCS_Model.Models.Dt_ProcessInfo.PressHeightPressHeightÅ<    c     o      qV¹o!WIDESEAWCS_Model.Models.Dt_ProcessInfo.TestResultTestResult7¡
¬ PiV^9WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStandardStiffnessValuE¸}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationEndProductStationEnOVY)BWIDESEAWCS_Model.Models.Sys_DictionarySys_DictionaryZ{  É ÒJU;;BWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models© ܟ ÿ
PTgAWIDESEAWCS_Model.Models.Sys_Department.RemarkRemarký5¤ <uPSgAWIDESEAWCS_Model.Models.Sys_Department.EnableEnableJ7Ýä ‹f`Rw)AWIDESEAWCS_Model.Models.Sys_Department.DepartmentTypeDepartmentType€7"1 Á}TQkAWIDESEAWCS_Model.Models.Sys_Department.ParentIdParentIdË7^g  h`Pw)AWIDESEAWCS_Model.Models.Sys_Department.DepartmentCodeDepartmentCode7£² B}`Ow)AWIDESEAWCS_Model.Models.Sys_Department.DepartmentNameDepartmentName77Ùè x}]Ns%AWIDESEAWCS_Model.Models.Sys_Department.DepartmentIdDepartmentIdj7  «€OMY)AWIDESEAWCS_Model.Models.Sys_DepartmentSys_Department>_YøÀJL;;AWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñÊÎí
HK_@WIDESEAWCS_Model.Models.Sys_Actions.ValueValueZ` L!FJ]@WIDESEAWCS_Model.Models.Sys_Actions.TextText05 " JIa@WIDESEAWCS_Model.Models.Sys_Actions.MenuIdMenuId ùNHe@WIDESEAWCS_Model.Models.Sys_Actions.ActionIdActionIdÙâ Î!IGS#@WIDESEAWCS_Model.Models.Sys_ActionsSys_Actions² ñ¥ÏIF;;@WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models…žÙ{ü
SEo7WIDESEAWCS_Model.Models.System.RoleNodes.RoleNameRoleName1: #$SDo7WIDESEAWCS_Model.Models.System.RoleNodes.ParentIdParentId ø!GCc7WIDESEAWCS_Model.Models.System.RoleNodes.IdIdÞá ÓLB]7WIDESEAWCS_Model.Models.System.RoleNodesRoleNodes¹    È†¬¢WAII7WIDESEAWCS_Model.Models.SystemWIDESEAWCS_Model.Models.System…¥¬{Ö
D@S6WIDESEAWCS_Model.RoleAuthor.actionsactionsý ï#B?Q6WIDESEAWCS_Model.RoleAuthor.menuIdmenuIdÑØ Æ>>C!6WIDESEAWCS_Model.RoleAuthorRoleAuthor«
»^ž{;=--6WIDESEAWCS_ModelWIDESEAWCS_Model…—…{¡
¶}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent8StationComponent8
¡6 A S
áv}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent7StationComponent7    Ø6
x
Š
 }/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent6StationComponent6    6    ¯    Á     O¤}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent5StationComponent5F6æø †;}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent4StationComponent4}6/ ½Ò}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent3StationComponent3´6Tf ôi}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent2StationComponent2ë6‹ +i<1WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent10StationComponent10 37 Õ è tni}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent9StationComponent9 j6
  ª_w'WIDESEAWCS_Model.Models.Dt_BoxingDetail.ComponentNameComponentNameˆ7+ 9 É}_w'WIDESEAWCS_Model.Models.Dt_BoxingDetail.ComponentCodeComponentCode¾7a o ÿ}UmWIDESEAWCS_Model.Models.Dt_BoxingDetail.BoxingIdBoxingId9œ¥ Hj
«Ô¯óçÚÍÁµ¨›ŽtgZNB6*úîâÖɼ°À³§šui]QE9-!    üðãÖʽ°£–‰|obVJ=0#    ýðãÖɼ¯ž‘„wj]PD7+ ú í à Ô È ¼ ° ¤ — Š ~ q d X K > 2 %  þ ñ ä × Ë ¿ ³ ¦ ™ Œ  r e X K > 1 %   ô è Ü Ï Â ¶ © œ  ‚ v i \ O B 5 )   
ù
í
á
Õ
É
½
±
¥
™

€
t
h
\
P
D
8
+
 
 
    ø    ë    Þ    Ñ    Ä    ·    ª        ‘    …    x    k    _    S    G    :    -             ùíáÖË¿³¨’†{peZOC6*úïãØÍ6( þðâÔÆ¸ª‚tfseXK>óæØÊ¼®¡“…wi[MXJ=0#    üîáÔǹ«?1#ù0ëÝÏÁ³«^®_«† {n †E{m †ƒtl †Ø Lk †® yj µAÐ
»X µ/Ø€W µ²®V µ[ßU µ”OT µ43S µÊ&R µ/WQ µè=P µ©5O µf9N µ=M µä1L µŸ;K µf/J µKƒI µìK©H«g
[ƒX ð_W b‚V !5U ¹\T I    œS     ÍR     ÆQ  sŠP  •ŽO  ¹ŠN 
ێM     ÿŠL     !ŽK I†J mŠI ŽH ¶†G á…F  …E A{D y{C ¸tB  ÁA ë î@ æ;[- æ(:, æ´h+ æ0m* æž) Hža¢ Hý ¡ HŽ}   ëža  ëý Œ  ëŽ}‹  å¨e{  åÿz  压y  tŽYl  týók  tŽej  ] P iï¸ Pâå· P    Í¶ Páµ PÆ´ P5γ P¼m² P mò± P    @!° P4¯ P Ô® PÈá­ P›!¬ P\5« Pî0ઠPÂ1© O–c O–bb Oç£a OT‡` OŸ©_ OÑÄ^ OŒ;] Oú¥\ OÇÛ[ M
'V M    s¨ Mÿh MNd M’p Mßh Mv Mjg M£zÿ Mærþ M(sý Mfwü MŸzû Mø    Œú MΠ   ¹ù L Y¨ L6ʧ L
ù¦
dþ"9
dÑ!8 d£ß7
d{
6 cw.> cN= c$ < cþ; cÙ: c¬9 c{48
bp,5
bG4
b 3
b÷2
bÒ1 b£0
b{+/
a¥*%
a.+$ aÆ# a™C"
`«1!
`2+  `Æ `™P _$÷Þ _b%Ý _h„Ü _ Ú‚Û _´Ú _ÈFÙ _/Ø _X-× _5Ö _«wÕ _¦Ô ^® ^„ € ^S ^&~ ^ AÛ} ^ Fñ| ^
ƒ·{ ^    Ô£z ^    ¸y ^ñx ^IÄw ^;v ^t×u ^A–t \þ|7 \>s6 \}v5 \Æk4 \ n3 \ Iu2 \ i•1 \ žz0 \
ïd/ \
=g. \    }s- \Ëg, \v+ \@}* \}v) \¾t( \ÿt' \<x& \ˆg% \Äw$ \ÿ{# \Q0" \ζ! [2ŽÓ [CãÒ [¶Ñ [K,Ð [ÕòÏ [©    !Î ZZás Z‚Ìr Z;;q Z¥p ZrÓo Yu  Y`d Y’ƒ YÝg Y%j Y]{ Y”| Yø“ YÎÀ X%    Í X :Ì X ŠË X
rÊ Xj*É XöùÈ X¦DÇ X<^Æ Xó?Å Xº/Ä X{5à X ( XÚ^Á Wâñn WÁm WOºl W1k Wi¼j W$;i W’Hh WX…g V´cÀ V6è¿ V
¾ Uˆaf Uæ
e U¯Dd Sàf S-f Szf S´y Sé~ S2 S΂ QÔ¨ QPx Qœg Qég Q6f Qaˆ Qœx
Qø‹     Qθ P1ƽ P'~    w¼ P%Ì» P"Üĺ P!fj¹ KyWZ KæñY K¯+X J    „gø JÀw÷ Jþuö J=tõ J‰gô J¾~ó Jô}ò J€kñ JÊið Jnï JPtî JÙ    í J¯    Fì I¬V¥ I溤 Iîì£ I‹
W¢ Iz¡ IA-  I5Ÿ I|ž IP¼ HÌoœ H6 › (([LŸP”€€€€¿$; ‚W 6     
 0onc/@†%  d'    Š
 
 
†Ze?A           kˆC†/f9. hŠL
 
 
†Zi( lX ‚U
 1n0ns.&     d
,
u        t‚?  
 
        =
…'            
 
%†olI/paƒŽ
eƒ rdtj iƒ  kƒ
 
 
 
 
m 8N‡TF†_qŠI.…y7 sŠqt‚GŒny            1                ‚}†g    )    „_    "    ~        scŠJ    †^
e2‰c)„`    } i    1‚}†g)„_"~tƒ  Ž
to‚E
 
 
 
un$t$Š% †^vaŠqwnŠH†^ xi5<‡D!!I‡palˆ‚SrD         
 st‚"t‚Lu‘ co‚A  daƒ[†|ee#r0+  Q3           " ho‚'id2‚    nƒ la‚~ce6on?A           7ˆ:Cr‚GŒns    1‚} †g)„_"~peƒ "iƒ reŠv…y o1  9     … ‚'$„DNsept_‚,i n‚  utŠI†^wdp9 J]qty2‰> ua?‚#   ‡ber %‡%
.
…y7r.c‚?    …h '†fƒhƒ_ix+peadƒ0    mr  yƒ4 bofch‚ko‚u         de^ eao/cŠK†Y
 
 
 
 
 
e^ 
x  
J 
gƒmT  5nX      U # ^4 
p    1‚6G †g)„_"~qr ss?ˆC…ywŠH -…x5         ia‚}bd‚eƒ# f‚|no/?pv    zƒ      kmƒ     lo‚maƒ    eZ‚_i0+ Q3Eu 8N‡TF†_nas-o^ ocŠk„Hd1 †j‚''†4fƒ        i‚C lbZD  
 
: …        %†pƒ
rj    t‚E                pe0‚    w‚)quŠI    .    …y7raƒ4 eX    }4ojs.‚?    …u '†em
‚ K        iŠqtaƒd‚G    ŒniƒmM
rgCC^z‚?&###ue‚*veYf    …E '†i
 
0   
  d
A
           
     †P'  „^ } P  yc‚Od7 lPrDsR‚Ls.bˆ\ '†q‚?!sAw! !Z_aGb  2    ‰c ) „` !   c   y d&    {    kDiO        lUlMmW                                 $L„j ‚) * rb%    SUs‚D  
   '               …    ' † tj/W] !5M
 
4@8 
0
- 2-
 : (
 
@ >- Z
 
 > 
 
  8)%
60 # 
 
 
.0 .
j  24
Xy  )6S(K ""°@ f |
­
    2aŸV”€€€€¿0K0s_um5S^w‚?          ap4‚    v;$    z Nca-‡t‡1 
1o?‰nrˆI
-…x  5 ea                                „CE '    „H 7dpn psq?‰nr$     
 
    f                        
 
 
 
    „    '     '        „^   }   P    
tƒ      ‡/ †^heŠv…yic2ˆ$""'"    )„`" nŠk „H    o0 +  Q 3 E  ‡$t    1‚}†g)„_"~k_ esEKt#ocƒr‚A  pa‚LosqlZse‚?  hŠv…yi0 +
 Q 3 E
 ‡
„Ho‚A  vŠs        wtta    ca† &# …_ /      c‚Ve& U W%"" "%      ie‰m‚1oƒ prr‚ ˆWsP‚B  uctlŠupƒ0vaŠs
 
wa‚g‚xotynƒs&
T                  #   ##        t10<_b}‡f‰,i‚,pŠks-ab‚c\e      Di   1  9 4…S@
 
  /
 
&†a le‚@
nŠH#†2rƒN/ s‚rO K t
c†m‡1 uŠJ†^bo$ch‚L|o? A
 
8   …(‚ *uX    }4da‚3
ŒnbƒS e‚Ciƒ#‡% †^eco                        dƒD†|m&
U W&##    
#&3    
 nj.9\rƒsŠ[x*    r
 
 
 
 
 
hc‚e  eŠG†+   1 i‚o>N
 
 
rƒE    sb ‚]  v‚idD
 
 fŠsmp    Wnk ‚ _ o'
 
  Q                                %                        …g        )†
        
    1          tƒleŠE†^ meX p N o‚1na
 
6 <…q‚(+o.&aƒ4 c‚E    eh    fƒ  k‚6H    mƒpƒŽ    r    1m†g „="~7 sŠJ†S         parc‚A  e[‚Xro uŠI†^qt2‰>
re^     x      J     ‡)i  ‚ o‚?        …e        %†u‚*scp  eP ‚( 
 3  t‚4uƒ0tek‚_p‚A  r  A y  K yR Jupƒ     s    ;  0
7" 1
'‚
ƒ 75-
      # B

^   n     :# K 0a.
"  #
 
v /"
 
 C
 *( %"
     Ö>­9¡    iÑC¬`±€€d(0cjo§Mjob§Mlcj§Mplc§M            œ€€€€‚"}0_ta§L ask§Lwc§Lcs_§L
des§Leaw§Lse§Lid*€€€‚"}0and¨can¨ts¨ det¨le¨ect¨ de¨te¨    ր€€¨€€€€‚$~0box¨@con¨@gco¨@ing¨@ler¨@le¨@ngc¨@tr¨@
oll¨@ nt¨@    xi¨@rol¨@ tro¨@ xin¨@                                    ¤€€€€‚$~0box¨?con¨?gco¨?ing¨?ler¨?le¨?ngc¨?tr¨?
oll¨? nt¨?    xi¨?rol¨? tro¨? xin¨?                                    ‚l €€€€…\B0.bo¨>co¨>_se¨> awc¨>box¨> con¨>s_¨>
des¨>eaw¨>r.¨>s¨>v¨>se¨>gin¨>%ide¨>nf¨>&g¨>#ler¨>le¨>nfo¨>'gi¨>$tr¨>oll¨>nt¨>xi¨>!r.c¨>ol¨>s.¨>ve¨>s.b¨>_s¨> ea¨>r¨> tro¨>ver¨>wcs¨>    id¨>xin¨>"                                                                    ƒ    œ€€€€†]0.bo¨;co¨;_se¨;awc¨;box¨;con¨;s_¨;des¨;eaw¨;r.¨;s¨;v¨;se¨;gco¨<in¨;ide¨;nf¨;g¨;ler¨;le¨;nfo¨;gc¨<i¨;tr¨;oll¨;nt¨;xi¨;r.c¨;ol¨;s.¨;ve¨;s.b¨;_s¨;ea¨;r¨;tro¨;ver¨;wcs¨;id¨;xin¨; 
 
       ˜€€€€‚$~0box¨=con¨=gco¨=ing¨=ler¨=le¨=ngc¨=tr¨=
oll¨= nt¨=    xi¨=rol¨= tro¨= xin¨=                                    ”"”€€€€¨H    Ã‚m  ?  0tvi‚|uS‚NwiŠF†^ ymƒp#/ $zj‚?'$$$uacX‚Ul?‰nr‚?$!!!byƒ1ccto‚\        t1†j‚''†4   di‚3t-ed7‚Nn‚*oŠI †^rƒ$sr ‡s id)
2la 8N    ‡TF    †_eƒiZ ‚_ tŠu    na|d$iƒ  pdƒ[†|eƒ0rlu- rX    }4se
'
   2 0                A tƒ tb$ehb \? Q  &    2  ihoƒ‡@†5
pŠI†^y‚val+ -‡?  ec;ph‚_rYf    …E '†ic  0   
S A      
 
 †P'  „^ } P  e‚|ue7‚Nw_p‘ag‚nŠx…ybo‘cs                                                                                                                                                                                                                                                                                                    „C    E                 '                        „H                         7        dd‚1 i‘(oŠH†^ ebƒgl‚xid                                „CE '         „H 7     nsŠH    †^onŠJ†^rt‚+                      re‘#toŠI.…y7 xat
 
diŠK†Zech in5<‡D""I‡po5ta‚A      yco‚OdiŠL†Zt7liPrDmoƒncƒ    pe#/     $    wpA Jcroƒ1
s_P Z                 -$    eR‚Lt& U W$!! !$3     vaƒ2zatƒ  efƒ j‚}    jo‚?(%%%     
 
. 1
    l  *
! # W‚     ‚
 ‚ &  :   X    
·â4Ò«˜…jO1
õÛÁ§sYL:(æ öâ ß È ± š ƒ lû V H ; - !   û î Û Ã ¶ © œ … v i X N B 3  ý è Ù Â « •  c G .  
ö
ä
Ñ
¾
«
˜
†
{
o
Y
>
+
 
 
    ö    ê    Þ    Ñ    Ä    °    ž    Š    v    i    ]    O    A    0    #    üâĦ‚^SH;,ýïÚ¾¢“oYE+ûïã×Ë¿³¦Å–†v]F/õÛÁ²žŠ~o_L8"ïÒ´—y[G0ößʳœ…rZB*÷áʵ¢ŽmLìÕ¹_scanStationService+ _unitOfWorkManage*‰_processDetailInfoService)jGetSuperA3_scanStationService/_unitOfWorkManage?_processDetailInfoService7_formulaDetailService CGetProductAndPartsByBoardNo CGetProductAndPartsByBoardNos)GetPermissions³)GetPermissions[+GetMenuByRoleId±/GetMenuActionList¸/GetMenuActionListY GetMenu» GetMenu¶ GetMenu` GetMenu]1GetLeftInitialData´1GetLeftInitialData â1GetLeftInitialData ˜'GetImportDataG/getEndProductListF/getEndProductList>/getEndProductList2+GetDictionaries£/GetDeviceProInfosC!EGetCurrentUserTreePermissionË1GetCurrentUserInfoÝ1GetCurrentUserInfoo)GetCurrentUserz=GetCurrentTreePermissionÊ=GetCurrentTreePermissionl=GetCurrentTreePermissionf=GetCurrentMenuActionList®=GetCurrentMenuActionListX#GetChildrenÉ%GetAllRoleIdÈ!GetAllMenu¯-GetAllDictionary¥)GetAllChildrenÇ)GetAllChildrene!GetActionsº!GetActions\ Gender/)FormulaServiceA)FormulaService@FormulaId À5FormulaDetailService ±5FormulaDetailService °;FormulaDetailController{;FormulaDetailControllerz/FormulaController=/FormulaController<3FinishedProductCodeÉ!ExportData!ExportData
d!ExportDataµ EndDateñ Enable. Enable Enable Enableé EnableÝ EnableÓ
Email-#ElapsedTimeð)Dt_ScanStation5Dt_ProcessInfoDetailê)Dt_ProcessInfok-Dt_FormulaDetail ¾!Dt_FormulaA+Dt_BoxingDetail}Dt_Boxing9DispatchInfoControllerM9DispatchInfoControllerL+DintAutoScrewOnJ DicValueç
DicNoÜ    DicNo8 DicNameæ DicNameÛDicListIdå DicListâ
DicIdè
DicId×#IDeviceProtocolDetailControllerJ#IDeviceProtocolDetailControllerI=DeviceProtocolControllerF=DeviceProtocolControllerE5DeviceInfoControllerB5DeviceInfoController@ DetailsQ Details#Descriptionÿ DeptName+ DeptName DeptId Dept_Id,)DepartmentTypeÒ)DepartmentNameÏ%DepartmentIdÎ)DepartmentCodeÐ DelMenu½ DelMenuc DelMenu` DbType
DBSqlÚ DBServerÙData:'CustomProfile'CustomProfile7CustomAuthorizeFilterŒ-ConnectionString ConfigØ
Config9%ComponentQtyp'ComponentName Â'ComponentName'ComponentCode Á'ComponentCode€'BoxingService'BoxingService BoxingId3BoxingDetailService3BoxingDetailService˜9BoxingDetailControllerq9BoxingDetailControllerp-BoxingController@-BoxingController?1BoolIndexAttribute1BoolIndexAttributeBeginDateï+AutoMapperSetup‰-AutoMapperConfig†AAutofacPropertityModuleRegƒAuthValue AuthId    Authý#AuditStatus4 Auditor5AuditDate3/AddWebSocketSetup™ Address2 AddDataC AddDataÜ1AddAutoMapperSetupŠ'ActionToArrayµ Actions> Actions actionsÀ Actions5 Actions. ActionIdÈ ActionId( ActionDTO'-_webSocketServer“/_unitOfWorkManageœ/_unitOfWorkManageÖ/_unitOfWorkManageÐ/_unitOfWorkManageÃ/_unitOfWorkManage«/_unitOfWorkManageŸ3_RoleAuthRepositoryž_)_boxingService%_menuServiceØ%_MenuServiceÄ _mapper¬5_httpContextAccessorv5_httpContextAccessorq5_httpContextAccessori5_httpContextAccessor]5_httpContextAccessorP5_httpContextAccessorA+_formulaService+_formulaServiceš+_formulaService­5_boxingDetailService'7_formulaDetailService›7_formulaDetailService®'_cacheService×'_cacheService '_cacheServiceQ_bo Execute)_boxingService™3_processInfoService%
    ÌÛ·¢t3ïÞͶ¢sX=#øâÌòÛbUH;! ý ö î æ Þ Ö Î Æ ¾ ¶ ® ¦ ‹ v j ` N ; '  ô Û Ñ Æ ­ ’ w \ M >   ð Û Â ­ –  j ` V K @ 2   
ø
ì
à
Ô
Æ
»
­
Ÿ


w
f
Q
D
7
*
 
    ý    Ý    Ï    Á    ³    ¥    —    ˆ    {    m    _    Q    D    <    3à   '    
ïÔdC¥¶ž†udSB/ ú騯½²¡‰{k[>!çÍ·«Ÿ“‡{iZK;+ûëÛË»« …•™†yi]QC5' õÝÅ©Žri_UG4  ôÜÄ©Žv^N4# úïßÑÑ/HandleOfflineScan-HandleDetectScan+HandlePressScan-HandleOnlineScan#GetTreeItem^ CProcessInfoDetailController CProcessInfoDetailController!Repository!Repository!=ProcessInfoDetailService PLCJob ß StartPLC •!StartAsync•
Start³%SerializeJwt}/ScrewTorqueOutputI#ScrewTorquew5ScrewDownsetDistanceH!ScrewAnglex1ScanStationService¯1ScanStationService¬7ScanStationController Þ7ScanStationController Ý1SaveToolingBoardNo¡1SaveToolingBoardNo1SaveToolingBoardNor)SavePermissionÍ)SavePermissionn)SavePermissionh SaveCache;    Save¼    SavebSave_9rrealDetectScrewTorque    !7rrealDetectScrewAngle    "9rrealDetectPressHeight     1rrealDetectHeight3    %1rrealDetectHeight2    $1rrealDetectHeight1    #
RolesRoleNodes RoleName& RoleName RoleNameŠRoleId RoleId
!RoleAuthor¾ Role_Id%'ResponseParamó%RequestParamò!Repositoryž!Repository !RepositoryB!Repository1!Repository°!Repository º!Repository!Repository ²!Repository ”!Repository´!RepositoryB!Repository    %ReplaceToken~ Remark( Remark  Remarkë Remarkà RemarkÔ-RegisterMappings‡5rboolOnlineExecuting    ;rboolLocation4ScanStart    ;rboolLocation3ScanStart    ;rboolLocation2ScanStart    ;rboolLocation1ScanStart    !rboolHeart    !rboolError     rboolEMG    1rboolAutoExecuting    #R_PLCDBName    
Query¤pwd%ProductWidthF#ProductNameî#ProductNameo#ProductNameD#ProductName'ProductLengthE'ProductHeightG#ProductCodeí#ProductCoden#ProductCodeC#ProductCode1ProcessInfoService1ProcessInfoService=ProcessInfoDetailService 7ProcessInfoController
c7ProcessInfoController
b#PressHeightv    í PLCJ! PLCJobPid;Pid2 PhoneNo' PausePLC² PausePLC à PausePLC – PasswordtPartsListÊ ParentId ParentId ParentIdß ParentIdÑ ParentIdÄ!PalletCodeì PLCJob
!PalletCodem!PalletCode Outbound$ OrderNo OrderNoê OrderNoÞ+OnAuthorization#objKeyValue²    name€ModifyPwdÞModifyPwd{ ModifyPwdp MenuType
Menus MenuNameü MenuId MenuIdû MenuIdÉ menuId¿
MenuId) MenuDTO-/MenuActionToArray´ LoginInfor
LoginÚ
Loginy    Loginn    Load„/LastModifyPwdDate1-ISys_UserServicem1ISys_TenantServicej-ISys_RoleServiced5ISys_RoleAuthServiceb-ISys_MenuServiceW+ISys_LogServiceU9ISys_DictionaryServiceRAISys_DictionaryListServicePIsScanned {IsScanned Ã7IsComponentCodesEqual 7IsComponentCodesEqualŸ7IsComponentCodesEqual 3IScanStationService “
IsApp=    IsApp43IProcessInfoService³?IProcessInfoDetailService)InitTenantInfoÒ)InitTenantInfos)InitTenantInfok%InitTenantDbÓ    Index Inbound%+IFormulaService07IFormulaDetailService ¹IdëIdId zId ¿IdlIdBIdId:IdîIdÃId~Id1    Iconþ)IBoxingServiceA5IBoxingDetailService Height3{ Height2z Height1y%HeadImageUrl0/GetSuperAdminMenu°+GetSignalStates³+GetSignalStates á+GetSignalStates —-GetVueDictionary¢-GetVueDictionaryT-GetVueDictionaryS-GetVueDictionaryS5GetVierificationCode|7GetUserTreePermissionÌ7GetUserTreePermissionm7GetUserTreePermissiong+GetUserMenuList¹+GetUserMenuListZ/GetUserChildRolesk#GetTreeMenu_#GetTreeItem·#GetTreeItema 1l®Z°Z ´ ^  ² V  ¶ \
ÿ
¦
K    ö    Ÿ    Fï¢^Èr$Ëq#Ý‘Aó¦`Ây0ÙŒ9è¡R¸lI‚]MWIDESEAWCS_Model.Models.Sys_Menu.ActionsActions
h
p
'VF‚YMWIDESEAWCS_Model.Models.Sys_Menu.MenusMenus
 
     s¨N‚_MWIDESEAWCS_Model.Models.Sys_Menu.MenuTypeMenuType¾7    Q    Z ÿhL‚]MWIDESEAWCS_Model.Models.Sys_Menu.OrderNoOrderNo6¥ NdD‚UMWIDESEAWCS_Model.Models.Sys_Menu.UrlUrlS5ñõ ’pN‚_MWIDESEAWCS_Model.Models.Sys_Menu.ParentIdParentIdž71: ßhP‚aMWIDESEAWCS_Model.Models.Sys_Menu.TableNameTableNameÝ5{    … vJ‚[MWIDESEAWCS_Model.Models.Sys_Menu.EnableEnable)7½Ä jgTe#MWIDESEAWCS_Model.Models.Sys_Menu.DescriptionDescriptiond5  £zF~WMWIDESEAWCS_Model.Models.Sys_Menu.IconIcon§5FK ærF}WMWIDESEAWCS_Model.Models.Sys_Menu.AuthAuthé5‰Ž (sN|_MWIDESEAWCS_Model.Models.Sys_Menu.MenuNameMenuName%7ÇÐ fwJ{[MWIDESEAWCS_Model.Models.Sys_Menu.MenuIdMenuId^7 ŸzCzMMWIDESEAWCS_Model.Models.Sys_MenuSys_Menu8S    1ø    ŒJy;;MWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñ    –Π   ¹
Kx[JWIDESEAWCS_Model.Models.Sys_Log.User_IdUser_Id    C7    Ö    Þ     „gMw]JWIDESEAWCS_Model.Models.Sys_Log.UserNameUserName7    !    * ÀwIvYJWIDESEAWCS_Model.Models.Sys_Log.UserIPUserIP½7_f þuCuSJWIDESEAWCS_Model.Models.Sys_Log.UrlUrlü7 ¤ =tKt[JWIDESEAWCS_Model.Models.Sys_Log.SuccessSuccessH7Ûã ‰gWsg'JWIDESEAWCS_Model.Models.Sys_Log.ResponseParamResponseParam}7! / ¾~Vre%JWIDESEAWCS_Model.Models.Sys_Log.RequestParamRequestParam÷óW d ô}Kq[JWIDESEAWCS_Model.Models.Sys_Log.EndDateEndDate?7ÖÞ €kSpc#JWIDESEAWCS_Model.Models.Sys_Log.ElapsedTimeElapsedTime‹5 & ÊiOo_JWIDESEAWCS_Model.Models.Sys_Log.BeginDateBeginDateÐ7h    r nAnQJWIDESEAWCS_Model.Models.Sys_Log.IdId5´· PtAmKJWIDESEAWCS_Model.Models.Sys_LogSys_LogùìÙ    Jl;;JWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¹Ò    #¯    F
TkoEWIDESEAWCS_Model.Models.Sys_DictionaryList.RemarkRemarkï5– .uVjqEWIDESEAWCS_Model.Models.Sys_DictionaryList.OrderNoOrderNo=6ÎÖ }fTioEWIDESEAWCS_Model.Models.Sys_DictionaryList.EnableEnable‰7$ ÊgRhmEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicIdDicIdÕ8jp fXgsEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicValueDicValue    ;³¼ N{VfqEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicNameDicName@:èð „yZeuEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicListIdDicListIdr9    ' µWda1EWIDESEAWCS_Model.Models.Sys_DictionaryListSys_DictionaryListBgCø²Jc;;EWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñ¼Îß
PbiBWIDESEAWCS_Model.Models.Sys_Dictionary.DicListDicList  ‡ ºÚYao!BWIDESEAWCS_Model.Models.Sys_Dictionary.SystemTypeSystemType
Ó7 –
¡ šQ`gBWIDESEAWCS_Model.Models.Sys_Dictionary.RemarkRemark    å5
³
º
$£U_kBWIDESEAWCS_Model.Models.Sys_Dictionary.ParentIdParentId    7    Ã    Ì     B—S^iBWIDESEAWCS_Model.Models.Sys_Dictionary.OrderNoOrderNo 6àè `•Q]gBWIDESEAWCS_Model.Models.Sys_Dictionary.EnableEnable<7 }—O\eBWIDESEAWCS_Model.Models.Sys_Dictionary.DicNoDicNoK7# Œ¤S[iBWIDESEAWCS_Model.Models.Sys_Dictionary.DicNameDicNameX7*2 ™¦OZeBWIDESEAWCS_Model.Models.Sys_Dictionary.DBSqlDBSqlc89? ¥§UYkBWIDESEAWCS_Model.Models.Sys_Dictionary.DBServerDBServerl8AJ ®©QXgBWIDESEAWCS_Model.Models.Sys_Dictionary.ConfigConfig|6LS ¼¤OWeBWIDESEAWCS_Model.Models.Sys_Dictionary.DicIdDicId†7]c Ç© !!ÐÐÐÐÐÐÐÐÐÐПẀ€€€¿20.ba¥?\oˆ_ŸAcoˆ_<‚mo¥?*_ba›3‰p_  o¤ƒfo¤ƒib¥%p mo¥?* pr¤**‚,sc¤„eˆ_< ‚ ta¤„ un¤„ade¤„    ge¤„il¤*,s   ll¤)*me¥D*
na¤„d¤ƒ}s¤„se¤„    i›3‰pC!k¤„ta›7ŠO    i¤„    wcˆ_’Tˆ]*rbas›3‰pC   oxˆ_›1ƒ  can¤ƒzes›4ˆa*vin›3‰pC$jo¤    ƒw    od¤))    nˆ_:‚s_ˆ_’Tˆ]*
 
 
 
 
r
 
tc¥C*n¥D*s¤„ ut¤„dat›7ŠOel¥?*sˆ_’Tˆ]*rt¤    *,    s    
 
le¤ƒ}t_¥@*uc¥C)eawˆ_’Tˆ]*rct¤„ u¤„de¤„l.¥?*s¥?*of¤„n¤„po›6ŠO
r¤„r.ˆ_<‚sˆ_<‚vˆ_’Tˆ] \r
 sc¤ƒ} eˆ_’Tˆ]*rs›4ˆa*    v
ta¤*,s
  c¤)*e¤„    xe¤„p›7ŠOffl¤„    li¤„
od¥$*,     r¤ƒs›3ˆa ]      x wo¤„gcoˆ`Ÿ@de¤„inˆ_ŸA%se¤„han¤ƒ}iba¥%p ce›3ˆ] \r i›3‰pC#deˆ_’Tˆ]*rlc¦i¨s¤p    s ne¤ƒ}  fˆ_’Tˆa *         
%                v
    &gˆ_›1ƒ #on¤„ pr¥&pto›6ˆan
wjob¤    ƒw    kma¤„ l.m¥?*ad¤„s¤„cj¤    ƒw    o¦ed¤„o¤ƒ}p¤„rˆ_:‚t¤)*in¤ƒx
 leˆ_›8)*/‚s.¥?e¤p    sman¤„ od¥?* ul¤ƒnag¤„m¥D*    dl¤ƒ}es¤ƒ}  foˆ_’Tˆa * 
 
 &
 
 
 
v     'gcˆ`Ÿ@d¤„iˆ_ŸA$s¤„it¤„li¤„    se¤„ t¤„trˆ_:‚
oce›4ˆa*vde¤ &    
)     u¥C)ff¤„w¤„llˆ_:‚ nl¤„s¤„ tˆ_:‚    rk¤„
m¤ƒt›7ŠOy›6ŠO        
    se›3ˆa ]      x i›6ŠO
xiˆ_›1ƒ !pal¤)*lc¤    ƒw    or›7ŠOs›6ŠO
re¤„o›4ˆa&vr.cˆ_<‚ep›6ŠO
s¤„    km¤„ mu¤ƒoc›4ˆa*vd¥C)lˆ_:‚ s.ˆ_<‚td›7ŠOveˆ_<‚i›3ˆ] \r  s.bˆ_œ`\‚_b›3‰p_  i¥%p m¥?* sˆ_< ‚ t¤„ ca¤ƒz de¨    eaˆ_’Tˆ]*rrˆ_’Tˆ] \   r    
 ic›3‰pC"n›4ˆa*     v    t›6ŠO
ks¤„sc¤„ d¨i›4ˆa*
vs¤„ ta¤„t_p¥@*ai¤*,s   s¤„ t¤„co¤))da›7ŠOec¤„
io¤„
na¥D*of¤„r›6ŠO
roˆ_:‚ sc¤„ uct¥C)
 
 
 
  ,
 
 
 
* 2*
    
)0
+
 
    
 
W)6,
 
(   O* K
 
 
 
 $      L
 
 
 
30
 
 
)  ;
2 N        
*W. .
,
 
 
 1³m Î4 㠒 I ü « Z  ² a 
Ã
y
&    Ï    x    )Åv'Ú‘Bñ¢Qµf ¼m"Õˆ/Ë|)Òƒ8çW‚8IIcWIDESEAWCS_Model.Models.SystemWIDESEAWCS_Model.Models.System…¥
{4
N‚7_\WIDESEAWCS_Model.Models.Sys_User.TenantIdTenantId½7dm þ|H‚6Y\WIDESEAWCS_Model.Models.Sys_User.TokenTokenÿ5ž¤ >sL‚5]\WIDESEAWCS_Model.Models.Sys_User.AuditorAuditor=6Þæ }vT‚4e#\WIDESEAWCS_Model.Models.Sys_User.AuditStatusAuditStatus…7 $ ÆkP‚3a\WIDESEAWCS_Model.Models.Sys_User.AuditDateAuditDate Ê7b    l  nL‚2]\WIDESEAWCS_Model.Models.Sys_User.AddressAddress
5 © ± Iua‚1q/\WIDESEAWCS_Model.Models.Sys_User.LastModifyPwdDateLastModifyPwdDate $; ß ñ i•V‚0g%\WIDESEAWCS_Model.Models.Sys_User.HeadImageUrlHeadImageUrl _5 þ žzJ‚/[\WIDESEAWCS_Model.Models.Sys_User.GenderGender
°5 ? F
ïdJ‚.[\WIDESEAWCS_Model.Models.Sys_User.EnableEnable    ü7

—
=gH‚-Y\WIDESEAWCS_Model.Models.Sys_User.EmailEmail    >5    Ý    ã     }sL‚,]\WIDESEAWCS_Model.Models.Sys_User.Dept_IdDept_IdŠ7        % ËgN‚+_\WIDESEAWCS_Model.Models.Sys_User.DeptNameDeptNameÉ5hq vV‚*g%\WIDESEAWCS_Model.Models.Sys_User.UserTrueNameUserTrueNameÿ7£ ° @}L‚)]\WIDESEAWCS_Model.Models.Sys_User.UserPwdUserPwd>5Þæ }vJ‚([\WIDESEAWCS_Model.Models.Sys_User.RemarkRemark5% ¾tL‚']\WIDESEAWCS_Model.Models.Sys_User.PhoneNoPhoneNoÀ5^f ÿtN‚&_\WIDESEAWCS_Model.Models.Sys_User.RoleNameRoleNameû7ž§ <xL‚%]\WIDESEAWCS_Model.Models.Sys_User.Role_IdRole_IdG7Úâ ˆgN‚$_\WIDESEAWCS_Model.Models.Sys_User.UserNameUserName†4%. ÄwL‚#]\WIDESEAWCS_Model.Models.Sys_User.User_IdUser_Id¾7em ÿ{F‚"M\WIDESEAWCS_Model.Models.Sys_UserSys_UserøS˜³ÎQ0J‚!;;\WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñ“ζ
L‚ _YWIDESEAWCS_Model.Models.Sys_Tenant.RemarkRemarkÐ5pw uL‚_YWIDESEAWCS_Model.Models.Sys_Tenant.StatusStatus!5°· `da‚s-YWIDESEAWCS_Model.Models.Sys_Tenant.ConnectionStringConnectionStringP8÷ ’ƒL‚_YWIDESEAWCS_Model.Models.Sys_Tenant.DbTypeDbType›807 ÝgT‚g!YWIDESEAWCS_Model.Models.Sys_Tenant.TenantTypeTenantTypeä7w
‚ %jT‚g!YWIDESEAWCS_Model.Models.Sys_Tenant.TenantNameTenantName7À
Ë ]{P‚cYWIDESEAWCS_Model.Models.Sys_Tenant.TenantIdTenantIdS7ú ”|G‚Q!YWIDESEAWCS_Model.Models.Sys_TenantSys_Tenant+
HCø“J‚;;YWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñÎÀ
N‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.UserIdUserIdŸ729 àfN‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.RoleIdRoleIdì7† -fN‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.MenuIdMenuId97ÌÓ zfT‚iSWIDESEAWCS_Model.Models.Sys_RoleAuth.AuthValueAuthValues7      ´yN‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.AuthIdAuthId¤;SZ é~N‚U%SWIDESEAWCS_Model.Models.Sys_RoleAuthSys_RoleAuthø4z ™´2J‚;;SWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñ_΂
F‚YQWIDESEAWCS_Model.Models.Sys_Role.RolesRolesio Ô¨N‚_QWIDESEAWCS_Model.Models.Sys_Role.RoleNameRoleName7²» PxN‚_QWIDESEAWCS_Model.Models.Sys_Role.ParentIdParentId\6íö œgJ‚ [QWIDESEAWCS_Model.Models.Sys_Role.EnableEnable¨7<C égJ‚ [QWIDESEAWCS_Model.Models.Sys_Role.DeptIdDeptIdõ7ˆ 6fO‚ _QWIDESEAWCS_Model.Models.Sys_Role.DeptNameDeptName 7ÓÜ aˆJ‚
[QWIDESEAWCS_Model.Models.Sys_Role.RoleIdRoleId]5 œxC‚    MQWIDESEAWCS_Model.Models.Sys_RoleSys_Role7R1ø‹J‚;;QWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsØñ•θ
##ŸU„€€€€¿.’#0ledœ f›Bmg1oœpœr‰ †/1‚F†yhef1ini1    ‰ x
 s›(le‰ †…&†yok.ock.ni1se 8‰f‡‰~?t›
B
 
manœ it›%maœo’od–) n’po‰ul 8Q† ƒp@n.p’1sk12sl13sm14sn1agœl›BmL1    …, ƒeco‰!’;  dlœed—Cƒ6Bei1 n‰sœ  fo
9ˆ]    …} „&
 
† 
 
 &: gb›%dŠ*‡Šalq1s‘1Šais›'t›
B
 
5lii1Š    ne—Cƒ6BseS Š2 ?  C t‰!‡1 
.ˆt?:tc‰    n–)    r‰ †…&†yum’o.bšx,ar›%
 
cak.e:… †Qao:…'  de‰ u›' exh1
ffœ!wœlah1eg.hf1i›%l‰ †0.‚B†yoi1mm’Šp‰n.’1k1 2l1 3m1 4n1 c‰!’;  e‰li1ŠsS Š2 ?  C t‰ †…&†yolf)‰rkœ
m 8Q† ƒp@qp1t<… †Sy 8‰g…*~Š2                    se
9‰f…*} Š3  E i 8‰g…*~Š2xiŠ*‡Š`paršy 3u›Bdašy BlceKeˆA1on‰r<… †Ss 8‰g…*~Š2reo1 ‰o:… †D
aquaŠ-ep1ˆXr.c‰ †…(†{_pe1bof)dn›& s›% eao,p 8‰g…*~Š2qšyso1‰    wp0kmœ mu 8Q† ƒp@oc:… †Qad›' l‰ †…&†yrj1    qup1reo,oj1s.‰ †…(†{td<… †Sp›Bsšy
 
3
 
ve‰ †…(†{i
7‰e…(} P‰_ =  s.b‰ †…(†{_b
9‰f…* Š3     c’ dšx , m–) s‰ †…( †{ td‹, ca‰!‡1 
.…$ƒ6  9  5 oŠ-rp0  ea
9Qˆ     … Kf‚L‚\ƒ;  4p›BqŠ-r
7ˆ\    …} Pƒ. †1   
  6    
tœheo1‰ic
9ˆ]    … „"†  "g›Bn:… †Qa    t 8‰g…*~Š2ksdKŠali›(rešysc—Cƒ8$ ho1i:… †Qasœ ta‰!‡1 AmˆZ 9  5ub›%t_f–)ai 8Q‰‡† ƒr    ?  rc.ˆvBsdKŠa t‰!‡1 Š 9  5co‰
da<… †St›%eco,                        ‰{
pšy Bs›Bxœher/   ia› B  nh0ˆ~Bo‰!‡1 
.    ˆt
?                :
le›Bna–)
ƒeo.šx,eh1    fœo›%r 8‰g…*~1ˆspl›Bro1 ro‰ †…&†yscp0  ˆW   B  = i›Bl›(usšy BualŠ-    
 
, &
%  .      
 
K 
 
7
%   
 
;
 
 
 
 
%:-
!/! (!  3$!.%
$
 k"
 
 
WD w4 ! 
Y +% 7( 7
 
'
&  
´š÷$_ å: ÎI2‰éÒiR üWn        e    V§Ž€Õ4 xê ¢ € a B ' [ õ Þ Ê ¶ ¨  x c N @ . 
ö
Ý
Ä
¬
”

j
Z
@
&
    øÜĬ—‚rcSF3"jöæ·±¨ž”‰“%phHÇ€×ÌVM@3'òÜǺ¨ž“~¹#7ëϳdJ6÷     ¾    2    ×ßh    •     ¶ðÿ—àÁE®§sY÷: ü Ý ¾ Ÿ € a L 6realXDirectionDistance2€‚wrealYDirectionHeight1€fwrealScrewDownsetDistance€GwrealProductHeight/wrealProductWidth1wrealProductLength—©wboolLocation4ScanDone—!EWIDESEAWCS_IBasicInfoService CWIDESEAWCS_BasicInfoService1StationComponent10/StationComponent9/StationComponent8 SwgLoginx3SwaggerLoginRequest SuccessôÊw#W_PLCDBNameœº
Textãc#Sys_ActionsÇ!TenantType!TenantName TenantId7 TenantId%TaskTypeEnum#)TaskStatusEnum Task_New #Task_Finish!TableName!SystemTypeá+Sys_UserServiceÙ+Sys_UserServiceÕ1Sys_UserControllerw1Sys_UserControlleru Sys_User"1Sys_DictionaryListä=Sys_DictionaryControllerO)Sys_DictionaryÖ)Sys_DepartmentÍ!UpdateDataDDES Sys_Logí!UpdateDataÛ=Sys_DictionaryControllerRÔ?WIDESEAWCS_Common.PLCEnum›w!TestResultu!UpdateDataE;UpdatePartScannedStatusµce
CWIDESEAWCS_BasicInfoService StatusCS#TorsioValueq)WebSocketSetup˜5WebSocketHostService”5WebSocketHostService’-VueDictionaryDTO7
ValueË    Value+%UserTrueName* UserPwd)+UserPermissions9/UserPermissionDTO0 UserName$ UserName÷ UserNames UserIPö UserId User_Id# User_IdøUrlUrlõ#StationCode3TorsioValueStandardr
Token6    Text<    TextÊText3Text*< CWIDESEAWCS_BasicInfoService ’ CWIDESEAWCS_BasicInfoService«;UpdatePartScannedStatus ™?WIDESEAWCS_Common.PLCEnum    c    WIDES=WIDESEAWCS_DTO.BasicInfo xKUpd-TcpClientExample²;UpdatePartScannedStatus ã-wDintAutoScrewOn¨9wboolLocation4ScanDone¢9wboolLocation3ScanDone¡9wboolLocation2ScanDone 9wboolLocation1ScanDoneŸ)wboolAutoPausež)wboolAutoStart Ä /Stat/StationEndProduct#StationName)ToolingBoardNoÈ7ToolingBoardSubmitDtoÇ=WIDESEAWCS_DTO.BasicInfoÆ#IUpdatePartScannedStatusRequest y CWIDESEAWCS_BasicInfoService CWIDESEAWCS_BasicInfoService² CWIDESEAWCS_BasicInfoService ¯    ×StopAsync–9StiffnessValueStandardt)StiffnessValues CWIDESEAWCS_BasicInfoService? CWIDESEAWCS_BasicInfoService— CWIDESEAWCS_BasicInfoService ¸/Sys_TenantServiceÑ/Sys_TenantServiceÏ5Sys_TenantControllerr5Sys_TenantControllerp!Sys_Tenant+Sys_RoleServiceÆ+Sys_RoleServiceÂ1Sys_RoleControllerj1Sys_RoleControllerh3Sys_RoleAuthServiceÀ3Sys_RoleAuthService¿9Sys_RoleAuthControllerf9Sys_RoleAuthControllere%Sys_RoleAuth Sys_Role    +Sys_MenuService­+Sys_MenuServiceª1Sys_MenuController^1Sys_MenuController\ Sys_Menuú)Sys_LogService¨)Sys_LogService§/Sys_LogControllerZ/Sys_LogControllerY7Sys_DictionaryService¡7Sys_DictionaryServicež?Sys_DictionaryListServiceœ?Sys_DictionaryListService›!ESys_DictionaryListControllerW!ESys_DictionaryListControllerV 
WIDESE/StationComponent2
/StationComponent1    3StationComponentQty CWIDESEAWCS_BasicInfoService
-WIDESEAWCS_Model½-WIDESEAWCS_ModelqAWIDESEAWCS_ISystemServiceslAWIDESEAWCS_ISystemServicesiAWIDESEAWCS_ISystemServicescAWIDESEAWCS_ISystemServicesaAWIDESEAWCS_ISystemServicesVAWIDESEAWCS_ISystemServicesTAWIDESEAWCS_ISystemServicesQAWIDESEAWCS_ISystemServicesO7WIDESEAWCS_DTO.System67WIDESEAWCS_DTO.System/7WIDESEAWCS_DTO.System,7WIDESEAWCS_DTO.System&AWIDESEAWCS_Common.TaskEnum"AWIDESEAWCS_Common.TaskEnum EWIDESEAWCS_Common.Attributes` StartPLC±/StationComponent4 /StationComponent3 ÀWIDE CWIDESEAWCS_BasicInfoService//StationComponent5 CWIDESEAWCS_BasicInfoService@WIDESEAWCS_Bas/StationComponent7/StationComponent6 $r&s æ o ð r ß `
æ
‚
(    Ð    ~    KïpÆ*Þ~å<È|¶ž%ËrVƒi)fWIDESEAWCS_Server.HostedService.WebSocketSetupWebSocketSetupŠžÕvýWƒKKfWIDESEAWCS_Server.HostedServiceWIDESEAWCS_Server.HostedServiceNoD2
vƒ{EeWIDESEAWCS_Server.Filter.WebSocketHostService.StopAsyncStopAsync     X4x    StopAsync(CancellationToken)zƒ}!GeWIDESEAWCS_Server.Filter.WebSocketHostService.StartAsyncStartAsync\
•sP¸    StartAsync(CancellationToken)ƒ5WeWIDESEAWCS_Server.Filter.WebSocketHostService.WebSocketHostServiceWebSocketHostServiceÈ=Áƒ    WebSocketHostService(WebSocketServer)fƒ    -eWIDESEAWCS_Server.Filter.WebSocketHostService._webSocketServer_webSocketServer¥•!Zƒg5eWIDESEAWCS_Server.Filter.WebSocketHostServiceWebSocketHostService_Š    RAIƒ==eWIDESEAWCS_Server.FilterWIDESEAWCS_Server.Filter1KK'o
qƒ{'+ WIDESEAWCS_WCSServer.Filter.CustomProfile.CustomProfileCustomProfiletBÇ ápÀ‘    CustomProfile()Qƒ_' WIDESEAWCS_WCSServer.Filter.CustomProfileCustomProfileL iï?RƒCC WIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter8#J
ƒ     +c WIDESEAWCS_Server.Filter.CustomAuthorizeFilter.OnAuthorizationOnAuthorizationÍ
 Ái    OnAuthorization(AuthorizationFilterContext)]ƒ i7 WIDESEAWCS_Server.Filter.CustomAuthorizeFilterCustomAuthorizeFilter„¶{wºIƒ == WIDESEAWCS_Server.FilterWIDESEAWCS_Server.FilterVpÄLè
ƒ
    1cWIDESEAWCS_WCSServer.Filter.AutoMapperSetup.AddAutoMapperSetupAddAutoMapperSetupµóÕ¢&    AddAutoMapperSetup(this IServiceCollection)Vƒ    c+WIDESEAWCS_WCSServer.Filter.AutoMapperSetupAutoMapperSetup.:‚—8naNƒCCWIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter
'«Ò
|ƒ-1WIDESEAWCS_WCSServer.Filter.AutoMapperConfig.RegisterMappingsRegisterMappingsØô•¶Ó    RegisterMappings()Yƒe-WIDESEAWCS_WCSServer.Filter.AutoMapperConfigAutoMapperConfigC?•«åˆOƒCCWIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter<W~
rƒ9WIDESEAWCS_WCSServer.Filter.AutofacPropertityModuleReg.LoadLoadÂêªZ    Load(ContainerBuilder)iƒyAWIDESEAWCS_WCSServer.Filter.AutofacPropertityModuleRegAutofacPropertityModuleRegnŸlaªOƒCCWIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter=Z´3Û
Uƒ}^WIDESEAWCS_WCSServer.Controllers.SwaggerLoginRequest.pwdpwd¼À ®Wƒ^WIDESEAWCS_WCSServer.Controllers.SwaggerLoginRequest.namename’— „ a‚u3^WIDESEAWCS_WCSServer.Controllers.SwaggerLoginRequestSwaggerLoginRequest`y[Sw‚~ %)^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.ReplaceTokenReplaceTokenk ƒÁ&    ReplaceToken()|‚} %5^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.SerializeJwtSerializeJwt • ¸d AÛ    SerializeJwt(string)‚|59^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.GetVierificationCodeGetVierificationCode  ½z Fñ    GetVierificationCode(){‚{?^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.ModifyPwdModifyPwd
À    
ñI
ƒ·    ModifyPwd(string, string)|‚z)-^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.GetCurrentUserGetCurrentUser
 
9>    Ô£    GetCurrentUser()t‚yC^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.LoginLogin    [    Š@    ¸    Login([FromBody] LoginInfo)    ‚x]^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.SwgLoginSwgLogin]œlñ    SwgLogin([FromBody] SwaggerLoginRequest)/‚w1^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.Sys_UserControllerSys_UserControllerPÈEIÄ    Sys_UserController(ISys_UserService, IHttpContextAccessor)t‚v5^WIDESEAWCS_WCSServer.Controllers.Sys_UserController._httpContextAccessor_httpContextAccessor(;`‚us1^WIDESEAWCS_WCSServer.Controllers.Sys_UserControllerSys_UserController¯÷Tt× °¥U¯Y ÿ Œ  – Ð ;
Î
W    —þ‘ .ÁO™,µ0ºÓ,’+°x‚VEGWIDESEAWCS_Server.Controllers.System.Sys_DictionaryListControllerSys_DictionaryListController/•æ.d‚UUUGWIDESEAWCS_Server.Controllers.SystemWIDESEAWCS_Server.Controllers.System¹$ß8¯h
‚T/-=DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController.GetVueDictionaryGetVueDictionary7&ù÷'9    GetVueDictionary(string)#‚S/-WDWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController.GetVueDictionaryGetVueDictionaryé    Ì•
V    GetVueDictionary([FromBody] string[])c‚R?=7DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController.Sys_DictionaryControllerSys_DictionaryControllerpz    Sys_DictionaryController(ISys_DictionaryService, IHttpContextAccessor, ICacheService)s‚Q)'DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController._cacheService_cacheService` A-‚P75DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController._httpContextAccessor_httpContextAccessor"ü;t‚O =DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryControllerSys_DictionaryController—ñ3FR3åj‚N[[DWIDESEAWCS_WCSServer.Controllers.SystemWIDESEAWCS_WCSServer.Controllers.System"'K3ï4"
2‚M79eWIDESEAWCS_Server.Controllers.QuartzJob.DispatchInfoController.DispatchInfoControllerDispatchInfoController›é ”a    DispatchInfoController(IDispatchInfoService)o‚L    9WIDESEAWCS_Server.Controllers.QuartzJob.DispatchInfoControllerDispatchInfoController2‰sï j‚K[[WIDESEAWCS_Server.Controllers.QuartzJobWIDESEAWCS_Server.Controllers.QuartzJob¿'èµJ
[‚JWIWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolDetailController.DeviceProtocolDetailControllerDeviceProtocolDetailController» ´q    DeviceProtocolDetailController(IDeviceProtocolDetailService)‚IIWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolDetailControllerDeviceProtocolDetailController:©ƒï=j‚H[[WIDESEAWCS_Server.Controllers.QuartzJobWIDESEAWCS_Server.Controllers.QuartzJob¿'èGµz
‚G)'IWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolController.GetImportDataGetImportData¤ ÖBNÊ    GetImportData(List<IFormFile>)<‚F?=mWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolController.DeviceProtocolControllerDeviceProtocolControlleræ8 ße    DeviceProtocolController(IDeviceProtocolService)t‚E =WIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolControllerDeviceProtocolControllerwÔK2íj‚D[[WIDESEAWCS_Server.Controllers.QuartzJobWIDESEAWCS_Server.Controllers.QuartzJob'+÷ø*
‚C//3WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoController.GetDeviceProInfosGetDeviceProInfos¬ÉEEÉ    GetDeviceProInfos()B‚B55WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoController.DeviceInfoControllerDeviceInfoControllerôEz¿    DeviceInfoController(DeviceInfoService, IHttpContextAccessor)‚A55WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoController._httpContextAccessor_httpContextAccessor[5;o‚@ 5WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoControllerDeviceInfoControllerÚ*ë™|p‚?aaWIDESEAWCS_WCSServer.Controllers.QuartzJobWIDESEAWCS_WCSServer.Controllers.QuartzJobf*’†\¼
W‚>ycWIDESEAWCS_Model.Models.System.UserPermissions.ActionsActions˜ w.S‚=ucWIDESEAWCS_Model.Models.System.UserPermissions.IsAppIsAppZ` NQ‚<scWIDESEAWCS_Model.Models.System.UserPermissions.TextText27 $ O‚;qcWIDESEAWCS_Model.Models.System.UserPermissions.PidPid     þM‚:ocWIDESEAWCS_Model.Models.System.UserPermissions.IdIdäç ÙX‚9i+cWIDESEAWCS_Model.Models.System.UserPermissionsUserPermissions¹ÎÞ¬ ""Œ8BDDB0ŸV„€€€€¿0#0.ba‰ †…(†,8co‰ †…(†{mo–)pl’1sck12scl13scm14scn1_ba
9‰f…* Š3     o‘1Š`co’ dtšx , fo† „@mo–) ple1rœscœe‰ †…( †{ tad‹, unœade 8Q–) ƒr        A    geœid–)l 8Q‰‡† ƒr    ?  ldo,ˆsBs›    B        meL1
…, ƒenaœdœgq1n—Cƒ6Bs‰!‡1 
.ˆt?:rd›%  tc)    ˆZ        /        se‘3Š     A    i
9ˆ]    … „!†  !kdKŠata<…     †4    #ešy @  i‰!‡1 
.
 
 
 
ˆt    ?:    ušy Bus›Bth1wc
9Qˆ     … Kf‚L‚\ƒ;  4bas
9ˆ]    … „ †       mi›%nae1oa›%        of)xŠ*‡Š`can‰!‡1 
.…$ƒ6  9  5tk.                dbe1en’s:… †Qain
9ˆ]    … „$†  $jo‘0Šaod‰ m‰‡h …,„Zn‰ †…&  †y  rep0s_
9Qˆ     … 1
‚L
‚\
ƒ;
 
 
 
 
 
 
 
4
t‘/thr/   n›'po1 sp0  ‰~ uth0Šdat<… †#bne1el–)s
9Qˆ     …  Kf‚L‚\ƒ;  4t 8Q‰†D>n… ƒr        
 
?    
leœno›& pr›'    stšy Bu›% t_–)ošx , uc›' ealo,rf1w
9Qˆ     … Kf‚L‚\ƒ;  4cto,
 
 
 
 
 
‰{ uh0 Šdeœ p›'sšy Bexi1 ft›Bigo,l.–)s–)mgg1nt‰u’ofœ!nœpašy Bl›Bo 8‰g…*~Š2rœquŠ-Lr.‰ †…(†{rj1s‰ †…(†{v
7ˆ\    …} Pƒ.†1 6
 scœ e
9Qˆ     …  Kf‚L‚\ƒ;  4s:1‚B†Qa    
tšyta 8Q‰‡†  ƒr
 
  ?
 eo,‰{    l›Bs›Bwaq1tp1xeh0  Šp<… †Stœfflœ!    in›'liœ!
oc:…'  r 8Q† ƒp@s
9‰f…*} Š3  E ti›Bwoœgbo›%deŠ*‡Šaet›Ahto,leq1na›Bse‘1Šahanœeaf1d›'io,   t1r12s13t1ial› B  ce
7‰e…(} P‰_= i
9ˆ]    … „#†  #de
9Qˆ     … Kf‚L‚\ƒ;  4foDšugho,n›Bls 8‰f‡‰~  ? nei1
Š  f
9ˆ]    …} „%        †          %:
gŠ*†=Hg‰ li›    3        on‰!‡1 
.    ˆt ?
 
 
 
: scŠ-†&Š@h›'s—Cƒ8t›(td›%i› B  o 8‰g…*~Š2Ajob‘0Šakmaœ l.m–)ad 8Q–)
ƒrAi–)s‘3Š Auh1cde1e’j‘0Šada›Beo,  #   ! *. 
7 93 7
D5 2X 4%C
' EK %
C( 
 ! 
w E'+'
    -.    
 
l3D
 %J$8  $      
 
  !‚d© é ˜ 6 É d •
 
r
    v    %ÒKú¤=ëA©@ÁFéqà\ó„ý‚    fiƒqu‚Ksy‚N" "_xƒ9+5PWIDESEAWCS_SystemServices.Sys_MenuService.GetUserMenuListGetUserMenuList!{! 0!fj    GetUserMenuList(int)ƒ8/9PWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuActionListGetMenuActionListӌ w žº iï    GetMenuActionList(int)lƒ7w#-PWIDESEAWCS_SystemServices.Sys_MenuService.GetTreeItemGetTreeItemð ¶âå    GetTreeItem(int)fƒ6o1PWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuGetMenu;›    Í    GetMenu(List<int>)ƒ5{'MPWIDESEAWCS_SystemServices.Sys_MenuService.ActionToArrayActionToArrayû 1Ìá    ActionToArray(List<Permissions>) ƒ4/UPWIDESEAWCS_SystemServices.Sys_MenuService.MenuActionToArrayMenuActionToArray)crÆ    MenuActionToArray(List<Permissions>)uƒ3})3PWIDESEAWCS_SystemServices.Sys_MenuService.GetPermissionsGetPermissionsNr‘5Π   GetPermissions(int)Zƒ2w#PWIDESEAWCS_SystemServices.Sys_MenuService.objKeyValueobjKeyValuekGð ¼mxƒ1+5PWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuByRoleIdGetMenuByRoleId {  ¿ mò    GetMenuByRoleId(int)|ƒ0/3PWIDESEAWCS_SystemServices.Sys_MenuService.GetSuperAdminMenuGetSuperAdminMenu    N    kö    @!    GetSuperAdminMenu()fƒ/u!%PWIDESEAWCS_SystemServices.Sys_MenuService.GetAllMenuGetAllMenu
+    4    GetAllMenu()ƒ.=APWIDESEAWCS_SystemServices.Sys_MenuService.GetCurrentMenuActionListGetCurrentMenuActionListµa.R¢ Ô    GetCurrentMenuActionList()&ƒ-+PWIDESEAWCS_SystemServices.Sys_MenuService.Sys_MenuServiceSys_MenuServiceÏK^Èá    Sys_MenuService(IRepository<Sys_Menu>, IUnitOfWorkManage, IMapper)Oƒ,oPWIDESEAWCS_SystemServices.Sys_MenuService._mapper_mapper´›!dƒ+/PWIDESEAWCS_SystemServices.Sys_MenuService._unitOfWorkManage_unitOfWorkManage\5Sƒ*_+PWIDESEAWCS_SystemServices.Sys_MenuServiceSys_MenuServiceûQ0}î0àNƒ)??PWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServicesÌç0êÂ1
ƒ({)ULWIDESEAWCS_SystemServices.Sys_LogService.Sys_LogServiceSys_LogService§í  Y    Sys_LogService(IRepository<Sys_Log>)Pƒ'])LWIDESEAWCS_SystemServices.Sys_LogServiceSys_LogServiceC•k6ÊNƒ&??LWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices/Ô
ù
ƒ% -WIWIDESEAWCS_SystemServices.Sys_DictionaryService.GetAllDictionaryGetAllDictionaryÉÿ¬V    GetAllDictionary(IEnumerable<string>)cƒ$w'IWIDESEAWCS_SystemServices.Sys_DictionaryService.QueryQueryÿ†æº    Query(string)ƒ# +aIWIDESEAWCS_SystemServices.Sys_DictionaryService.GetDictionariesGetDictionaries_{îì    GetDictionaries(IEnumerable<string>, bool)ƒ" -AIWIDESEAWCS_SystemServices.Sys_DictionaryService.GetVueDictionaryGetVueDictionary©Ô
‹
W    GetVueDictionary(string[])Kƒ!75IWIDESEAWCS_SystemServices.Sys_DictionaryService.Sys_DictionaryServiceSys_DictionaryServicejz    Sys_DictionaryService(IRepository<Sys_Dictionary>, IUnitOfWorkManage, ICacheService)bƒ 'IWIDESEAWCS_SystemServices.Sys_DictionaryService._cacheService_cacheService` A-jƒ/IWIDESEAWCS_SystemServices.Sys_DictionaryService._unitOfWorkManage_unitOfWorkManage%5_ƒk7IWIDESEAWCS_SystemServices.Sys_DictionaryServiceSys_DictionaryService‰÷|Nƒ??IWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServicesZu—P¼
<ƒ'?HWIDESEAWCS_SystemServices.Sys_DictionaryListService.Sys_DictionaryListServiceSys_DictionaryListServiceÓ/ Ìo    Sys_DictionaryListService(IRepository<Sys_DictionaryList>)gƒs?HWIDESEAWCS_SystemServices.Sys_DictionaryListServiceSys_DictionaryListServiceCÁ6 Nƒ??HWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices/
;
ƒ /afWIDESEAWCS_Server.HostedService.WebSocketSetup.AddWebSocketSetupAddWebSocketSetup¼ùs©à   AddWebSocketSetup(this IServiceCollection)  Íj¤A ð “ ò “ 6 È d
ò
    ›    $˜ùOµÆlWÓX±JìÍj    fiƒqu‚Kck-_WIDESEAWCS_SystemServices.Sys_UserService.LoginLogin4Xv´    Login(LoginInfo)?ƒY+A_WIDESEAWCS_SystemServices.Sys_UserService.Sys_UserServiceSys_UserServiceÏ{“ÈF    Sys_UserService(IRepository<Sys_User>, IUnitOfWorkManage, ICacheService, ISys_MenuService)YƒXy%_WIDESEAWCS_SystemServices.Sys_UserService._menuService_menuService± /[ƒW{'_WIDESEAWCS_SystemServices.Sys_UserService._cacheService_cacheServicew X-dƒV/_WIDESEAWCS_SystemServices.Sys_UserService._unitOfWorkManage_unitOfWorkManage<5SƒU_+_WIDESEAWCS_SystemServices.Sys_UserServiceSys_UserService¸«wNƒT??_WIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices‰¤¦
xƒS}%=[WIDESEAWCS_SystemServices.Sys_TenantService.InitTenantDbInitTenantDb> gY2Ž    InitTenantDb(Sys_Tenant)ƒR)C[WIDESEAWCS_SystemServices.Sys_TenantService.InitTenantInfoInitTenantInfo]˜ŽCã    InitTenantInfo(string, int)(ƒQ/[WIDESEAWCS_SystemServices.Sys_TenantService.Sys_TenantServiceSys_TenantServiceˆø?¶    Sys_TenantService(IRepository<Sys_Tenant>, IUnitOfWorkManage)fƒP/[WIDESEAWCS_SystemServices.Sys_TenantService._unitOfWorkManage_unitOfWorkManageeK,WƒOc/[WIDESEAWCS_SystemServices.Sys_TenantServiceSys_TenantServiceâ@‡ÕòNƒN??[WIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices³Îü©    !
ƒM )eXWIDESEAWCS_SystemServices.System.Sys_RoleService.SavePermissionSavePermissionb¹?Œ¢%        SavePermission(List<UserPermissionDTO>, int)ƒL7AXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetUserTreePermissionGetUserTreePermission ž’ T × :    GetUserTreePermission(int)&ƒK'EIXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetCurrentUserTreePermissionGetCurrentUserTreePermission —g " JH Š    GetCurrentUserTreePermission()ƒJ=AXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetCurrentTreePermissionGetCurrentTreePermission     o
3
W4
r    GetCurrentTreePermission()ƒI#OXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetChildrenGetChildrenûe‚ ºÚj*    GetChildren(List<RoleNodes>, int)tƒH%)XWIDESEAWCS_SystemServices.System.Sys_RoleService.GetAllRoleIdGetAllRoleId &Éöù    GetAllRoleId()}ƒG )3XWIDESEAWCS_SystemServices.System.Sys_RoleService.GetAllChildrenGetAllChildren½á    ¦D    GetAllChildren(int)SƒF +YXWIDESEAWCS_SystemServices.System.Sys_RoleService.Sys_RoleServiceSys_RoleServiceCûŸ<^    Sys_RoleService(IRepository<Sys_Role>, ISys_MenuService, IRepository<Sys_RoleAuth>, IUnitOfWorkManage)oƒE3XWIDESEAWCS_SystemServices.System.Sys_RoleService._RoleAuthRepository_RoleAuthRepositoryó?aƒD%XWIDESEAWCS_SystemServices.System.Sys_RoleService._MenuService_MenuServiceÜ º/kƒC/XWIDESEAWCS_SystemServices.System.Sys_RoleService._unitOfWorkManage_unitOfWorkManagež{5ZƒBm+XWIDESEAWCS_SystemServices.System.Sys_RoleServiceSys_RoleServicepÅ (\ƒAMMXWIDESEAWCS_SystemServices.SystemWIDESEAWCS_SystemServices.Systemä 2Ú^
ƒ@3iVWIDESEAWCS_SystemServices.Sys_RoleAuthService.Sys_RoleAuthServiceSys_RoleAuthService» ´c    Sys_RoleAuthService(IRepository<Sys_RoleAuth>)Zƒ?g3VWIDESEAWCS_SystemServices.Sys_RoleAuthServiceSys_RoleAuthServiceC©u6èNƒ>??VWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices/ò
 
`ƒ=o%PWIDESEAWCS_SystemServices.Sys_MenuService.DelMenuDelMenu1181Æ    DelMenu(int)`ƒ<i)PWIDESEAWCS_SystemServices.Sys_MenuService.SaveSave&ð„'˜'µ    @'~    w    Save(Sys_Menu)`ƒ;oPWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuGetMenu$¬b%&%9«%Ì    GetMenu()ƒ:u!}PWIDESEAWCS_SystemServices.Sys_MenuService.GetActionsGetActions"ó
#[E"ÜÄ    GetActions(int, List<ActionDTO>, List<Permissions>, int)  /Èd Ê k  ‘ Þ h
þ
…
    ¤    =ήCÅ zÕ6ˆ)ÂIŒÿ \‚tMM^WIDESEAWCS_WCSServer.ControllersWIDESEAWCS_WCSServer.ControllersK mjA–
    ‚s)CZWIDESEAWCS_WCSServer.Controllers.Sys_TenantController.InitTenantInfoInitTenantInfo°ëPZá    InitTenantInfo(string, int)9‚r!5    ZWIDESEAWCS_WCSServer.Controllers.Sys_TenantController.Sys_TenantControllerSys_TenantController‰    E‚Ì    Sys_TenantController(ISys_TenantService, IHttpContextAccessor)v‚q!5ZWIDESEAWCS_WCSServer.Controllers.Sys_TenantController._httpContextAccessor_httpContextAccessora;;d‚pw5ZWIDESEAWCS_WCSServer.Controllers.Sys_TenantControllerSys_TenantControllerâ0¥\‚oMMZWIDESEAWCS_WCSServer.ControllersWIDESEAWCS_WCSServer.Controllers| ž§rÓ
*‚n){WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.SavePermissionSavePermission$|Wâñ    SavePermission([FromBody] List<UserPermissionDTO>, int)‚m-7AWWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.GetUserTreePermissionGetUserTreePermission^‰MÁ    GetUserTreePermission(int)!‚l3=AWWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.GetCurrentTreePermissionGetCurrentTreePermission›¿JOº    GetCurrentTreePermission() ‚k%/3WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.GetUserChildRolesGetUserChildRolesv“°1    GetUserChildRoles()6‚j'1WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.Sys_RoleControllerSys_RoleControllerpàEi¼    Sys_RoleController(ISys_RoleService, IHttpContextAccessor){‚i+5WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController._httpContextAccessor_httpContextAccessorJ$;h‚h1WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleControllerSys_RoleControllerÑÁ’Hj‚g[[WWIDESEAWCS_WCSServer.Controllers.SystemWIDESEAWCS_WCSServer.Controllers.Systemb'‹RX…
/‚f19eUWIDESEAWCS_Server.Controllers.System.Sys_RoleAuthController.Sys_RoleAuthControllerSys_RoleAuthControllerÝ ˆa    Sys_RoleAuthController(ISys_RoleAuthService)l‚e9UWIDESEAWCS_Server.Controllers.System.Sys_RoleAuthControllerSys_RoleAuthController)}sæ
d‚dUUUWIDESEAWCS_Server.Controllers.SystemWIDESEAWCS_Server.Controllers.System¹$߯D
j‚c%OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.DelMenuDelMenuB_9–    DelMenu(int)q‚b}?OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.SaveSaveÍõ–b    Save([FromBody] Sys_Menu)v‚a #-OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.GetTreeItemGetTreeItem& GC磠   GetTreeItem(int)g‚`OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.GetMenuGetMenu¢9T‡    GetMenu()s‚_ #'OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.GetTreeMenuGetTreeMenuç þJŸ©    GetTreeMenu()/‚^1OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.Sys_MenuControllerSys_MenuControllerØPEÑÄ    Sys_MenuController(ISys_MenuService, IHttpContextAccessor)t‚]5OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController._httpContextAccessor_httpContextAccessor²Œ;`‚\s1OWIDESEAWCS_WCSServer.Controllers.Sys_MenuControllerSys_MenuController9ú¥\‚[MMOWIDESEAWCS_WCSServer.ControllersWIDESEAWCS_WCSServer.ControllersÑ ó¯ÇÛ
‚Z/QKWIDESEAWCS_Server.Controllers.System.Sys_LogController.Sys_LogControllerSys_LogController€Ä yW    Sys_LogController(ISys_LogService)a‚Yy/KWIDESEAWCS_Server.Controllers.System.Sys_LogControllerSys_LogController)niæñd‚XUUKWIDESEAWCS_Server.Controllers.SystemWIDESEAWCS_Server.Controllers.System¹$ßû¯+
M‚WIE}GWIDESEAWCS_Server.Controllers.System.Sys_DictionaryListController.Sys_DictionaryListControllerSys_DictionaryListController§  m    Sys_DictionaryListController(ISys_DictionaryListService) „â    ­Ž%Ÿ'
Y
    f    ¶]žââââââââââ + + + + + + + + + +eeeeeee
§›u;8WIDESEAWCS_Tasks.R_PLCDBName.rboolLocation4ScanStartrboolLocation4ScanStart¸9ûû
§3u;8WIDESEAWCS_Tasks.R_PLCDBName.rbo
§â7HWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationControllerScanStationControllerÈ/?“uý
§n[[HWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfo˜'ÁJŽ}
8ˆ{;;i åWIDESEAWCS_Server.Controllers.BasicInfo.FormulaDetailController.FormulaDetailControllerFormulaDetailController¯ÿ¨e    FormulaDetailController(IFormulaDetailService)uˆz ; åWIDESEAWCS_Server.Controllers.BasicInfo.FormulaDetailControllerFormulaDetailControllerÈ1Cyÿkˆy[[ åWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfo˜'ÁXŽ‹
 
§Š#/Q tWIDESEAWCS_Server.Controllers.BasicInfo.FormulaController.FormulaControllerFormulaController•ÙŽY    FormulaController(IFormulaService)oÙ/ tWIDESEAWCS_Server.Controllers.BasicInfo.FormulaControllerFormulaControllerÈ/;ƒmýóon[[ tWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfo˜'Á2Že
ˆa!-M ]WIDESEAWCS_Server.Controllers.BoxingInfo.BoxingController.BoxingControllerBoxingController’Ô‹W    BoxingController(IBoxingService)
§y- ]WIDESEAWCS_Server.Controllers.BoxingInfo.BoxingControllerBoxingControllerÉ/;€kþí
§]] ]WIDESEAWCS_Server.Controllers.BoxingInfoWIDESEAWCS_Server.Controllers.BoxingInfo˜(Â,Ž`
 
§Ÿ99e \WIDESEAWCS_Server.Controllers.BoxingInfo.BoxingDetailController.BoxingDetailControllerBoxingDetailController¦ôŸc    BoxingDetailController(IBoxingDetailService)
§ç 9 \WIDESEAWCS_Server.Controllers.BoxingInfo.BoxingDetailControllerBoxingDetailControllerÉ1C”w
§p]] \WIDESEAWCS_Server.Controllers.BoxingInfoWIDESEAWCS_Server.Controllers.BoxingInfo˜(ÂLŽ€
Lˆ_uWIDESEAWCS_Model.Models.Dt_Boxing.DetailsDetails RÃVˆg#uWIDESEAWCS_Model.Models.Dt_Boxing.ProductNameProductNameŠ7- 9 Ë{Vˆg#uWIDESEAWCS_Model.Models.Dt_Boxing.ProductCodeProductCodeÂ7e q {Tˆe!uWIDESEAWCS_Model.Models.Dt_Boxing.PalletCodePalletCodeù8ž
© ;{DˆUuWIDESEAWCS_Model.Models.Dt_Boxing.IdId:5Ýà yt`ƒZk-_WIDESEAWCS_SystemServices.Sys_UserService.LoginLogin4Xv´    Login(LoginInfo)FˆOuWIDESEAWCS_Model.Models.Dt_BoxingDt_Boxing    /íØDKˆ;;uWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸ÑN®q
€s9rWIDESEAWCS_Tasks.W_PLCDBName.wrealYDirectionHeight3wrealYDirectionHeight3a:¥¥Ðw=rWIDESEAWCS_.‰"37aHWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.ScanStationControllerScanStationController¥ñža    ScanStationController(IScanStationService)Jk18WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight3rrealDetectHeight3;ZZìk18WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight2rrealDetectHeight2³;øøŽk18WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight1rrealDetectHeight1Q;––0q78WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectScrewAnglerrealDetectScrewAngleë<11Ìs98WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectScrewTorquerrealDetectScrewTorque„<ÊÊfs98WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectPressHeightrrealDetectPressHeight<ccuƒ^s?_WIDESEAWCS_SystemServices.Sys_UserService.ModifyPwdModifyPwd“‡>    o¬$÷    ModifyPwd(string, string)ƒ]15_WIDESEAWCS_SystemServices.Sys_UserService.GetCurrentUserInfoGetCurrentUserInfoø`|šíb%    GetCurrentUserInfo()fƒ\o1_WIDESEAWCS_SystemServices.Sys_UserService.AddDataAddData‹±;h„    AddData(SaveModel)oƒ[u!7_WIDESEAWCS_SystemServices.Sys_UserService.UpdateDataUpdateData ý
&6 Ú‚    UpdateData(SaveModel)
'[©+­/±ÍOÑSÕWÙ[
hMÕKŽ ±= Ì T è v  x
æ    ¾    4¥-}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768386571.logO~}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768384729.logK‘}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768319208.logF}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768308420.log>ã}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768297105.log8)}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768226619.log1}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767978825.log3}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767976705.logj‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.json0cIE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.cs5}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767974242.log Ã}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767966266.logø}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767964513.logþß}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767962744.log÷]}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767960975.logïÜAE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767959389.logè߁ ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvC‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsv‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/E:\gsxm\FaDianJi\代}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768404674.logV‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsvoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\swg-login.html?qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\swaggerdoc.js>kYE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\site.js;wqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\jquery-3.3.1.min.js/pcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\swaggerdoc.css=n_E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\style.css<m]E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\site.css:qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server.csprojn
'[©+­/±ÍOÑSÕWÙ[
hMÕKŽ ±= Ì T è v  x
æ    ¾    4¥-}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768386571.logO~}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768384729.logK‘}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768319208.logF}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768308420.log>ã}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768297105.log8)}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768226619.log1}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767978825.log3}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767976705.logj‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.json0cIE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.cs5}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767974242.log Ã}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767966266.logø}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767964513.logþß}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767962744.log÷]}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767960975.logïÜAE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767959389.logè߁ ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvC‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsv‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/E:\gsxm\FaDianJi\代}yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768404674.logV‚#E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsvoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\swg-login.html?qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\swaggerdoc.js>kYE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\site.js;wqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\jquery-3.3.1.min.js/pcE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jssiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\swaggerdoc.css=n_E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\style.css<m]E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\site.css:qeE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server.csprojnQR88'׀€€ÍĀ€BR0cod¥C    tc¥Cduc¥Code¥C
u¥Cpro¥Crod¥Ctco¥Cuct¥C                        ^€€2K0all¥Bcod¥Betc¥Blet¥Ble¥Bode¥B    pal¥Btco¥B                        žˆ€€€€¼[¢0ndlœƒEp1Ÿ=   
#ed›[…Zn?rŸ0        sœƒE  fo<
ˆvR-EƒH  '<1,gb›%…G  U8 d=ˆ “5ƒHiˆ\˜$sœƒH‚is›'†"t›Z=ƒHU
HliœƒH    na0 Ve›[…Zse›RCƒH L  t-š%CƒHLTt13     M    24 V35 V46 V57 V68 V79 V8: V9; Vc? -  eŸ2    q2 Vrˆ\˜o.b›$†"ar›%…GT
 
8ceœƒHde?mŸ=]6
u1™v…GV 8#
ffœ!ƒHwœƒH‚li›%…GU8lˆ\˜mmœƒHp?sŸ0    
 
 
 
 
 
 
 
 
 
 
nc/ Ie?rŸ0           lœƒHn0 Vs›RCƒH L  tˆ\˜ol›%…GU8rkœƒH
‚
mGŠ @ƒGPL)y>
Š ‘…    E    N    (    se<
Š EƒH  BL,i>
Š ‘…EN(xi=ˆ“4ƒG!par›(3…B7u›X…ZclŸ2daŠW‘…Zslc›W9ƒ@PeŸ2on?sŸ0               s>
Š ‘…EN(reœƒHo1™voƒHV
8 #qty2 Vua? -r.cˆ\˜dn›&…GU 8s›%†" ep>
Š ‘…EN(sœƒH    kmœƒH ‚ muGŠ @ƒGPL)ocœƒHd1™v…GV 8 #    lˆ\˜s.ˆ\˜tp›W…Zs›(3…B
7veˆ\˜i<    Š }=ƒB      A H  &  s.bˆ\˜_b<
Š … B L , d›$†" m, V sˆ\˜ tœƒ! ' av mby nca-š%=ƒ? C No? -ea<
f‡0vR-?ƒ!'<1 !p›X…Zq? -r<    ˆv}=ƒB    
     < 
 H    
&        tœƒHhe›'†"ic<
Š R-…B1,g›Y…ZnœƒH    t>
Š ‘…EN(ksœƒ!'li›(†"scœƒH iœƒHsœƒH ta-š=ƒ-L N    ub›%†"t10< V_s- Vai=ˆ ’v?ƒF    
 
= J
 
n n   r›Wƒ\~sœƒ! ' t-š=ƒHL N
co? - ]6 pŸ2dt›%†"ecœ ƒH
dŠW—Pn¢*p›[…Zs›Y…Zxœƒ
1ia›Z…Z n›Z…Zo-šCƒH
L        T le›Z…Zi¢*na›'o.›$†"fœƒH‚o›%…GU8r>
Š ‘…EN(pl›W…Zr nqt2 Vroˆ\˜sb nc›[EƒH M i›Y…Zl›(†"us›[…Zual? -bm›%†"ct1™v…G        V8    # laGŠ @ƒGPL)niœƒH‚pdŠW‘…Zsse›X…ZteœƒHverˆ\˜t mic<    Š }=ƒB      A H  &  wcs<
f‡0vR-?ƒ!    '            <        1         !    id<
f‡0vR-?ƒ!'<1 !orœƒH    ‚    xamŸ2 ecœƒHin=ˆ“4ƒG"ybo n I,"
 
 
 
 
 
 
 
 
 
 
 "   DBI
 
-!0
E "  
 
.   m 
 
 
5 4
s
 
 
 
 
t / k 
 
 
a    
 
 . n54     0 [°ÞÜÖÐÊd^XRLF@:4.("
þøòìæàÚÔÎȼ¶°ª¤ž€zt&  ü ö ð ê ä Þ Ø Ò Ì Æ À º ´ ® ¨ ¢ œ –  Š „ ~ x r l f ` Z T N H    ÿ ø T M F ? 8 1 * #    
ù
ò
ë
ä
Ý
Ö
Ï
È
Á
º
³
¬
¥
ž
—

‰
‚
{
t
m
f
_
X
Q
J
C
<
5
.
'
 
 
 
 
    ý    ö    ï    è    á    Ú    Ó    Ì    Å    ¾    ·    °    ©    ¢    ›    ”        †        x    q    j    c    \    U    N    G    @    9    2    +    $                    úóìåÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞÞ×ÐÉ»´­¦Ÿ˜‘Šƒ|ung`YRKD=6/(! þ÷ðéâÛÔÍÆ¿¸±ª£œ•އ€yrkd]VOHA:3,%    ûôíæßØÑÊüµ®§ ™’‹„}vohaZSLE>70)" ÿøñêãÜÕÎÇÀ¹²«¤–ˆzsle^WPIB;4-&
üõîçàÙÒËĽ¶¯¨¡š“Œ…~wpib[TMF?81*#ùòëäÝÖÏÈÁº³+ƒS
ƒR ƒQƒPƒOƒNƒM ƒLƒKƒJƒI    ƒH
ƒG ƒF ƒEƒD
ƒCƒB ƒAƒ@ƒ?ƒ>ƒ=ƒ<ƒ;ƒ:ƒ9 ƒ8ƒ7    ƒ6ƒ5 ƒ4ƒ3 ƒ2    ƒ1 ƒ0ƒ/ƒ.ƒ- ƒ,ƒ+ƒ* ƒ)ƒ( ƒ' ƒ&ƒ%ƒ$ƒ# ƒ"ƒ!ƒ  ƒƒƒƒƒƒƒƒ ƒƒƒƒƒƒƒƒ ƒ ƒƒ  ƒ ƒ ƒ
ƒ     ƒƒƒƒƒƒƒƒƒ‚‚~
‚}
‚|‚{‚z ‚y‚x‚w‚v‚u‚t‚s ‚r‚q‚p‚o‚n ‚m‚l‚k‚j‚i‚h‚g%‚f‚e‚d"‚c‚b‚a    ‚`‚_    ‚^‚]‚\‚[‚Z‚Y‚X"‚W‚V‚U"‚T‚S‚R‚Q ‚P‚O‚N%‚M‚L‚K%‚J‚I‚H%‚G ‚F‚E‚D%‚C‚B‚A‚@‚?(‚>‚=‚<‚;‚:‚9 ‚8‚7‚6‚5‚4    ‚3‚2‚1‚0
‚/‚.‚-‚,‚+‚*
‚)‚(‚'‚&‚%‚$‚#‚"‚!‚ ‚‚‚‚‚‚‚‚‚‚‚‚‚‚
‚‚‚‚‚ ‚ ‚ ‚
‚    ‚‚‚‚‚‚‚‚‚    ~}|{zyxwvuts r
qp    onmlkjihgfedcba`_^]\[ZYXWV UTSR QP O N
M LKJIHG    FEDCBA@?>=  –  ˆ  z s l e ^ W P I     B     ; 4 - & zw zp zi zb     z[     zT zM zF z? z8     z1
z*     z#     z z z z ¡ š “ Œ … ~ w p i b [ T M F ? 8 1
* #              ~} |,*$         tsrqponmlk jih gfe dcba`_^    ]\[ Z YXWVU TSRQPO†Hjjj‚ ‚H† ††j jBA @jjj j;:9876543210/.-,+*)('&%$#
"!      â`âBâ<â6â0â*â$ââ   ââ â        ·ÿ³ å Þ × Ð É Â » ´ ­ ¦ Ÿ ˜ ‘ Š ƒ | u n g ` Y R K D = 6 / ( !    þ ÷ ð é â Û Ô Í Æ ¿ ¸ ± ª £ œ • Ž ‡ € y r k d ] V O H A : 3 , %          û ô í æ ß Ø Ñ Ê Ã ¼ µ ® §   ™ ’ ‹ „ } v o h a Z S L E > 7 0 ) "   
ÿ
ø
ñ
ê
ã
Ü
Õ
Î
Ç
À
¹
²
«
¤

–

ˆ

z
s
l
e
^
W
P
I
B
;
4
-
&
 
 
 
 
 
    ü    õ    î    ç    à    Ù    Ò    Ë    Ä    ½    ¶    ¯    ¨    ¡    š    “    Œ    …    ~    w    p    i    b    [    T    M    F    ?    8    1    *    #                    ùòëäÝÖÏÈùòëäÝÖÏÈÁº.'Áº³¬¥¢›xž—‰‚{tmf_XQJC<5.'¥ž—‰‚c\UNG@92+$ìåÞ×qjc\UNG@92+$ ú ó ìèáÚÓÌž·°©¢›”†x­Ðq”KD=6/(!éâÛÔþ `nŸ˜‘Š£œ•Žó‡€ðYƒj†,%3Ìž    ÷Rg|uÉ»´ÍÆ¿¸±ûôíæßØÑÊüµ®§ ™’„}vo·°©h‹  ýöVOHA:yrkd]JC<5{tLE>70)ªúZS ÿ"a¬¦ïè  ýöïmf_XQáÚÓø¦¦¦¦%¦¦¦¥n    ¥m    ¥l¥k¥j¥i¦¦¦ ¢>¢2¢1¢0 ¢/¢?¢¢¢¢¢¢ ¢ ¢ ¢
¢    ¢¢¢    ¢    ¢¢ ¢ s¤
¥Ÿ3Ÿ2Ÿ1 o&¤¤¤ ¤ ¤ ¥¥¥ ¥ ¥›:›9›2›1›0›/¦¡J¡I¡H ¡G¡Fš{šzšyšx›\%¡+››]›¡- ¡,—C—B —A —@—?—>—=¡.›^›¡/›¡1¡0›_››› ›¨”a%¡5¡4¡3 ¡2”b5432›8¦¦¦¦Š{ŠzŠyŠxŠw    Šv    ŠuŠtŠs ŠrŠq    Šp
›`”cˆ{›c›b›a ”dˆzˆy%¢=¢<¢;% r q p¨@¨?¨>&¨ ¨¢F¢E¢D¢C¢B¢A ¢@ ŠQŠPŠOŠNŠMŠLŠKŠJ ŠIŠHŠG ŠF
ŠE ŠD    ŠC    ŠBŠAŠ@ˆˆ    ˆ    ˆˆƒTƒS
ƒR ƒQƒPƒOƒNƒM ƒLƒKƒJƒI    ƒH
ƒG ƒF ƒEƒD
ƒCƒB ƒAƒ@ƒ?ƒ>ƒ=ƒ<ƒ;ƒ:ƒ9 ƒ8ƒ7    ƒ6ƒ5 ƒ4ƒ3 ƒ2    ƒ1 ƒ0ƒ/ƒ.ƒ- ƒ,ƒ+ƒ* ƒ)ƒ( ƒ' ƒ&ƒ%ƒ$ƒ# ƒ"ƒ!ƒ  ƒƒƒƒƒƒƒƒ ƒƒƒƒƒƒƒƒ ƒ ƒƒ  ƒ ƒ ƒ
ƒ     ƒƒƒƒƒƒƒƒƒ‚‚~
‚}
‚|‚{‚z ‚y‚x‚w‚v‚u‚t‚s ‚r‚q‚p‚o‚n ‚m‚l‚k‚j‚i‚h‚g%‚f‚e‚d"‚c‚b‚a    ‚`‚_    ‚^‚]‚\‚[‚Z‚Y‚X"‚W‚V‚U"‚T‚S‚R‚Q ‚P‚O‚N%‚M‚L‚K%‚J‚I‚H%‚G ‚F‚E‚D%‚C‚B‚A‚@‚?(‚>‚=‚<‚;‚:‚9 ‚8‚7‚6‚5‚4    ‚3‚2‚1‚0
‚/‚.‚-‚,‚+‚*
‚)‚(‚'‚&‚%‚$‚#‚"‚!‚ ‚‚‚‚‚‚‚‘.‘-‘,‘+‘*‘)‘(‘'‘&‘%‘$‘#‘"‘!‘ ‘‘ ‘ ‘    ‘’%’$’#’"’!’ ’’’’’’’’’’    ’¨¨¨¨¨¨¨ ¨ˆˆ¥ ¥¥¥¨¨¨ ¨¨¥"¥!Šo    Šn    ŠmŠlŠk Šj¦!‚ƒ^ƒ]ƒ\ƒ[ƒZƒY ƒX
ƒW ƒVƒU
G¦Æ©ŒoR5ûÞÁG*Œoãӝy3 ç`¦»L ò È ž t V 8  ô Õ ¶ — x Y : ð ¬ † ` 0 
Ö
µ
”
s
R
 
:
#    ì    Ð    ²    x    >    –    \    "        ðÀéÙ©©©©HWIDESEAWCS_ProductRecordServer$WIDESEAWCS_ProductRecordServerWIDESEAWCS_Model.Models,[WIDESEAWCS_Server.Controllers.BasicInfo;WIDESEAWCS_Model.Modelsé-WIDESEAWCS_Tasks±,[WIDESEAWCS_Server.Controllers.BasicInfo
a,[WIDESEAWCS_Server.Controllers.BasicInfoy,[WIDESEAWCS_Server.Controllers.BasicInfo;-]WIDESEAWCS_Server.Controllers.BoxingInfoo-]WIDESEAWCS_Server.Controllers.BoxingInfo>/YDirectionHeight1LodWIDESEAWCS_Task-WIDESEAWCS_Tasks;WIDESEAWCS_Model.Models@;WIDESEAWCS_Model.Models Ò #IWID;WIDESEAWCS_Model.Models ½;WIDESEAWCS_Model.Modelsj/YDirectionHeight3P3XDirectionDistance3O/YDirectionHeight2N3XDirectionDistance2M3XDirectionDistance1K9wrealYDirectionHeight3®=wrealXDirectionDistance3­9wrealYDirectionHeight2¬=wrealXDirectionDistance2«9wrealYDirectionHeight1ª=wrealXDirectionDistance1©9wrealScrewTorqueOutput§?wrealScrewDownsetDistance¦1wrealProductHeight¥/wrealProductWidth¤1wrealProductLength£ CWIDESEAWCS_WCSServer.FilterŽ CWIDESEAWCS_WCSServer.Filterˆ CWIDESEAWCS_WCSServer.Filter… CWIDESEAWCS_WCSServer.Filter‚,[WIDESEAWCS_WCSServer.Controllers.Systemg,[WIDESEAWCS_WCSServer.Controllers.SystemN/aWIDESEAWCS_WCSServer.Controllers.QuartzJob?%MWIDESEAWCS_WCSServer.Controllerst%MWIDESEAWCS_WCSServer.Controllerso%MWIDESEAWCS_WCSServer.Controllers[WIDESEAWCS_Tasks,[WIDESEAWCS_Server.Controllers.BasicInfo Ü%MWIDESEAWCS_SystemServices.SystemÁ?WIDESEAWCS_SystemServicesÔ?WIDESEAWCS_SystemServicesÎ?WIDESEAWCS_SystemServices¾?WIDESEAWCS_SystemServices©?WIDESEAWCS_SystemServices¦?WIDESEAWCS_SystemServices?WIDESEAWCS_SystemServicesš$KWIDESEAWCS_Server.HostedService—=WIDESEAWCS_Server.Filter‘=WIDESEAWCS_Server.Filter‹)UWIDESEAWCS_Server.Controllers.Systemd)UWIDESEAWCS_Server.Controllers.SystemX)UWIDESEAWCS_Server.Controllers.SystemU,[WIDESEAWCS_Server.Controllers.QuartzJobK,[WIDESEAWCS_Server.Controllers.QuartzJobH,[WIDESEAWCS_Server.Controllers.QuartzJobD#IWIDESEAWCS_Model.Models.System8#IWIDESEAWCS_Model.Models.SystemÁ;WIDESEAWCS_Model.Models!;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Modelsù;WIDESEAWCS_Model.Modelsì;WIDESEAWCS_Model.Modelsã;WIDESEAWCS_Model.ModelsÕ;WIDESEAWCS_Model.ModelsÌ;WIDESEAWCS_Model.ModelsÆ;WIDESEAWCS_Model.Models !! ¥ ¥ŸẀ€€€¿20.ba¥?\oˆ_ŸAcoˆ_<‚mo¥?*_ba›3‰p_  o¤ƒfo¤ƒib¥%p mo¥?* pr¤**‚,sc¤„eˆ_< ‚ ta¤„ un¤„ade¤„    ge¤„il¤*,s   ll¤)*me¥D*
na¤„d¤ƒ}s¤„se¤„    i›3‰pC!k¤„ta›7ŠO    i¤„    wcˆ_’Tˆ]*rbas›3‰pC   oxˆ_›1ƒ  can¤ƒzes›4ˆa*vin›3‰pC$jo¤    ƒw    od¤))    nˆ_:‚s_ˆ_’Tˆ]*
 
 
 
 
r
 
tc¥C*n¥D*s¤„ ut¤„dat›7ŠOel¥?*sˆ_’Tˆ]*rt¤    *,    s    
 
le¤ƒ}t_¥@*uc¥C)eawˆ_’Tˆ]*rct¤„ u¤„de¤„l.¥?*s¥?*of¤„n¤„po›6ŠO
r¤„r.ˆ_<‚sˆ_<‚vˆ_’Tˆ] \r
 sc¤ƒ} eˆ_’Tˆ]*rs›4ˆa*    v
ta¤*,s
  c¤)*e¤„    xe¤„p›7ŠOffl¤„    li¤„
od¥$*,     r¤ƒs›3ˆa ]      x wo¤„gcoˆ`Ÿ@de¤„inˆ_ŸA%se¤„han¤ƒ}iba¥%p ce›3ˆ] \r i›3‰pC#deˆ_’Tˆ]*rlc¦i¨s¤p    s ne¤ƒ}  fˆ_’Tˆa *         
%                v
    &gˆ_›1ƒ #on¤„ pr¥&pto›6ˆan
wjob¤    ƒw    kma¤„ l.m¥?*ad¤„s¤„cj¤    ƒw    o¦ed¤„o¤ƒ}p¤„rˆ_:‚t¤)*in¤ƒx
 leˆ_›8)*/‚s.¥?e¤p    sman¤„ od¥?* ul¤ƒnag¤„m¥D*    dl¤ƒ}es¤ƒ}  foˆ_’Tˆa * 
 
 &
 
 
 
v     'gcˆ`Ÿ@d¤„iˆ_ŸA$s¤„it¤„li¤„    se¤„ t¤„trˆ_:‚
oce›4ˆa*vde¤ &    
)     u¥C)ff¤„w¤„llˆ_:‚ nl¤„s¤„ tˆ_:‚    rk¤„
m¤ƒt›7ŠOy›6ŠO        
    se›3ˆa ]      x i›6ŠO
xiˆ_›1ƒ !pal¤)*lc¤    ƒw    or›7ŠOs›6ŠO
re¤„o›4ˆa&vr.cˆ_<‚ep›6ŠO
s¤„    km¤„ mu¤ƒoc›4ˆa*vd¥C)lˆ_:‚ s.ˆ_<‚td›7ŠOveˆ_<‚i›3ˆ] \r  s.bˆ_œ`\‚_b›3‰p_  i¥%p m¥?* sˆ_< ‚ t¤„ ca¤ƒz de¨    eaˆ_’Tˆ]*rrˆ_’Tˆ] \   r    
 ic›3‰pC"n›4ˆa*     v    t›6ŠO
ks¤„sc¤„ d¨i›4ˆa*
vs¤„ ta¤„t_p¥@*ai¤*,s   s¤„ t¤„co¤))da›7ŠOec¤„
io¤„
na¥D*of¤„r›6ŠO
roˆ_:‚ sc¤„ uct¥C)
 
 
 
  ,
 
 
 
* 2*
    
)0
+
 
    
 
W)6,
 
(   O* K
 
 
 
 $      L
 
 
 
30
 
 
)  ;
2 N        
*W. .
,
 
 
 åÍAÐ_ðˆ ˜wP´Ñy*ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍh¦Váì{IÖöWIDESEAWCS_DTO.BasicInfo.UpdatePartScannedStatusRequestUpdatePartScannedStatusRequest³×â¦Mšx==ÖöWIDESEAWCS_DTO.BasicInfoWIDESEAWCS_DTO.BasicInfo…Ÿ{C
Z—Cq¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.IsScannedIsScannedU7ý     —}b—By'¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentNameComponentName‹7. < Ì}b—Ay'¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentCodeComponentCodeÁ7d r }Z—@q¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.FormulaIdFormulaId9ž    ¨ JkL—?c¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.IdIdJ5íð ‰tU—>]-¸²WIDESEAWCS_Model.Models.Dt_FormulaDetailDt_FormulaDetail?àØGL—=;;¸²WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸ÑQ®t
e’$}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectHeight2rrealDetectHeight2¼;e’#}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectHeight1rrealDetectHeight1Z;ŸŸl’"7-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectScrewAnglerrealDetectScrewAngleô<::n’!9-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectScrewTorquerrealDetectScrewTorque<ÓÓn’ 9-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectPressHeightrrealDetectPressHeight&<llp’;-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolLocation4ScanStartrboolLocation4ScanStartÁ9”d!W/»WIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoController.ExportDataExportDataXŒA
€DîÖ    ExportData([FromBody] Dt_ProcessInfo).”c37a/»WIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoController.ProcessInfoControllerProcessInfoControllerè4áa    ProcessInfoController(IProcessInfoService)r”b7/»WIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoControllerProcessInfoController /‚Ö÷@k”a[[/»WIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfoÛ'ÌÑÿ
³_/I-cWIDESEAWCS_Tasks.PLCJob.HandleOfflineScanHandleOfflineScanBbCC5
Bù
»    HandleOfflineScan(OtherDevice)8]-G-cWIDESEAWCS_Tasks.PLCJob.HandleDetectScanHandleDetectScan0•b11<E1€    HandleDetectScan(OtherDevice)À[+E-cWIDESEAWCS_Tasks.PLCJob.HandlePressScanHandlePressScanobètÛ®    HandlePressScan(OtherDevice)K]-G-cWIDESEAWCS_Tasks.PLCJob.HandleOnlineScanHandleOnlineScanb‘¿¤„ß    HandleOnlineScan(OtherDevice)ÓKG-cWIDESEAWCS_Tasks.PLCJob.ExecuteExecuteŽ#Çö»Q    Execute(IJobExecutionContext)mK-cWIDESEAWCS_Tasks.PLCJob.commandcommand:s[3)E-cWIDESEAWCS_Tasks.PLCJob.TextText­:    ñ&ëC-cWIDESEAWCS_Tasks.PLCJob.setsetnVW²I‚/-cWIDESEAWCS_Tasks.PLCJob.PLCJobPLCJobVÏ}Oý    PLCJob(IBoxingService, IBoxingDetailService, IFormulaService, IFormulaDetailService, IProcessInfoService, IUnitOfWorkManage, IScanStationService)Ûc3-cWIDESEAWCS_Tasks.PLCJob._scanStationService_scanStationService/
9‚_/-cWIDESEAWCS_Tasks.PLCJob._unitOfWorkManage_unitOfWorkManageîË5-c3-cWIDESEAWCS_Tasks.PLCJob._processInfoService_processInfoService­ˆ9Ôg7-cWIDESEAWCS_Tasks.PLCJob._formulaDetailService_formulaDetailServicehA=w[+-cWIDESEAWCS_Tasks.PLCJob._formulaService_formulaService'1&e5-cWIDESEAWCS_Tasks.PLCJob._boxingDetailService_boxingDetailServiceçÁ;ËY)-cWIDESEAWCS_Tasks.PLCJob._boxingService_boxingService¨ˆ/|;-cWIDESEAWCS_Tasks.PLCJobPLCJoba}L>1LŠ@---cWIDESEAWCS_TasksWIDESEAWCS_Tasks*L”L°
e’%}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectHeight3rrealDetectHeight3;cc yÌ¢y'5SymbolIX_Symbol_DocumentId532 7 1 1(?SymbolIX_Symbol_UnqualifiedName532 2255SymbolCompletion_idxSymbolCompletion_idx13 2 1
¡MÃ4¡wîa Ø Z à m ù 
—
#         ·ÝG‚%E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_DictionaryList.tsvF ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvC‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsv‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsviQE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\SocketClient.cs-àoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csprojqcEE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cs_Œ‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\WIDESEAWCS_TaskInfoService.csprojp‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csprojosiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_UserService.cs_umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_TenantService.cs[siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.csXwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csVsiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_MenuService.csPrgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_LogService.csLyuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryService.csI}}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryListService.csH‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_User.tsv] ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_RoleAuth.tsvT‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.tsvR‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Menu.tsvN U99Œ Ä Ä223<߀€€¿2?0.atbaˆj'†oˆ\co‚?    …h '†fiƒhoƒmo|                 …_‚)*pl‘qu‚?"sy& w" "Zta1sck42scl43scm44scn4_acGba  2    ‰c ) „` !   o}‡‰ca‚QO7o   y deMiPkDt&    fi!o‰,†rht‚A  idx+sO        loUlMmaƒ,eW#bLoq                                 …_ ‚) * ne ple7rŠkrob%    SUsc-e‚D  
   '   …E    ' † yƒ            tad ej/W]unƒ  sm5S^wc‚?          eƒablS
  !cc‚A  e‚~h;‚O7o„„€€€€ˆ,û0ubm›%ct›'esšyla 8Q†     ƒp@niœpdšy Bse›Bršyteœih0oh1ver‰ †…(†{ic
7‰e…(} P‰_ =  wanq1cs
9Qˆ     … Kf    ‚L    ‚\    ƒ;                                  4    id
9Qˆ     … Kf‚L‚\ƒ;  4orœ    top1xech0 ŠinŠ*‡Š`po<… †S    .
l DD 7€€€¦Jô0_ba›|o’(‰Ufo’*‰Tpr’,‰jsc’.‰jta’&‰j un’-‰Tade’+‰U    ge’-‰Til’)‰R  na’-‰Td’2‰es’.‰jrdœse’*‰U    i›|k’&‰jti’.‰j    veœwc’&‰Vbas›|oaœx’(‰Tcan’.‰aes’,‰jin›|jo’'‰bodœm’2‰Rs_’&‰V
ts’6‰j ut’3‰jdes’&‰V t’) ‰G    
le’4‰gnoœeaw’&‰Vct’6‰j u’3‰jde’6‰jntœof’7‰jn’4‰jpoœr’5‰jquœrv’(‰N
 sc’4‰g e’&‰V s’,    ‰a    
ta’)‰R
 e’6‰j    oœxe’3‰jt’1‰jffl’7‰j    li’7‰j
or’*‰Ts’,‰P wo’-‰Tgboœde’u€€€€ƒnØ0_ba¡a asi¡awc¡abas¡a cin¡as_¡a
des¡aeaw¡arv¡ase¡afos¡aice¡ai¡ade¡anf¡anfo¡aose¡arvi¡as_b¡a ea¡ar¡aic¡avic¡awcs¡a    id¡a                                                        h€€€‘Hâ0_ba¡Vo¡Xfo¡Yun¡[ade¡Zge¡[il¡Wna¡[d¡`rd¡_t¡`se¡Yi¡Vve¡_wc¡Vbas‰\ˆ€€€€“<T0_bo§fo§pr§sc§"ta§un§!ade§ge§!il§ll§#na§!d§&s§"se§k§ti§"wc§box§can§"es§jo§
od§#s_§ts§(ut§%des§t§le§&eaw§ct§(u§%de§(of§)n§&pr§'rv§sc§&e§s§ta§c§#e§(xe§%ffl§)li§)or§s§wo§!gde§se§han§&ice§de§li§ s§ne§&f§g§on§"to§!job§
kma§!lad§s§cj§
ed§(o§&p§'t§#in§ le§#se§man§!ul§nag§!dl§&es§&fo§gd§s§it§!li§&se§"t§"oce§de§#ff§)w§!nl§&s§"rk§!m§se§xi§pal§#lc§
re§'o§res§'km§!mu§oc§vi§s‚lˆ€€€€…\B0.bo¨;co¨;_se¨; awc¨;box¨; con¨;s_¨;
des¨;eaw¨;r.¨;s¨;v¨;se¨;gin¨;%ide¨;nf¨;&g¨;#ler¨;le¨;nfo¨;'gi¨;$tr¨;oll¨;nt¨;xi¨;!r.c¨;ol¨;s.¨;ve¨;s.b¨;_s¨; ea¨;r¨; tro¨;ver¨;wcs¨;    id¨;xin¨;"                                                                    
¡MÃ4¡wîa Ø Z à m ù 
—
#         ·ÝG‚%E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_DictionaryList.tsvF ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvC‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsv‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsviQE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\SocketClient.cs-àoaE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csprojqcEE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cs_Œ‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\WIDESEAWCS_TaskInfoService.csprojp‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csprojosiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_UserService.cs_umE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_TenantService.cs[siE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.csXwqE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csVsiE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_MenuService.csPrgE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_LogService.csLyuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryService.csI}}E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryListService.csH‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_User.tsv] ‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_RoleAuth.tsvT‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.tsvR‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Menu.tsvN s9ÏHÁxðh à X Ð H À 8
°
(         €øëb9±)¡Œœs­ywE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.cs܁~—؁    ƒ­v‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\UpdatePartScannedStatusRequest.cs܁cw‘ƒ£byE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767953292.log܁¶^ƒ˜SyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767893166.log܁ Îá|YƒŠyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767891186.log܀€ÐCNi‚ûyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767886687.log܀|4W²÷yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767783815.log܆+ûgǁéWyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767782006.logÜ‚6Kԁß;‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoController.csÜt|Jkg‚ñ2{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.cs܀jhCс‚ïyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767881252.log܀qºr‡Ô…xsE:\gsxq‚ñ:UE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.json܀kf—›‚àgyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767878621.log܀eð÷T‚ÑbyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767876837.log܀^òԗ7‚ÂbyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767875057.log܀ZË{ŸP‚³nyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767873288.log܀V¦… ́‚¤|yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767871522.log܀Rˆ%‚–+yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767869794.log܀Nk~ü¥‚‡WyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767867444.log܀JeEýü;yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767863216.log܀Dì‰ðiö9yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767807025.log܀;M¨è    yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767803172.logܸ@QÏ\ÜSyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767797403.logܯGǔ¾ÏfyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767794499.logÜ¡Ù<ìЁÁ yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767792591.logÜ›!†?²'yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767790807.logÜ–¥®£/yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767789023.logÜ’}©Ãz”EyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767787256.logÜŽVPÕ²…^yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767785516.logÜŠ9. R ¶ Q
ô
¤
/è{©Fâu ‰ R$À®³M    À    J—    { n n n n n n2›;{ÖùWIDESEAWCS_BasicInfoService.IScanStationService.UpdatePartScannedStatusUpdatePartScannedStatus: q    UpdatePartScannedStatus(UpdatePartScannedStatusRequest)pE;{ÖøWIDESEAWCS_BasicInfoService.ScanStationServicec›:! UWIDESEAWCS_BasicInfoService.IFormulaDetailService.RepositoryRepositoryŽ
™i8c›9o7 UWIDESEAWCS_BasicInfoService.IFormulaDetailServiceIFormulaDetailService&^J“T›8CC UWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceñ¯çÖ
G>!A TWIDESEAWCS_BasicInfoService.ProcessInfoService.ExportDataExportData2Ή
5È‚    ExportData(Dt_ProcessInfo)G¼! TWIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepository
 
í9GZ1k TWIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoService„Õ }d    ProcessInfoService(IRepository<Dt_ProcessInfo>)G·i1 TWIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoService
rïýdGWCC TWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceÙönÏ•
b›2! SWIDESEAWCS_BasicInfoService.FormulaDetailService.RepositoryRepositoryo
z
J;)›15s SWIDESEAWCS_BasicInfoService.FormulaDetailService.FormulaDetailServiceFormulaDetailServiceÝ2 Öh    FormulaDetailService(IRepository<Dt_FormulaDetail>)a›0m5 SWIDESEAWCS_BasicInfoService.FormulaDetailServiceFormulaDetailService[ËÑNNT›/CC SWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService*GX 
jš{ÖöWIDESEAWCS_DTO.BasicInfo.UpdatePartScannedStatusRequest.IsScannedIsScannedO7›    ¥ "\šzÖöWIDESEAWCS_DTO.BasicInfo.UpdatePartScannedStatusRequest.IdIdâ<36 ( 4{IÖöWIDESEAWCS_DTO.BasicInfo.Update
›`A ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.PausePLCPausePLC…¡Í;Q·    PausePLC([FromQuery] bool)
›_A ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.StartPLCStartPLCq„Oz:ÿµ    StartPLC([FromQuery] bool)/›^37a ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.ScanStationControllerScanStationController    Ua    ScanStationController(IScanStationService)s›]7 ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationControllerScanStationController,/£÷?aÕl›\[[ ZWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfoü'%òG
ršy{IÖöWIDESEAWCS_DTO.BasicInfo.UpdatePartScannedStatusRequestUpdatePartScannedStatusRequest³×â¦Mšx==ÖöWIDESEAWCS_DTO.BasicInfoWIDESEAWCS_DTO.BasicInfo…Ÿ{C
Z—Cq¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.IsScannedIsScannedU7ý     —}b—By'¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentNameComponentName‹7. < Ì}b—Ay'¸²WIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentCodeComponentCodeÁ7d r }S7ÖúWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController›a'+/ ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.GetSignalStatesGetSignalStatesYÐë;y­    GetSignalStates()›15ÖùWIDESEAWCS_BasicInfoService.IScanStationService.GetLeftInitialDataGetLeftInitialDataÃïÕ/    GetLeftInitialData()|› +/ÖùWIDESEAWCS_BasicInfoService.IScanStationService.GetSignalStatesGetSignalStates{¥‹,    GetSignalStates()j›})ÖùWIDESEAWCS_BasicInfoService.IScanStationService.PausePLCPausePLC-X>1    PausePLC(bool)j›})ÖùWIDESEAWCS_BasicInfoService.IScanStationService.StartPLCStartPLCà ñ0    StartPLC(bool)a›!ÖùWIDESEAWCS_BasicInfoService.IScanStationService.RepositoryRepositoryÁ
Ìž6`›k3ÖùWIDESEAWCS_BasicInfoService.IScanStationServiceIScanStationService_“NJT›CCÖùWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService*GT {
!!ŸWŒ€€€€¿2:0.baˆj’:†"uƒoˆ\˜coˆ\˜Lmo, Vƒ=_ba<
Š …Z   K    oœ‡dt›$†" fo›S@…‚fib¥% mo, V ƒ= prœˆ*sc-šk…k‚eˆ\˜ L taœƒ! „_ unœˆacoˆk™PddŠV—me›TA…    ‚g        geœˆil=ˆ ’v?„[  = ‚]      ld›Z…Zl¤)s›Y…Z    me0™w†_
ƒ>
pŸ2 naœˆdœ„R ƒ  n›[…Zs-š%C…T‚rd›%…LT  ‚Ft›(/ƒX@>    ‚EseGŠ A…        S        i<
ˆ$hR-…Zi !K  kœƒ!„_taŠV‘…Z        eŠW‘…X i-šC…T ‚    u›[…Zus›X…Zve rƒwc<
f‡0hR-?ƒ!><<- K bas<
ˆ$hR-…Z i   K    mi›%†"oa›%…L T        ‚F  x=ˆ“4„\ ƒyb sƒcan-š%=…  N‚esœˆin<
ˆ$hR-…Zi $K  joœ‡x    liŸ2od?p <    ‚   "    m?sš`…l                                            {nˆ\ ˜J        pcŸ2s_<
f‡0hR-?ƒ!
>
<
 
<
-
 
 
K
 

 
 
 
ta s
ƒ

c¡Iƒzl¢2   n›'Šsœ ‡~ utœ‡~datŠV‘…YdaŠV—mdŠV—mel, Vƒ=s<f‡0hR-?ƒ!><<- Kt=ˆ ’v? „P=
‚]        
    z
 leœ‡{no›&…LU ‚Fpa sƒr1™v†"    > + st›[…Zu›%†" t_- Vƒ=o›$†! uc1™v…LV >+   I!eaw<
f‡0hR-?ƒ!><<- K ctœ ‡~ uœ‡~daŠW—leœ ‡~p›'†"s›[…Zft›Z…Zl., Vƒ=s, Vƒ=nd1 V    + t?sv‚V{

 
ofœ!‡~nœ‡~pa›[…Zl›X…Zo>
Š ‘…ZJrœ‡~qu?£Nr.ˆ\˜Lsˆ\˜Lv<    ˆh}=„W<  
 
I
 
 scœ‡{ e<f‡0hR-?ƒ!><<- Ksœ    ‡w
    ta=ˆ ’v?„[        = ‚]
 
          c¤)eœ † X    l›Z…Zo rƒp sƒs›Y…ZxaŸ2 eœ‡~tœfflœ!‡~    in›'†"liœ!‡~
od¥$  rGˆ$g@… Ss<
Š E…K   ti›Z…Zwoœˆgbo›%…L U‚F  de=ˆ “5„]ƒet›Y…@~ Iinˆ\˜%na›Y…Zseœˆhanœ‡{ed›'†"ial›Z…Z ba¥% o=£Nce<    Š }=…  I  i<
ˆ$hR-…Zi #K  de<
f‡0hR-?ƒ!><<- K enŸ2foG¡ign›Y…Zlcˆ]˜  s=›?…‚]    neœ‡{  f<
ˆhR-E„Y&<i %K 
     
 g=ˆ’Gl„\#
U‚C

i›'3…Z    on-šC…
 
T ‚ pr¥&sc?£Nh›'†"t›(†"h td›%†"i›Z…Z o>
Š ‘A…
% " 9
&
$#&3a
G5 $/64#K$G
 
$
Q<
+H
 
 
 
L
 
 
 Q9 
 
 
 =+ #$      3G
*FBb
 
Œ- ZAùŸEæ‰*½Vóˆ!¶Oä}-Ð}´Xúœ<<<<<<<<<<<<< Ý mŒ­a)WIDESEAWCS_BasicInfoService.FormulaServiceFormulaServiceV®    7I    œŒVCCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService%B    ¦    Í
MŠQaWIDESEAWCS_Model.Models.Dt_Formula.DetailsDetailsº     ÆdŠPu/WIDESEAWCS_Model.Models.Dt_Formula.YDirectionHeight3YDirectionHeight3 /: Þ ð sŠhŠOy3WIDESEAWCS_Model.Models.Dt_Formula.XDirectionDistance3XDirectionDistance3 O<   •ŽdŠNu/WIDESEAWCS_Model.Models.Dt_Formula.YDirectionHeight2YDirectionHeight2 u: $ 6 ¹ŠhŠMy3WIDESEAWCS_Model.Models.Dt_Formula.XDirectionDistance2XDirectionDistance2
•< H \
ێdŠLu/WIDESEAWCS_Model.Models.Dt_Formula.YDirectionHeight1YDirectionHeight1    »:
j
|     ÿŠhŠKy3WIDESEAWCS_Model.Models.Dt_Formula.XDirectionDistance1XDirectionDistance1Û<    Ž    ¢     !Ž`ŠJq+WIDESEAWCS_Model.Models.Dt_Formula.DintAutoScrewOnDintAutoScrewOn<² I†dŠIu/WIDESEAWCS_Model.Models.Dt_Formula.ScrewTorqueOutputScrewTorqueOutput):Øê mŠjŠH{5WIDESEAWCS_Model.Models.Dt_Formula.ScrewDownsetDistanceScrewDownsetDistanceH<û Ž\ŠGm'WIDESEAWCS_Model.Models.Dt_Formula.ProductHeightProductHeightr:! / ¶†ZŠFk%WIDESEAWCS_Model.Models.Dt_Formula.ProductWidthProductWidth:L Y á…\ŠEm'WIDESEAWCS_Model.Models.Dt_Formula.ProductLengthProductLengthÈ:v „  …WŠDi#WIDESEAWCS_Model.Models.Dt_Formula.ProductNameProductName7£ ¯ A{WŠCi#WIDESEAWCS_Model.Models.Dt_Formula.ProductCodeProductCode87Û ç y{EŠBWWIDESEAWCS_Model.Models.Dt_Formula.IdIdy5 ¸tHŠAQ!WIDESEAWCS_Model.Models.Dt_FormulaDt_FormulaQ
n h Á    ñ7æWIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualpÁG²ä;[    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>) ¨,KÞWIDESEAWCS_Tasks.PLCJob.PŠkY)†WIDESEAWCS_Model.Models.Dt_ProcessInfoDt_ProcessInfo9 ëØ LKŠj;;†WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸Ñ V® y
¨<w!9WIDESEAWCS_BasicInfoService.FormulaService.UpdateDataUpdateData
~
 
¥9
[ƒ    UpdateData(Dt_Formula) ¨Èw!7WIDESEAWCS_BasicInfoService.FormulaService.UpdateDataUpdateData
<ð_    UpdateData(SaveModel) ¨Tq1WIDESEAWCS_BasicInfoService.FormulaService.AddDataAddData…«9b‚    AddData(SaveModel) ¨êw!WIDESEAWCS_BasicInfoService.FormulaService.RepositoryRepository@
K
!5 ¨)[WIDESEAWCS_BasicInfoService.FormulaService.FormulaServiceFormulaServiceÀ     ¹\    FormulaService(IRepository<Dt_Formula>)KŠ@;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Modelsõ Ëë î
”!æWIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepositoryL
W
(:13oæWIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailService»´h    BoxingDetailService(IRepository<Dt_BoxingDetail>)Šk3æWIDESEAWCS_BasicInfoService.BoxingDetailServiceBoxingDetailService=©ô0m)CCæWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService )wž
ÓmŠr3†WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueStandardTorsioValueStandardá8Œ  #Š\Šqq#†WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueTorsioValue6¼ È U€]Šps%†WIDESEAWCS_Model.Models.Dt_ProcessInfo.ComponentQtyComponentQty\7ï ü l[Šoq#†WIDESEAWCS_Model.Models.Dt_ProcessInfo.ProductNameProductName”77 C Õ{[Šnq#†WIDESEAWCS_Model.Models.Dt_ProcessInfo.ProductCodeProductCodeÌ7o {  {YŠmo!†WIDESEAWCS_Model.Models.Dt_ProcessInfo.PalletCodePalletCode8¨
³ E{IŠl_†WIDESEAWCS_Model.Models.Dt_ProcessInfo.IdIdD5çê ƒt ""
Ì
s
    Ëšâ    [ñWé~ŸV”€€€€¿0,0ler‚? …Y     %†/sd    ,[Wtˆ‚ShefinL    sP qD
 z‚}lce‚bdƒ%e‚?…#B     %K„Lmƒ/ok1rƒHme`‚Loaƒck1gU{l    (2nipr‘#roƒHs.Awc‘&e 1‰f  ‡teƒue+ -
‡?
 
  xd‘)yd‘*mag‚0i‚-nƒ     pƒ
    "rT  5uƒ en)*     _
 (    G    G     inƒ0 s0    +     Q    3    E    moyodp                                  C[„9 ‚) * nypo?A            ‡fCrƒseO ‚.     tyaul 8N‡TF†_n.ap‘t1sk42sl43sm44sn4abS
  !gƒ  ms      
 
     
U…    ‚(    +    …v    7    nj    .9\r7     k    D     uƒ bo%ceŠH†Wo/@†%  dao‰dqe‚iŠK   †Zo‘p1
t'    ec‚ei n?    Akˆ    CsŠsw fi9.o2% N              & _ „'' &&'&    ) „G &
 
 
 
} gcˆ`d=@    ‡`L‡i‡]$$lŠx…ys9‚FŽ*tŠE †^heŠL   †Zid( nrs!    tk‚,  liX‚U
1meƒ0na0e‚odBre‚ sesˆU
†    Et-q ‡‡1 
t13    2435465768798:9;aŠJ†^c? A        8
 
 
‡; dƒS
e‚A                          ik
Y
 
#  <
_
mX
‚V
n        6
Loƒ4 q2‰>    r‚?        …e
 
      %†sj ‚e
 
tf
l
JP
^
uo
‚ 
Q
 
uaX‚Ubƒ1c‚\d-i)
2lZ ‚_ m  xn|sW    /$t‚o.s&adƒrƒ4     bjƒ2cak1eŠk„Hkƒ    o‚@        Œm  de?2   
              D…    
‚
'    
ipAJcu1R…‚''†4            exh
faƒiƒ
 
wƒ  gc‚Yin‚
[sU‚Rin‚C ke‚6H
lah5c‚Ed‚IebZD?F     hfil‚?…e       %†01oimaƒmyp?A
 
 
 
 
 
 
 
 
 
 
S‡Cn.y1k 4 2l 4 3m 4 4n 4 a7
     k    1 . /'
"    |.c?
51     N.=3    @
p    '  $
 
( 
 
 
#{2
 
 
U    AA
 
 
 
–þ    Ã 9›%Éj ® W ©@Þ{þ    B    B    B    B    B    B    B    B    B((( 7 7 7 7 7^^^^^mmøk1-WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight3rrealDetectHeight3;ZZø¾k1-WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight2rrealDetectHeight2³;øøø_k1-WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight1rrealDetectHeight1Q;––¿!W)QWIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoController.ExportDataExportData«
êDXÖ    ExportData([FromBody] Dt_ProcessInfo)'37a)QWIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoController.ProcessInfoControllerProcessInfoControllerè4áa    ProcessInfoController(IProcessInfoService)u7)QWIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoControllerProcessInfoController /‚Öa@÷øÄCC*XWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService¸Õb®‰
øn[[)QWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfoÛ'6Ñi
z5!A)OWIDESEAWCS_BasicInfoService.IProcessInfoService.ExportDataExportData¿ë
ÑD    ExportData(Dt_ProcessInfo)`4!)OWIDESEAWCS_BasicInfoService.IProcessInfoService.RepositoryRepository 
«}6_3k3)OWIDESEAWCS_BasicInfoService.IProcessInfoServiceIProcessInfoService>rª-ïS2CC)OWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService    &ùÿ 
 
"-!*XWIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepositoryï
Ì9
"K1k*XWIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoServicec´ \d    ProcessInfoService(IRepository<Dt_ProcessInfo>)
"©i1*XWIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoServiceéQãÜX
"JXLBY)^b!+àWIDESEAWCS_BasicInfoService.ScanStationService.RepositoryRepositoryz
W9
"¸i1+àWIDESEAWCS_BasicInfoService.ScanStationServiceScanStationServicetÜ­g"
"YCC+àWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceC`,9S
`T!+ÙWIDESEAWCS_BasicInfoService.IScanStationService.RepositoryRepository 
«}6
"·k3+ÙWIDESEAWCS_BasicInfoService.IScanStationServiceIScanStationService>rJ-
"VCC+ÙWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService    &™ÿÀ
~W!A*XWIDESEAWCS_BasicInfoService.ProcessInfoService.ExportDataExportDataŒÁ
ô5§‚    ExportData(Dt_ProcessInfo)\Šqq#†WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueTorsioValue6¼ È U€XCe5*ÞWIDESEAWCS_Tasks.PLCJob._boxingDetailService_boxibqq7-WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectScrewAnglerrealDetectScrewAngleë<11gs9-WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectScrewTorquerrealDetectScrewTorque„<ÊÊ]cu+àWIDESEAWCS_BasicInfoService.ScanStationService.startstart¸É¡žÌ    start()¢1k+àWIDESEAWCS_BasicInfoService.ScanStationService.ScanStationServiceScanStationServiceî? çd    ScanStationService(IRepository<Dt_ScanStation>)mŠr3†WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueStandardTorsioValueStandardá8Œ  #ŠTŠ{i†WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height3Height3 W; œTŠzi†WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height2Height2 …; 6 > ʁTŠyi†WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height1Height1 ³; d l øZŠxo!†WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewAngleScrewAngle
Ü< 
š "…\Šwq#†WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewTorqueScrewTorque
<
·
Ã
J†\Švq#†WIDESEAWCS_Model.Models.Dt_ProcessInfo.PressHeightPressHeight    ,<    ß     ë     r†YŠuo!†WIDESEAWCS_Model.Models.Dt_ProcessInfo.TestResultTestResultc7    
     ¤|sŠt9†WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStandardStiffnessValueStandardˆ83J ʍbŠsw)†WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStiffnessValue¹6`o ùƒ Ô¯_ÿŸ. ½ L Û s ¥ .
½
Y    ä    sþ§V®Zò…-ºGÔað¨@ؘ\„“L;-cWIDESEAWCS_Tasks.PLCJobPLCJoba}L>1LŠ=’&---cWIDESEAWCS_TasksWIDESEAWCS_Tasks*L”L°
ü}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectHeight3rrealDetectHeight3;cc”}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectHeight2rrealDetectHeight2¼;e’#}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectHeight1rrealDetectHeight1Z;ŸŸl’"7-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectScrewAnglerrealDetectScrewAngleô<::n’!9-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectScrewTorquerrealDetectScrewTorque<ÓÓn’ 9-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rrealDetectPressHeightrrealDetectPressHeight&<llp’;-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolLocation4ScanStartrboolLocation4ScanStartÁ9p’;-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolLocation3ScanStartrboolLocation3ScanStart\9ŸŸp’;-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolLocation2ScanStartrboolLocation2ScanStart÷9::p’;-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolLocation1ScanStartrboolLocation1ScanStart’9ÕÕU’m!-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolErrorrboolError98{
{
j’5-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolOnlineExecutingrboolOnlineExecutingÖ:e’}1-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolAutoExecutingrboolAutoExecutingu:¹¹Q’i-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolEMGrboolEMG#5bbU’m!-bWIDESEAWCS_Common.PLCEnum.R_PLCDBName.rboolHeartrboolHeartÏ5
 
M’W#-bWIDESEAWCS_Common.PLCEnum.R_PLCDBNameR_PLCDBName³ ŧÖN’??-bWIDESEAWCS_Common.PLCEnumWIDESEAWCS_Common.PLCEnum… à{
n‘.9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealYDirectionHeight3wrealYDirectionHeight3j:®®r‘-    =-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealXDirectionDistance3wrealXDirectionDistance3<GGn‘,9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealYDirectionHeight2wrealYDirectionHeight2œ:ààr‘+    =-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealXDirectionDistance2wrealXDirectionDistance23<yyn‘*9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealYDirectionHeight1wrealYDirectionHeight1Î:r‘)    =-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealXDirectionDistance1wrealXDirectionDistance1e<««a‘(y--YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wDintAutoScrewOnwDintAutoScrewOn<JJn‘'9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealScrewTorqueOutputwrealScrewTorqueOutputŸ:ããt‘& ?-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealScrewDownsetDistancewrealScrewDownsetDistance5<{{e‘%}1-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealProductHeightwrealProductHeightÔ:c‘${/-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealProductWidthwrealProductWidtht:¸¸e‘#}1-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wrealProductLengthwrealProductLength:WWn‘"9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wboolLocation4ScanDonewboolLocation4ScanDone¯9òòn‘!9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wboolLocation3ScanDonewboolLocation3ScanDoneK9ŽŽn‘ 9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wboolLocation2ScanDonewboolLocation2ScanDoneç9**n‘9-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wboolLocation1ScanDonewboolLocation1ScanDoneƒ9ÆÆ]‘u)-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wboolAutoPausewboolAutoPause)7jj]‘u)-YWIDESEAWCS_Common.PLCEnum.W_PLCDBName.wboolAutoStartwboolAutoStartÏ7M‘W#-YWIDESEAWCS_Common.PLCEnum.W_PLCDBNameW_PLCDBName³ ħ$N‘??-YWIDESEAWCS_Common.PLCEnumWIDESEAWCS_Common.PLCEnum… .{S
"" џV”€€€€¿0-0espsst>  ‡u    „=tr ‡s uŠuta 
 
1
       4[
  „U@        
 
/        &†a
cX    }4„=‚Sd‚C`‡% †^eohƒ        i‚GmY‚Qo‚~p[‚Xsƒ
     t^‚VuZ ‚   vS‚(&ur‚0
vi‚@waŠx…ydŠH†^
oŠJ †^tŠI.…y7
xa        eh  p5t*    r      yvƒ2facƒfnŠsic‚|
g9.lƒ  n!neŠsoc‚@
 
 
  Œm  r 8N‡TF†_s2}‡f)„`    } woƒ  yppA
Jcgco‚Y†de=@
‡`L‡en‚/r‚tST  
 &     u‚0    ge‚htŠG &
…t1idnn}     […%%sƒleŠx    …yo‚xse9    ‚RŽ    thŠE †^hco‚e  ea‚0Ž6iŠG       &…t   1s‚QO7id‚le    ‚
\    n‚L        on‚'r>    N sƒ  reƒE
seb‚]  t1ŠL-…y82ŠN,…y93ŠP+…y:t‚A  va‚ial‚}bo=uca‚| e  0 
S A      †P'  „^ } P i2‡##'#    )„`# lbn8#
o~t7    k        D        vgde                                „CE '    „H 7tŠF
†^er‚|sƒ#ffŠsi‚|    oDypA    JcghŠG &    …t1lc‚I†    de
‚ \
eƒ  s   1 ‡Y‚   &†a tƒma‚0ep
p‚Gnb%dRei
f2% N    
 
& _ „&& %%'%    ) „G
%                } g5<i…D##I†=Hi!J‚_mƒ0 r‚ tŠJ†^on'          
 E     
 
 
     
 
 
 
 
 
 
 
                 …T
 
)                        † 
 
 
    1    vŠqpr3treŠK†Y                        sa4‚    c?‰n†&h!
p‚Ls0
+     
Q
3
E    
tPq0
‡   †WyO    
    td‚3e^    ‚    V    o    1mj  †V)„_"~s‚4tk‚_yƒzaƒ 
e‚}jkeƒ2ob‚?)&&&Žewt‚} k_f!n en‚H tƒ     yƒ2maƒ     stty#l.m|                 …_‚)*ac‚~…md 8Q
‡eippsGjˆ"†_uh5cde7e‘he‚bj‘0o‚E†  de‚IŽ%iƒ%re ‚ \ e_‚%ab    \TSYc‚hi‚
  
mgnB<ˆ    †^    =P*
 
" 
 
"      06 6   5 
     
‚=
=‚      6
!pF ‚!
* 
.K3 ?
    = 
 
 
ÿúBõéÝÑÄ·«Ÿ“†xj]PC6(ñãÖȺ­ “…wi[M?1# ù ë Ý Ï Á ´ § š  € r d V H ; -    õ ç Ù Ë ¾ ± ¤ – ‰ | o b U H ; . !   ú í à Ó Æ ¹ ¬ Ÿ ‘ „ w j ] P C 6 )   
õ
è
Û
Î
À
²
¥
—
ˆ
y
k
]
O
A
3
%
 
    ú    ë    Ü    Î    À    ²    ¤    –    ˆ    y    j    \    N    ?    0    "        öçÙÊ»­ž€qbSD5&    úëÜÍ¿±¢”…vgXI;,óäÖȺ«seWI;-òäÖǸª›Œ}oaRC4%ùëÝÏØÉ»­Ÿ‘‚teVG8) þð♊|m^PÓ͍À±£•‡yk]OA2#öç
BA `D‹W@ \ýÛm\ý"-\ý³Ÿ \ûr<\ûŸ\ûçÑ ]P?! ]Ôp ]<^] ‘ ZAã{î ZA{í ZAS{ì ZA‘tëZA؍êZA®ºéY,ôÞ¢Y É¡Y    F´ Y[Ÿ Y:žYë Yª5œ Yc=› Y(1š Yï/™Yi3p˜Y;3¡—_Œ0¸
£_Œ$µ ‹_Œ” ©_ŒWÅ_Œ‚]_Œü| _Œ~9 _Œ?5 _ŒðE _Œ­9 _Œf= _Œ+1 _Œæ; _Œ­/_ŒV: _Œ3:2 XüI XƒZ X÷n X 7 XNþ X /
I¦ PxFI¦
[ƒEI¦ð_DI¦b‚C I¦!5B I¦¹\AI¦I †@I¦ ·?HÚœ³> HÚÑY=HÚ@<HÚÑŠ; HÌÅ.2 HÌu21HÌ-Í0HÌÿþ/Fð t Fð ª Fð
á Fð
 Fð    O Fð† Fð½ Fðô Fð+
Fð`     Fð¢rFðԁ Fð { FðD{ FðƒtFðØ $Fð® Q C’2+Ê C’œ/É C’ *ÈC’¦¾Ç C’{ìÆA¬ ëCµA¬íK´A¬¢Û³A¬ ü²A¬ìI± A¬õ9°A¬¦C¯ A¬]=® A¬"1­A¬¢"•¬A¬t"Æ«:o„øs:otr :ocq:odp:oò”o-à³-àêL²-àÇr± Z, ã Z˜¶ â Zy­ á ZQ· à Zÿµ ß  Za Þ ZaÕ Ý ZòG Ü  Ui8 º U“ ¹ UçÖ ¸ TÈ‚  Tí9  T}d Týd TÏ•  SJ; ²  SÖh ± SNN ° S  ¯ Öù q ™ ÖùÕ/ ˜ Öù‹, — Öù>1 – Öùñ0 • Öùž6 ”ÖùNJ “Öù { ’ Öö" { Öö( zÖö¦ y Öö{C x ¸²—} à ¸²Ì}  ¸²} Á ¸²Jk À ¸²‰t ¿¸²ØG ¾¸²®t ½ /»îÖ
d /ȇa
c /»@
b /»Ñÿ
a -bc    % -b    $ -bŸ    # -b:    " -bÓ    ! -bl      -b     -bŸ     -b:     -bÕ     -b{
     -b     -b¹     -bb     -b
     -b§Ö     -b{     -Y®® -YG­ -Yଠ-Yy« -Yª -Y«© -YJ¨ -Yã§ -Y{¦ -Y¥ -Y¸¤ -YW£ -Yò¢ -YŽ¡ -Y*  -YÆŸ -Yjž -Y -Y§$œ -Y{S› )OÑDµ )O}6´ )O-ï³ )Oÿ ² † œ{ † ʁz † øy † "…x †
J†w †    r†v †¤|u †ʍt †ùƒs †#Šr †U€q †lp †Õ{o † {n †E{m †ƒtl †Ø Lk †® yj     ÆQ  sŠP  •ŽO  ¹ŠN 
ێM     ÿŠL     !ŽK I†J mŠI ŽH ¶†G á…F  …E A{D y{C ¸tB  ÁA ë î@  å¨e{  åÿz  压y  ]‹W`Dþí?`DŽ`> uRà uË{ u{ u;{ uyt uØD u®q f©Ã™ fvý˜ fD2— ex– eP¸• eÁƒ” e•!“ eRA’ e'o‘
dX#; ""GŸVŒ€€€€¿09¢1J 0jobœ‡x    kmaœˆ  l.m, Vƒ=acˆk™Pd›TA…‚gsGŠ A…Scjœ‡x    oˆ]˜  da›Z…Zedœ ‡~f›Z…Zoœ‡{pœ‡~rˆ\ ˜Jt¤)ieŸ2n›%x„Q    U‚F    
     s›(†"h leˆ\ ˜J\)s.¥?e=›?…‚]  t›Y…Z
manœ‡{  it›%†"maœod, V ƒ= plŸ2o?s L           {ulGˆ$g@… Snagœˆl›Y…Zm0™w†_    ƒ>    co/ Idlœ‡{p1ŸB 
+ I  ed›[…Zn?r K{            sœ‡{  fo<
ˆhR-E„Y'<i &K   
   gb›%…L U‚F  d=ˆ “5„]ƒiˆ\˜$sœˆis›'†"t›Z=…
‚cliœ‡~    na0 Ve›[…Zse›RC…  ‚i t-š%C…T‚t13     M    24 V35 V46 V57 V68 V79 V8: V9; Vc?£N   eŸ2    q2 Vrˆ\ ˜J  o.b›$†"ar›%…LT
 
‚Fceœˆde?m 9
‚           
u1™v…LV >+
 
 
I!ffœ!‡~wœˆli›%…LU‚Flˆ\ ˜Jmmœp?s L
 
 
 
 
 
 
 
 
 
 
{nc/ Ie?r K           {lœ‡~n0 Vs›RC…  ‚i tˆ\ ˜J
 
ol›%…LU‚Frkœˆ

mGˆ$g@… Sy>
Š ‘…Z            J        se<
Š E…K   i>
Š ‘…ZJxi=ˆ“4„\!ƒpal¤)r›(3…B‚Eu›X…ZclŸ2daŠW‘…Zlc›W9…‚_    eŸ2on?s L           {s>
Š ‘…ZJreœ‡~o1™vo„]V
> + I qty2 Vua?£Nr.cˆ\˜Ldn›&…LU ‚Fs›%†" ep>
Š ‘…ZJsœ‡~    kmœˆ  muGˆ$g@… Socœˆd1™v…LV > +             I!lˆ\ ˜J  s.ˆ\˜Ltp›W…Zs›(3…B
‚Eveˆ\˜Li<    Š }=…    I    s.bˆ\˜Lƒ_b<
Š …Z   K    d›$†" i¥% m, V ƒ= sˆ\˜ L tœƒ! „_ av rƒby sƒca-š%=…  N‚ o?£Nea<
f‡0hR-?ƒ!><<- K p›X…Zq?£Nr<    ˆh}=„W < 
 
         I    
    
tœhe›'†"ic<
ˆ$hR-…Zi "K  g›Y…Znœˆ         t>
Š ‘…ZJksœƒ!„_li›(†"scœ‡~ iœˆ
sœ‡~ ta-š=ƒy N    ‚ub›%†"t10< V_p¥@s- Vai=ˆ ’v?„[
 
= ‚]   
 
n s ƒ  r›Wƒ\~sœƒ! „_ t-%
 
$ $-*
 H>
B MG"
 
 
 
 
 
 
 
 
 
 
$ $6* $HBM
 
$= , 0 
I  8 
!
>*$ $
5G
  4
  
u 
9 Ÿ‘  / î  >E Ì
…    Ë    ­Mãm >ÌZÕH=Úlô‘‘‘———
yCC YWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService~›"”t"»
 
"1_ XWIDESEAWCS_BasicInfoService.BoxingDetailService.SaveToolingBoardNoSaveToolingBoardNo;„5!˜    SaveToolingBoardNo(ToolingBoardSubmitDto)
‚7`¡J}C’WIDESEAWCS_DTO.BasicInfo.ToolingBoardSubmitDto.PartsListPartsList×QF    P 2+u¡I3C’WIDESEAWCS_DTO.BasicInfo.ToolingBoardSubmitDto.FinishedProductCodeFinishedProductCodeV<ª¾ œ/k¡H)C’WIDESEAWCS_DTO.BasicInfo.ToolingBoardSubmitDto.ToolingBoardNoToolingBoardNoÙ=.=  *`¡Gi7C’WIDESEAWCS_DTO.BasicInfo.ToolingBoardSubmitDtoToolingBoardSubmitDto³Î–¦¾M¡F==C’WIDESEAWCS_DTO.BasicInfoWIDESEAWCS_DTO.BasicInfo…ŸÈ{ì
7¡5;{A¬WIDESEAWCS_BasicInfoService.ScanStationService.UpdatePartScannedStatusUpdatePartScannedStatus D!!eÉ ëC    UpdatePartScannedStatus(UpdatePartScannedStatusRequest)    ¡415A¬WIDESEAWCS_BasicInfoService.ScanStationService.GetLeftInitialDataGetLeftInitialData‰Z%íK    GetLeftInitialData()¡3    +/A¬WIDESEAWCS_BasicInfoService.ScanStationService.GetSignalStatesGetSignalStates
޼צ¢Û    GetSignalStates()o¡2{)A¬WIDESEAWCS_BasicInfoService.ScanStationService.PausePLCPausePLC C¯  6Æ ü    PausePLC(bool)o¡1{)A¬WIDESEAWCS_BasicInfoService.ScanStationService.StartPLCStartPLC<¦%ìI    StartPLC(bool)_¡0!A¬WIDESEAWCS_BasicInfoService.ScanStationService.RepositoryRepository
#
õ9I¡/1;A¬WIDESEAWCS_BasicInfoService.ScanStationService.ScanStationServiceScanStationService­sv¦C    ScanStationService(IRepository<Dt_ScanStation>, IFormulaService, IFormulaDetailService)s¡.7A¬WIDESEAWCS_BasicInfoService.ScanStationService._formulaDetailService_formulaDetailService„]=g¡-    +A¬WIDESEAWCS_BasicInfoService.ScanStationService._formulaService_formulaServiceC"1]¡,i1A¬WIDESEAWCS_BasicInfoService.ScanStationServiceScanStationService¯" ¢"•T¡+CCA¬WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService~›"Ÿt"Æ
C sCCk:oWIDESEAWCS_Server.Controllers.BoxingInfo.BoxingDetailController.GetProductAndPartsByBoardNoGetProductAndPartsByBoardNoç+Q„ø    GetProductAndPartsByBoardNo([FromQuery] string)6 r11u:oWIDESEAWCS_Server.Controllers.BoxingInfo.BoxingDetailController.SaveToolingBoardNoSaveToolingBoardNoÏ#St    SaveToolingBoardNo([FromBody] ToolingBoardSubmitDto)5 q99e:oWIDESEAWCS_Server.Controllers.BoxingInfo.BoxingDetailController.BoxingDetailControllerBoxingDetailController
Xc    BoxingDetailController(IBoxingDetailService)\Ÿ3[1-àWIDESEAWCS_Tasks.TcpClientExample.StartStart-QÞ    Start(string, int)NŸ2O--àWIDESEAWCS_Tasks.TcpClientExampleTcpClientExample÷ )êL>Ÿ1---àWIDESEAWCS_TasksWIDESEAWCS_TasksÑãVÇr
Q›c7; ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.UpdatePartScannedStatusUpdatePartScannedStatusZaÌa,    UpdatePartScannedStatus([FromBody] UpdatePartScannedStatusRequest)›b-15 ZWIDESEAWCS_Server.Controllers.BasicInfo.ScanStationController.GetLeftInitialDataGetLeftInitialData4Zò>˜¶    GetLeftInitialData()¶-'+/ ZWIDESEAWCS_Server.Contv p 9:oWIDESEAWCS_Server.Controllers.BoxingInfo.BoxingDetailControllerBoxingDetailController-1§ø‹dn o]]:oWIDESEAWCS_Server.Controllers.BoxingInfoWIDESEAWCS_Server.Controllers.BoxingInfoü(&`ò”
J%CS:mWIDESEAWCS_BasicInfoService.IBoxingDetailService.GetProductAndPartsByBoardNoGetProductAndPartsByBoardNoç üI    GetProductAndPartsByBoardNo(string)Ÿ1_:mWIDESEAWCS_BasicInfoService.IBoxingDetailService.SaveToolingBoardNoSaveToolingBoardNoqƒZ    SaveToolingBoardNo(ToolingBoardSubmitDto) æï — C ö — 8 Ì \
ñ
†
    °    EÚo™’;à*½Š3ÛM©ã›  ' oœt‚Sfo›S@s‚SprœƒHscœƒHeˆ\” t{#/QHÍWIDESEAWCS_Server.Controllers.BasicI#Ü/HÚWIDESEAWCS_Server.Controllers.BasicInfo.FormulaControllerFormulaController /~Æ’@l¢;[[HÚWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers æk +XWIDESEAWCS_BasicInfoService.BoxingDetailService._formulaService_formulaServiceI(1 æÛ/3I¦WIDESEAWCS_BasicInfoService.FormulaService.getEndProductListgetEndProductList
ìZ j ‡A Px    getEndProductList()r¢Ew!9I¦WIDESEAWCS_BasicInfoService.FormulaService.UpdateDataUpdateData
~
 
¥9
[ƒ    UpdateData(Dt_Formula) æuw!7I¦WIDESEAWCS_BasicInfoService.FormulaService.UpdateDataUpdateData
<ð_    UpdateData(SaveModel) ækq1I¦WIDESEAWCS_BasicInfoService.FormulaService.AddDataAddData…«9b‚    AddData(SaveModel)[¢Bw!I¦WIDESEAWCS_BasicInfoService.FormulaService.RepositoryRepository@
K
!5
¢A)[I¦WIDESEAWCS_BasicInfoService.FormulaService.FormulaServiceFormulaServiceÀ     ¹\    FormulaService(IRepository<Dt_Formula>)U¢@a)I¦WIDESEAWCS_BasicInfoService.FormulaServiceFormulaServiceV® !I †T¢?CCI¦WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService%B  ·
¢>#/3HÚWIDESEAWCS_Server.Controllers.BasicInfo.FormulaController.getEndProductListgetEndProductList8Zõ=œ³    getEndProductList()¢=#/QHÚWIDESEAWCS_Server.Controllers.BasicInfo.FormulaController.FormulaControllerFormulaControllerØÑY    FormulaController(IFormulaService)j¢</HÚWIDESEAWCS_Server.Controllers.BasicInfo.FormulaControllerFormulaController /~Æ’@l¢;[[HÚWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfoÛ'WÑŠ
h¢}/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent9StationComponent9 j6
  ªh¢}/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent8StationComponent8
¡6 A S
áh¢}/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent7StationComponent7    Ø6
x
Š
h¢}/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent6StationComponent6    6    ¯    Á     Oh¢ }/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent5StationComponent5F6æø †h¢ }/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent4StationComponent4}6/ ½h¢ }/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent3StationComponent3´6Tf ôh¢
}/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent2StationComponent2ë6‹ +h¢    }/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent1StationComponent1 6ÀÒ `m¢3FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponentQtyStationComponentQtya7ó ¢ri¢}/FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationEndProductStationEndProduct“76H ԁ\¢q#FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationNameStationNameË7n z  {\¢q#FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationCodeStationCode7¦ ² D{J¢_FðWIDESEAWCS_Model.Models.Dt_ScanStation.IdIdD5çê ƒtQ¢Y)FðWIDESEAWCS_Model.Models.Dt_ScanStationDt_ScanStation9 ÃØ $L¢;;FðWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸Ñ .® Q
#CSE‘WID~¢2/3HÌWIDESEAWCS_BasicInfoService.IFormulaService.getEndProductListgetEndProductList³ßÅ.    getEndProductList()\¢1y!HÌWIDESEAWCS_BasicInfoService.IFormulaService.RepositoryRepository”
Ÿu2X¢0c+HÌWIDESEAWCS_BasicInfoService.IFormulaServiceIFormulaService>j-ÍT¢/CCHÌWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService    &×ÿþ
k¢1FðWIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent10StationComponent10 37 Õ è t ” ô ¶±+ = Ø s
²
    h _ž5ý†!½÷E¡ñ ¥‘>Ûv•¥&¯K… ”—7YWIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualKÁ"ä[    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)a¥!YWIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository)
4
:r¥3‚YWIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDb¥n}#ZAWIDESEAWCS_Model.Models.Dt_ProcessInfoDetail.ProductNameProductName¢7E Q ã{b¥m}#ZAWIDESEAWCS_Model.Models.Dt_ProcessInfoDetail.ProductCodeProductCodeÚ7} ‰ {`¥l{!ZAWIDESEAWCS_Model.Models.Dt_ProcessInfoDetail.PalletCodePalletCode8¶
Á S{P¥kkZAWIDESEAWCS_Model.Models.Dt_ProcessInfoDetail.IdIdR5õø ‘t]¥je5ZAWIDESEAWCS_Model.Models.Dt_ProcessInfoDetailDt_ProcessInfoDetail G؍,¥"#CSYWIDESEAWCS_BasicInfoService.BoxingDetailService.GetProductAndPartsByBoardNoGetProductAndPartsByBoardNo,\Ž--FŒ,ôÞ    GetProductAndPartsByBoardNo(string) ¥!1_YWIDESEAWCS_BasicInfoService.BoxingDetailService.SaveToolingBoardNoSaveToolingBoardNo ± Ý&& É    SaveToolingBoardNo(ToolingBoardSubmitDto).¥ 7oYWIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqual½    T    ¬N    F´    IsComponentCodesEqual(List<string>, List<string>)B¥7YWIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualKÁ"ä[    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)a¥!YWIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository)
4
:r¥3‚YWIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailServiceò#Öë    BoxingDetailService(IRepository<Dt_BoxingDetail>, IFormulaService, IBoxingService, IFormulaDetailService, IUnitOfWorkManage)l¥/YWIDESEAWCS_BasicInfoService.BoxingDetailService._unitOfWorkManage_unitOfWorkManageͪ5t¥7YWIDESEAWCS_BasicInfoService.BoxingDetailService._formulaDetailService_formulaDetailServiceŠc=h¥ +YWIDESEAWCS_BasicInfoService.BoxingDetailService._formulaService_formulaServiceI(1'¤%CSXWIDESEAWCS_BasicInfoService.IBoxingDetailService.GetProductAndPartsByBoardNoGetProductAndPartsByBoardNoç üI    GetProductAndPartsByBoardNo(string)¤1_XWIDESEAWCS_BasicInfoService.IBoxingDetailService.SaveToolingBoardNoSaveToolingBoardNoqƒZ    SaveToolingBoardNo(ToolingBoardSubmitDto)=¤ 7XWIDESEAWCS_BasicInfoService.IBoxingDetailService.IsComponentCodesEqualIsComponentCodesEqualã
÷n    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)b¤ !XWIDESEAWCS_BasicInfoService.IBoxingDetailService.RepositoryRepositoryÄ
Ï 7b¤ m5XWIDESEAWCS_BasicInfoService.IBoxingDetailServiceIBoxingDetailService_•·NþT¤
CCXWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService*G /
&    )L¥i;;ZAWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models¸Ñ—®º
h¢Cq1I¦WIDESEAWCS_BasicInfoService.FormulaService.AddDataAddData…«9b‚    AddData(SaveModel)T¥CCYWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceEb3z;3¡
r¢Dw!7I¦WIDESEAWCS_BasicInfoService.FormulaService.UpdateDataUpdateData
<ð_    UpdateData(SaveModel)¢F/3I¦WIDESEAWCS_BasicInfoService.FormulaService.getEndProductListgetEndProductList
ìZ j ‡A Px    getEndProductList()r¢Ew!9I¦WIDESEAWCS_BasicInfoService.FormulaService.UpdateDataUpdateData
~
 
¥9
[ƒ    UpdateData(Dt_Formula)/f¥    )YWIDESEAWCS_BasicInfoService.BoxingDetailService._boxingService_boxingServiceï/_¥k3YWIDESEAWCS_BasicInfoService.BoxingDetailServiceBoxingDetailServicevâ2÷i3p qxð†øq ï g ß W Ï G
¿
8    ³    *–†þ‹–êÜywLùùÂZ‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaController.cs܄íDôUü2yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768319208.log܄ùRqÚªuE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs܄`A…‡sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\ToolingBoardSubmitDto.cs܄WÖVxq…ƒWUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.json܄Qro¯…ƒ,sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.cs܄P«U„ýcƒ­ywE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.cs܁~—؁    ƒ­v‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\UpdatePartScannedStatusRequest.cs܁cw‘ƒ£byE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767953292.log܁¶^„ð)yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768297105.log܄G¤Iä/„âyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768226619.log܄-LD}:wmEE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cs܄ùFbo„Û`QE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\SocketClient.cs܃ƒÇRÚö„¶3yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767978825.log܃‰1„eÀ„¨jyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767976705.log܁HAʼ„›CyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767974242.log܁CQ*鿁„–Z‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ScanStationController.cs܁4"buÀ„–U{E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.cs܁1ÃÞ遄–TsE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.cs܆Œþ…}“„–SwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs܁1ˆÿ›„‹xyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767966266.log܁=”ž?yƒý_yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767964513.log܁+U7сƒî]yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767962744.log܁&îYݺƒß\yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767960975.log܁"Ïò[eƒÑ_yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767959389.log܁±‰å끃āyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767957598.log܁–鞁ƒµyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767955829.log܁Ô~Ï8yoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.cƒ˜SyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767893166.log܁ Îá|YƒŠyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1767891186.log܀€ÐCNi 
ž 6
ž߀€€¿2?0.atbaˆj'†oˆ\co‚?    …h '†fiƒhoƒmo|                 …_‚)*pl‘qu‚?"sy& w" "Zta1sck42scl43scm44scn4_acGba  2    ‰c ) „` !   o}‡‰ca‚QO7o   y deMiPkDt&    fi!o‰,†rht‚A  idx+sO        loUlMmaƒ,eW#bLoq                                 …_ ‚) * ne ple7rŠkrob%    SUsc-e‚D  
   '   …E    ' † yƒ            tad ej/W]unƒ  sm5S^wc‚?          eƒablS
  !cc‚A  e‚~h;‚O7oˆkpƒt'#    d?7p    dd‚2XC†ze 8    Q ‡ei‚0mƒ0
ge‚0o  g‚idl   1  9…S@    /  &†a ldoi‚}le‚@
„R‚Sp‘#s‘&u+ -    ‡?          x‘)y‘*mes  
 
 
          U…
‚(
+
…v
7
naƒ  cŠH†WdŠr†+gŠx…ys-‡t䀀€“<T0_bo¦5fo¦7pr¦9sc¦<ta¦3un¦;ade¦8ge¦;il¦6ll¦=na¦;d¦@s¦<se¦7k¦3ti¦<wc¦3box¦5can¦<es¦9jo¦4
od¦=s_¦3ts¦But¦?des¦3t¦6le¦@eaw¦3ct¦Bu¦?de¦Bof¦Cn¦@pr¦Arv¦5sc¦@e¦3s¦9ta¦6c¦=e¦Bxe¦?ffl¦Cli¦Cor¦7s¦9wo¦;gde¦6se¦5han¦@ice¦5de¦3li¦:s¦6ne¦@f¦9g¦5on¦<to¦;job¦4
kma¦;lad¦8s¦7cj¦4
ed¦Bo¦@p¦At¦=in¦:le¦=se¦6man¦;ul¦7nag¦;dl¦@es¦@fo¦9gd¦6s¦5it¦;li¦@se¦<t¦<oce¦9de¦=ff¦Cw¦;nl¦@s¦<rk¦;m¦7se¦9xi¦5pal¦=lc¦4
re¦Ao¦9res¦Akm¦;mu¦7‘€€€†]0.bo¨#co¨#_se¨#awc¨#box¨#con¨#s_¨#des¨#eaw¨#r.¨#s¨#v¨#se¨#gco¨$in¨#ide¨#nf¨#g¨#ler¨#le¨#nfo¨#gc¨$i¨#tr¨#oll¨#nt¨#xi¨#€€€€‚$~0box¨<con¨<gco¨<ing¨<ler¨<le¨<ngc¨<tr¨<
oll¨< nt¨<    xi¨<rol¨< tro¨< xin¨<                                    ‰BŒ€€€€“›R=… N
‚0tco?¡
‚D   "pŸ2dt›%†"ecœ ‡~
dŠW—ln¢2 p›[…Zs›Y…Zxœƒ
ia›Z…Z n›Z…Zo-šC…        T ‚
le›Z…Zi¢2 na›'Šo.›$†"fœˆo›%…LU‚Fr>
Š ‘…ZJpl›W…Zr sƒqt2 Vroˆ\ ˜J  sb sƒc›[E… ‚i i›Y…Zl›(†"us›[…Zual?£Nbm›%†"ct1™v…L    V>+   I        !laGˆ$g@… SniœˆpdŠW‘…Zse›X…Zteœ‡~verˆ\˜Lt rƒic<    Š }=…    I    wcs<
f‡0hR-?ƒ!    >    <        <    -             K                         id<
f‡0hR-?ƒ!><<- K orœˆ        xamŸ2 ecœ‡~in=ˆ“4„\"ƒybo sƒM 
 
 
 
a    %
 
 +> HG     0 !!L-• p Îdg° Ò Š
ŸW”€€€€¿2?0.atbaˆj'†oˆ\co‚?    …h '†fiƒhoƒmo|                 …_‚)*pl‘qu‚?"sy& w" "Zta1sck42scl43scm44scn4_acGba  2    ‰c ) „` !   o}‡‰ca‚QO7o   y deMiPkDt&    fi!o‰,†rht‚A  idx+sO        loUlMmaƒ,eW#bLoq                                 …_ ‚) * ne ple7rŠkrob%    SUsc-e‚D  
   '   …E    ' † yƒ            tad ej/W]unƒ  sm5S^wc‚?          eƒablS
  !cc‚A  e‚~h;‚O7oˆkpƒt'#    d?7p    dd‚2XC†ze 8    Q ‡ei‚0mƒ0
ge‚0o  g‚idl   1  9…S@    /  &†a ldoi‚}le‚@
„R‚Sp‘#s‘&u+ -    ‡?          x‘)y‘*mes  
 
 
          U…
‚(
+
…v
7
naƒ  cŠH†WdŠr†+gŠx…ys-‡t‡1 
tj
    .    9            \                pp4‚    I 
"sprar
 dŠreD # iƒ# kT  5rƒ4
tM    m%"""JN    / y7   k    D    seG    Š †_    i2ˆ$!!'!    )„`! kAK stt‚1yƒta:‚      †z        „]            c‚Leo@(†|i- @  †‡1     
 
 
 
 
1
 
 
 
t  u‚    ud‚3s‘ tb \?
Q
 
2
 
‡†5
ve;$    z Nwc                                „CE '    „H 7bas  2    ˆ$  '      ) „`     egojkƒ2leS
  !nae7ooI/u$x5<‡D  I‡seYoƒqZty‚utyrƒ1    cac;‚O7n-‡t‡1 
1t‚| o                1                cetM  dbe7e1ŠK†^2ŠM†^3ŠO†^i‚@n‘p‚C    sO M  $     ‡„Ht‚~he;‚O7ieg    \idWn2ˆ$$$'$    )„`$ jo‘0keƒ
libna[ o8$od? A      ! ,…    ‚     *    l‚E    m   A                                            ˆqC†+ n9& !          
 
 
 
 
 
 …V             %  †  prƒreŠH -…x5 is_
 
 
 
 
 
 
 
 
 
 
 
 
    
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
    
 
    
 
 
    
 
    
 
 
 
 
 
 
 
 
 
    
 
 
 
 
 
 
 
 
 
 
 
 
    
 
 
 
 
 
=<)
    *(A ,3#
6=
! O $.
 
8:6
&
a G‚8 8    9 0 
] 6
+GI$ ß jÆ j ߂mЀ€€€…^A0.bo¨ co¨ _se¨ awc¨ box¨ con¨ s_¨ des¨ eaw¨ r.¨ s¨ v¨ se¨ gco¨!in¨ ide¨ nf¨ g¨ ler¨ le¨ nfo¨ gc¨!i¨ tr¨ oll¨ nt¨ xi¨ r.c¨ ol¨ s.¨ ve¨ s.b¨ _s¨ ea¨ r¨ tro¨ ver¨ wcs¨ id¨ xin¨ 
 
 
        
            
瀀€‡B³0.bo¨ co¨ _se¨  awc¨ box¨  con¨ s_¨ 
des¨ eaw¨ r.¨ s¨ v¨ se¨ gco¨!in¨ %ide¨ nf¨ &g¨ #ler¨ le¨ nfo¨ 'gc¨!i¨ $tr¨ oll¨ nt¨ xi¨ !r.c¨ ol¨ s.¨ ve¨ s.b¨ _s¨  ea¨ r¨  tro¨ ver¨ wcs¨     id¨ xin¨ "
 
 
        
 
 
    
 
 
 
    
‚2̀€€€„h#¥n0ula¤ƒni¤„te¤„verˆ_<‚ic›3ˆ] \r  wcsˆ_’Tˆ]*                    r        idˆ_’Tˆ]*ror¤„    xec¤„inˆ_›1ƒ "po›7ŠO     O+*  â Þ V Ñ
×
O    È    F¶6xƒ û s°# q˜ \ â
…ÀD‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingController.cs܈äÖ)ëñ…¹}‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\ProcessInfoDetailController.cs܆Žuþk…¹{‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoDetailService.cs܆Žk¯8f…ºE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoDetailService.cs܆¯X"˜…´A‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfoDetail.cs܆Œ;º…²uE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs܅ȅå|…“&kE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cs܄ó9°*ځ …‘Z‚    E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\FormulaController.cs܄íDôUü~…‘LoE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.cs܄mcT”…pwE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs܄hՂYg…yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768319208.log܄ùRqځ…‡sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\BasicInfo\ToolingBoardSubmitDto.cs܄WÖVxq…ºUE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.json܆¸Åú콁…ƒ,sE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.cs܄P«U„ýcyE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768308420.log܄`”4„ôo‚E:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\BasicInfo\BoxingDetailController.cs܄7¬ Ä…°yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.cs܅Á3}˜…­yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768404674.log܆—ÇóÙс…ž~yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768386571.log܅'Ÿœ7i…¿ EE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cs܆—ýP;…—yE:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1768384729.log܄ýš8ež "oJêGåc«@ôso8Ì
¡¿‚2Ö„& Ì f  ¶ À \
ã
m    ô    x    œœM¦KCy\ýWIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoDetailController.ProcessInfoDetailControllerProcessInfoDetailControllerâ:Ûm    ProcessInfoDetailController(IProcessInfoDetailService)h¦!\ûWIDESEAWCS_IBasicInfoService.IProcessInfoDetailService.RepositoryRepository›
¦r<l¦y?\ûWIDESEAWCS_IBasicInfoService.IProcessInfoDetailServiceIProcessInfoDetailService'gNŸV¦EE\ûWIDESEAWCS_IBasicInfoServiceWIDESEAWCS_IBasicInfoServiceñ©çÑ
~¦C\ýWIDESEAWCS_Server.Controllers.BasicInfo.ProcessInfoDetailControllerProcessInfoDetailControllerí/jÐ"-l¦[[\ýWIDESEAWCS_Server.Controllers.BasicInfoWIDESEAWCS_Server.Controllers.BasicInfo½'æl³Ÿ
¦!A TWIDESEAWCS_BasicInfoService.ProcessInfoService.ExportDataExportData2Œâ
5È‚    ExportData(Dt_ProcessInfo)_¦! TWIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepository
 
í9¦1k TWIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoService„Õ }d    ProcessInfoService(IRepository<Dt_ProcessInfo>)]¦i1 TWIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoService
rïýdT¦CC TWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceÙönÏ•
f¦! !]WIDESEAWCS_BasicInfoService.ProcessInfoDetailService.RepositoryRepositoryy
P?>¦ '=]WIDESEAWCS_BasicInfoService.ProcessInfoDetailService.ProcessInfoDetailServiceProcessInfoDetailServiceÛ8 Ôp    ProcessInfoDetailService(IRepository<Dt_ProcessInfoDetail>)i¦u=]WIDESEAWCS_BasicInfoService.ProcessInfoDetailServiceProcessInfoDetailServiceIÉÑ<^T¦CC]WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoService3j ‘
r}#ZAWIDESEAWCS_Model.Models.Dt_ProcessInfoDetail.ProductNameProductName¢7E Q ã{b¥m}#¨@!-M`DWIDESEAWCS_Server.Controllers.BoxingInfo.BoxingController.BoxingControllerBoxingController’Ô‹W    BoxingController(IBoxingService)h¨?-`DWIDESEAWCS_Server.Controllers.BoxingInfo.BoxingControllerBoxingControllerÉ/;€kþín¨>]]`DWIDESEAWCS_Server.Controllers.BoxingInfoWIDESEAWCS_Server.Controllers.BoxingInfo˜(Â,Ž`
y¨_/I_ŒWIDESEAWCS_Tasks.PLCJob.HandleOfflineScanHandleOfflineScan0Lb0Å0ô
g0¸
£    HandleOfflineScan(OtherDevice)v¨]-G_ŒWIDESEAWCS_Tasks.PLCJob.HandleDetectScanHandleDetectScan$Ib$Â$ð P$µ ‹    HandleDetectScan(OtherDevice)s¨[+E_ŒWIDESEAWCS_Tasks.PLCJob.HandlePressScanHandlePressScan(b¡Î o” ©    HandlePressScan(OtherDevice)v¨]-G_ŒWIDESEAWCS_Tasks.PLCJob.HandleOnlineScanHandleOnlineScanëbd’ŠWÅ    HandleOnlineScan(OtherDevice)a¨KG_ŒWIDESEAWCS_Tasks.PLCJob.ExecuteExecute޽"‚]    Execute(IJobExecutionContext)r¨I‚e_ŒWIDESEAWCS_Tasks.PLCJob.PLCJobPLCJobÁ/¸Àü|    PLCJob(IBoxingService, IBoxingDetailService, IFormulaService, IFormulaDetailService, IProcessInfoService, IProcessInfoDetailService, IUnitOfWorkManage, IScanStationService)W¨c3_ŒWIDESEAWCS_Tasks.PLCJob._scanStationService_scanStationService£~9S¨_/_ŒWIDESEAWCS_Tasks.PLCJob._unitOfWorkManage_unitOfWorkManageb?5c¨o?_ŒWIDESEAWCS_Tasks.PLCJob._processDetailInfoService_processDetailInfoServiceðEW¨c3_ŒWIDESEAWCS_Tasks.PLCJob._processInfoService_processInfoServiceÒ­9[¨g7_ŒWIDESEAWCS_Tasks.PLCJob._formulaDetailService_formulaDetailServicef=O¨[+_ŒWIDESEAWCS_Tasks.PLCJob._formulaService_formulaServiceL+1Y¨e5_ŒWIDESEAWCS_Tasks.PLCJob._boxingDetailService_boxingDetailService æ;M¨Y)_ŒWIDESEAWCS_Tasks.PLCJob._boxingService_boxingServiceÍ­/:¨;_ŒWIDESEAWCS_Tasks.PLCJobPLCJob†¢9ÀV: >¨--_ŒWIDESEAWCS_TasksWIDESEAWCS_Tasks=O:3:2
e›!-M`:WIDESEAWCS_Server.Controllers.BoxingInfo.BoxingController.BoxingControllerBoxingController’Ô‹W    BoxingController(IBoxingService)  ]ªL × ? ± ̀€€€‚"}0and¦Bcan¦Bts¦B det¦Ble¦Bect¦B de¦Bte¦B    han¦Bled¦Bndl¦Bsca¦Btec¦B
sc¦B                                     Ȁ€€€‚u0and¦Acan¦Adle¦Aepr¦Ass¦A
han¦Alep¦Andl¦Apre¦Ares¦A    sca¦A sc¦A s¦A                                         Ā€€€‚$~0and¦@can¦@dle¦@eon¦@sc¦@ han¦@ine¦@ leo¦@in¦@
ndl¦@es¦@ li¦@    onl¦@sca¦@                                    8À€€€€v00cut¦?ecu¦?xe¦?ute¦?xec¦?            /¼€€€€d(0cjo¦>job¦>lcj¦>plc¦>            W¸€€€€2K0all¦=cod¦=etc¦=let¦=le¦=ode¦=    pal¦=tco¦=                        +´€€€€‚Z–0_sc¦<ans¦<ti¦<    can¦<erv¦<ice¦<on¦< nse¦< t¦<ons¦< rvi¦<sca¦<er¦<ta¦<tat¦<io¦<
vic¦<                                        °€€€€‚:ˆ0_un¦;age¦;na¦;fwo¦;ito¦;kma¦; man¦; nag¦;it¦;ofw¦;rk¦;
rkm¦; tof¦;uni¦;wor¦;                                                 ""ŸV”€€€€¿0V
ˆ
E
 
 
 
'
    
 
 
 
„H
 
 

 
 
7
0css‚?  t‘/
tcˆ‚(+hŠG†+   1 i'        
 
d# 
 
D
 
    
‡†Y      lŠE†^ nˆ‚(+po sp  wŠF†^ urX    }4sƒ thvagdarŠrt:5@ †z„]uƒ
bne7sYt‚daq@YR†zdƒ\†zr‚2wƒel`                  +Z„Z‚)*pM9r^ +s                                    „CE '    „H 7t         1    
9  4…S@        /&†>    v‚@xic7gDfpAJcm‚0nŠJ†^rŠK†Ys‚L‡{   †Wt‚3miƒ0 on‘wŠH†^ pr1 ree M     o‚k seƒt_}†k‚)*hŠF †^ipo&    uc1†j‚''†4
 
 
lƒweƒe_i‚%ad‚0lo/rfub
\T    S        Y        w                                „CE '    „H 7bsƒca;o‚h        t‚ˆ-†
 
 
 
 
 
5      uh daƒ[†|i7‚Nsƒtpei^‚Vm‚_n#    pf ‚ ] xi fiƒ gioid‚
  gŠG
   &…t1n‚@t^‚Vjw‚}
l.|                 …_‚)*apm`‚Zs|                 …_‚)*maT  5e‚_ggsO ‚.     tanajZ
 
 
        9\d1    @>gŠE
†^oBet?
                                      # ^        4                †P
Cu 
* 
_
1    G
G     
CouŠI †^paM!    ef ‚ \ l‚~o    1‚} †g)„_"~r‚C
t‚ qu?3 ‡.r.‚?    …E '†_x+aƒ0c‚k
 
eƒio!e`l‚m0* Q3,nsk    p0yrjsm    R    
 K… '†tgCC Hv        0
 
  lf             
 
            … '    '
 
„^} P
 yƒ$s.ƒAce     
                              „@E '    „H 7;$ 
 
 4
 ]‚ L Y )$   /    7
?
 5
< ;4O
s| "-R
7 K‚H