1
dengjunjie
2025-12-29 86f5db51a5fd895dcae671d01b28cd0d4948af0e
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
SQLite format 3@   A  .fê ø¸èÇ–& „
ý
‡Ý\Æ>ºÒ¸K%%[tablesqlite_stat1sqlite_stat13CREATE 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ìûöìñ ÷ ƒ   
ž
,    £    ƒøuâI¸@ÂF»?´8ÂtkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlzwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvzwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs|{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csvoF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsv{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.csp cF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.csx sF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.css iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.csy
uF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csy    uF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.csrgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.csiUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsonpcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jsiUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.csT+F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_P`8 ü âw âi Bf”YÜa\[ ñ    ²    &”
s ÿ Œ
«
:ÒÑŠø`Ð×{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.cs tkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlzwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvzwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs|{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csvoF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsv{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.cspcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs yuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs
yuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    rgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacProperti‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_MenuController.csO ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvC{‚    F:\gsx‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\S‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\WIDESEAWCS_ISystemServices.csprojk òÖÖå Documentè Symbol    •Documentü âw âi Bf”YÜa\[ ñ    ²    &”
s ÿ Œ
«
:ÒÑŠø`Ð×{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.cs tkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlzwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvzwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs|{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csvoF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsv{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.cspcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs yuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs
yuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    rgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacProperti‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_MenuController.csO ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvC{‚    F:\gsx‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\S‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\WIDESEAWCS_ISystemServices.csprojk¨@ûöñêäÞØÒÌÆÀº´®¨¿Àlo¼^-Ø‚&Ôƒ/Ý—R¾zB)UWIDESEAWCS_DTO.System.ActionDTO.TextText %  F(YWIDESEAWCS_DTO.System.ActionDTO.MenuIdMenuIdõü êJ']WIDESEAWCS_DTO.System.ActionDTO.ActionIdActionIdËÔ À!C&KWIDESEAWCS_DTO.System.ActionDTOActionDTO¨    ¶¬›ÇD%77WIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System•Ïuï
P$kaWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.InboundInboundU3­‘)R#maWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.OutboundOutboundä3< *O"[%aWIDESEAWCS_Common.TaskEnum.TaskTypeEnumTaskTypeEnumÉ Úç½P!AAaWIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnumœ· ’2
Z w#`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_FinishTask_FinishY5µ —0Tq`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_NewTask_Newæ5@$*S_)`WIDESEAWCS_Common.TaskEnum.TaskStatusEnumTaskStatusEnumÉÜò½PAA`WIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnumœ·’?
1;    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.BoolIndexAttributeBoolIndexAttribute
1&T    BoolIndexAttribute(int)Tw    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.IndexIndexçí Ü\k1    WIDESEAWCS_Common.Attributes.BoolIndexAttributeBoolIndexAttribute¯ҋ¢»REE    WIDESEAWCS_Common.AttributesWIDESEAWCS_Common.AttributesœÃuê
]!9WIDESEAWCS_BasicInfoService.ScanStationService.RepositoryRepository
"
ô91k9WIDESEAWCS_BasicInfoService.ScanStationService.ScanStationServiceScanStationServiceß ˆb    ScanStationService(IRepository<Dt_ScanStation>)[i19WIDESEAWCS_BasicInfoService.ScanStationServiceScanStationService~µ
)RCC9WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè1ÞW
]!4WIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepository
"
ô91k4WIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoServiceß ˆb    ProcessInfoService(IRepository<Dt_ProcessInfo>)[i14WIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoService~µ
)RCC4WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè1ÞW
Yw!WIDESEAWCS_BasicInfoService.FormulaService.RepositoryRepositoryû
 
Ü5)[WIDESEAWCS_BasicInfoService.FormulaService.FormulaServiceFormulaServiceÇ xZ    FormulaService(IRepository<Dt_Formula>)Sa)WIDESEAWCS_BasicInfoService.FormulaServiceFormulaServicen©
 R CCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceèÞ;
` !WIDESEAWCS_BasicInfoService.FormulaDetailService.RepositoryRepository%
0
;' 5sWIDESEAWCS_BasicInfoService.FormulaDetailService.FormulaDetailServiceFormulaDetailService—ë f    FormulaDetailService(IRepository<Dt_FormulaDetail>)_
m5WIDESEAWCS_BasicInfoService.FormulaDetailServiceFormulaDetailService†»
7R    CCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè?Þe
Xu! WIDESEAWCS_BasicInfoService.BoxingService.RepositoryRepositoryô
ÿ
Ö4{'W WIDESEAWCS_BasicInfoService.BoxingService.BoxingServiceBoxingService{ Á tX    BoxingService(IRepository<Dt_Boxing>)Q_' WIDESEAWCS_BasicInfoService.BoxingServiceBoxingService j¦
RCC WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceèÞ4
_!
WIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository
)
ú:"3o
WIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailService“å Œd    BoxingDetailService(IRepository<Dt_BoxingDetail>)]k3
WIDESEAWCS_BasicInfoService.BoxingDetailServiceBoxingDetailService‚¸;“81„B/ƒZ.ƒ:+ƒ0‚u,‚W ‚:&‚    "X9xV)ï'ï7,!âÖËÀõéÞÓÇ»°¥
å
Ù
Î
Ã
¸
­
¡
•
‰
~
s
h
]
P
C
7
+
 
 
    ø    ë    Þ    Ñ    Ä    ·    ª            ƒ    v    i    \    P    D    8    ,            úîâÖʽ°£—‹~rfZNA4(øìàÔȼ°¤˜Œ™‚wk_TI b V K ? 4 )    ú ï ä Ø Ì Á µ © ž ’ ‡ { o d Y N B 6 +   
ÿ ô é Þ Ó È ½ ± ¥ š  „ y m a V J > 3 (   
ü
ñ
ÿ=1&sg[OC6*øíùíáÕɼ¯£—‹sg[NA4' óæÙÌ¿²¥˜‹sg[OC7*ùíáÕɽ±¥™Œsg[OC7+ûîâÕȼ¯£—‹reXL@4(öêÞÒŹ­ “‡{ocW´¨’†zod ô è Ý Ò Ç ¼ ± ¦ š  „ y n \Òs% \w$ \gf# \©v" \êz! \B°  \Å/ YÚt Y1c Yi‚ Yºf Yi YFz Yƒ{ Yíg YÅ‘ S´e Se SZe Sšx SÕ} S$û SÅ\ Q¢§ Q!w Qsf QÆf Qe
QJ‡     Q‹w Qíb QÅŒ M    ÔU M    #§ M²g Mc MQo M¤g Mçuÿ M;fþ Mzyý MÃqü M rû MOvú MŽyù Mí    Bø MÅ    l÷ J    2fö Jtvõ J¸tô Jýsó JOfò JŠ}ñ JÆ|ð J^jï J®hî Jûmí J@sì JÏÏë J§ùê Eùté ENeè E¡fç Eôeæ E1zå Emxä E¤~ã Eí†â EŰá B `Øà B
¾˜ß B    Õ¡Þ Bú•Ý B“Ü BC•Û BY¢Ú Bm¤Ù B€¥Ø B§× B¥¢Ö B·§Õ BÁ }Ô B™ §Ó AtÒ A\eÑ A˜|Ð AégÏ A%|Î Aa|Í AšÌ Aí”Ë AÅ¾Ê @?!É @ È @îÇ @Ä!Æ @ÉÅ @uóÄ 7$à 7í! 7ÉÁ 7¤À 7uο 6ä#¾ 6¼½ 6–w¼ 6uš»  €º  S~¹ 
~¸     Ë~·     ~¶ C~µ ~´ »~³ ÷~² 2~± yr° ²¯ ðz® .z­ ss¬ ΠЫ ¦ úª  {©  >}¨  w{§ 
­~¦     ß¥     ¤ ^h£ ŠŒ¢ ¿‚¡  'Ÿ ukž ³z ñzœ /z› ssš Î º™ ¦ ä˜ ª|— æ|– 5i• ys” Î^“ ¦ˆ’  k‹‘  ׉  ÿ  )‰Ž 
Q     {‰Œ £‹ ͉Š ÷‰‰ Žˆ L…‡ }„† ­…… èz„ &zƒ ks‚ Î . ¦ X€
¨|
ä|~
3i}
ws| Î\{ ¦†z -‹y
©zx
çzw
%zv
isu Îðt ¦s
1é$r
1»$q
1–}p
1u o
.á;n
.¯(m
.w.l .2ðk .j
-CEi -ú”h -ÏÁg
,.Wf
,î6e
,¶.d
,‚+c ,=Nb ,{a
+ãJ`
+¸w_
*'^
*Þ']
*µ\
*š[
*!oZ
*ê-Y
*¶*X
*‡%W
*\"V *%U *ìRT
)ã@S
)¸mR
(Q9Q (P (Õ½O
'ãVN '¸ƒM
&X6L &
ŠK &Þ¸J
%X6I %
ŠH %Þ¸G
#P2F
#
~E #Þ¬D
"\8C "
B "Þ¾A
!N1@
!
{? !Þ©>
 Z7=  
<  Þ»;
dH#:
d 9
dò"8
dÇ!7 d›Ö6
duþ5
bb,4
b:3
b 2
bì1
bÈ0 b›ù/
bu!.
2è--
2ºa, 2”‰+
;!*
 )
ê(
À!' ›Ç&
uï%
a‘)$
a *# a½" a’2!
`—0 
`$* `½ `’?
    T
    Ü     ¢»
    uê
9ô9
9ˆb 9
) 9ÞW
4ô9
4ˆb 4
) 4ÞW
Ü5
xZ 
  Þ;
;
f 
7
Þe    
 Ö4
 tX  
  Þ4
 
ú:
 
Œd  OҒa²AæÓ² †É±=p^
*øš Ç ¾~`† Ò#¢0ËSæ¦ý»¨¯ÿûâ£å¾“ÑÈ    ñä× w 5 2›)ÃKÞž
ì
© î l
b 
    Î    ”    L    F8.æ u ®     úŒÎÌ *bK|²½iŽl¡¬|¢Oî™< ß h &
Ý
š
S
Š °µ îþO85ðÙ«”}Le|\@ 7 G T 0 ¥ !‰pÙ 9 › Üá‚/Îy  H 
½
z
3 ¾ g  Ô  O ñ    í    ¯    `    -_'–Mô°DÛiúº
ÚªóÓ/StationComponent9¹/StationComponent8¸/StationComponent7·/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– BoxingId•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~ BoxingId}Id|+Dt_BoxingDetail{;WIDESEAWCS_Model.Modelsz Detailsy#ProductNamex#ProductCodew!PalletCodevIdu Dt_Boxingt;WIDESEAWCS_Model.Modelss Passwordr UserNameq LoginInfop-WIDESEAWCS_Modelo ModifyPwdn1GetCurrentUserInfom    Loginl-ISys_UserServicekAWIDESEAWCS_ISystemServicesj)InitTenantInfoi1ISys_TenantServicehAWIDESEAWCS_ISystemServicesg)SavePermissionf7GetUserTreePermissione=GetCurrentTreePermissiond)GetAllChildrenc-ISys_RoleServicebAWIDESEAWCS_ISystemServicesa5ISys_RoleAuthService`AWIDESEAWCS_ISystemServices_ DelMenu^Save]#GetTreeItem\ GetMenu[!GetActionsZ)GetPermissionsY+GetUserMenuListX/GetMenuActionListW=GetCurrentMenuActionListV-ISys_MenuServiceUAWIDESEAWCS_ISystemServicesT+ISys_LogServiceSAWIDESEAWCS_ISystemServicesR-GetVueDictionaryQ9ISys_DictionaryServicePAWIDESEAWCS_ISystemServicesOAISys_DictionaryListServiceNAWIDESEAWCS_ISystemServicesM!RepositoryL3IScanStationServiceKCWIDESEAWCS_BasicInfoServiceJ!RepositoryI3IProcessInfoServiceHCWIDESEAWCS_BasicInfoServiceG!RepositoryF+IFormulaServiceECWIDESEAWCS_BasicInfoServiceD!RepositoryC7IFormulaDetailServiceBCWIDESEAWCS_BasicInfoServiceA!Repository@)IBoxingService?CWIDESEAWCS_BasicInfoService>!Repository=5IBoxingDetailService<CWIDESEAWCS_BasicInfoService; SaveCache:Data9
Config8    DicNo7-VueDictionaryDTO67WIDESEAWCS_DTO.System5 Actions4    IsApp3Text2Pid1Id0/UserPermissionDTO/7WIDESEAWCS_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_BasicInfoService!Repository*;WIDESEAWCS_Model.ModelsÊ%StopAsync”$-GetVueDictionary y?ÓÉ¿Øöì◍µ«¡ƒy——
:C\Œ€€€€ƒ<¿0_baD asiDwcDbasD cinDs_D
desDeawDrvDseDfosDiceDiDdeDnfDnfoDoseDrviDs_bD eaDrDicDvicDwcsD    idDšl€€€€µ\ ž0.atsy%ta_ba      &   co   dt%    fi neach:t&de
il    1 lu*nspp3ry6 sei&kta9it  uve:wcbas      &   oou#x5utcac:neshe:in&no7om   n8s_
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ti&dat9est        1    xic6to%    eawca:di6en"    nu 
po%rm/p/v        
 
$
sesta        
 
1
xa        t)    fig8n or
s  &gde9se8ibo<uce    $ i&n7t6dels    1 nb$df        &g5i on
 
     sa3h 
s/
to%k_f nenstty"lad
sinse  1ue*men(is/    moonul
n.atar6 bo$det&    ewfi8o
 
&gd9s8id's     se  tud,i(m  o.s%celimmn.a6
d&    f8i's  olrm
y                        %        se  &i%un#t#xi5pee"r/id1os%rorep%ibmi/u
ocpe/vi
 
  $ yd6 s_b      &   c   d%    ap3v:caean r                 ic&no/ t%k_est"si tae%ys%tai
 
  1 stbo#em%sx)    io        o.%r%ri  tr  us    yp"udt,ed6id(la
nd#se
tb#eval*ec:ic    $ ue6wcs                                                                idxat
 
in5ydt6pe"st%
  
 
 
     4 
         
 44
5H4    
    $ I4 $
     
           $ 
    
 
    
%
 
 
I  
4K    
           
 
 I54 Oˆ€€€€"C0epoCitoCoryC    siCposCrepCsitCtorC-„€€€€‚^–0adeB    ilB detB
ervBtaB for«œ€€€€«
̀€€€>̀€€€=Ā€€€7Œ€€€€4ˆ€€€€< €€€€:œ€€€€9€€€€)„€€€€(„€€€€
!„€€€€2ˆ€€€€-ˆ€€€€#„€€€€
€yèÞÔBoɾ18*#haZSI†·°©¢ö”” †€€  tq       0pr   w€   
          0gg     ”   òò#    
0yst
0ree        0tau        0ntq        0ern    0xeú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/.    -    ,+ *)('&%    $    #"!      
              
      
          ~ }|{ zyx    w    vutsrqponmlkji hgf edc ba`_^]\    [ZY X WVUTS RQPONMLKJIHGFE DCBA@? >=<;:9876543210/.-,+*)('&%$#"
!           
      5‚
ôô version ~U¢/° µ 8 ¼ 8 7
´
:    ©    yægáèF¥ Uùùùùùù‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvÜutފª¡‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsvÜutފƒ)xcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jsÜutދ„JwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.csÜutÝÿ>ÿ ´Ž‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsvwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.csÜutÝÿ>ÿ ´~{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csÜutÝÿ>ÿ~oF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.csÜutÝÿë=w‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSee‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsvÜutފª¡‚/F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsvÜutފƒ)‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsvÜutފƒ)yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csÜutÝÿë}mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csÜutÝþð߁‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.csÜutÞ/G‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.csÜutÞ‡‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.csÜutÞô݁‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.csÜutÞôÝx cF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.csÜutÞ⁠sF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.csÜutÞâ{ iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.csÜutÝëNw=„uF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csÜutÝëNw    uF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.csÜutÝïTÌzgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.csÜutÞáÐ{iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.csÜutÞáЁ}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.csÜutÞâsUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonÜutÞÒK}mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsonÜutÞÒKqUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.csÜutÝñåœ\+F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\.editorconfigÜutÝã ÝYJ{ý ø q ñ „ ÿ z
ð
j    ì    méjéjÉp‘«>ÁEYYYn8OF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\R_PLCDBName.csÜutޓºÛ/qF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\jquery-3.3.1.min.jsÜutދ¶‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxmlÜutÞzù.hOF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\R_PLCDBName.csz7gF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleNodes.csÜutÝÿf {6iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleAuthor.csÜutÝÿf k5IF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.csÜutÞzù4sF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.csÜutÝëu„ñcEF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cso2QF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\MenuDTO.csÜutÝòÝl1KF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\LoginInfo.csÜutÝþÉÅ0qF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.jsonÜutÞ©ªwyqF:\gsxmi3EF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.csÜutޓºÛ}.mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_UserService.csÜutÝù&L-qF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_TenantService.csÜutÝøñ},mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleService.csÜutÝøñ+uF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleAuthService.csÜutÝøñ}*mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_MenuService.csÜutÝøñ|)kF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_LogService.csÜutÝøÈ4(yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryService.csÜutÝøÈ4'‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryListService.csÜutÝø &wF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.csÜutÝõA %wF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.csÜutÝõA k$IF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\index.htmlÜutއZû~#oF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.csÜutÝõA "{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.csÜutÝõ®}!mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingService.csÜutÝõ®†yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csÜutÝõ®|kF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.csÜutÝëu„wF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.csÜutÝëNw
: S¬ ¾C Î U Ü bSÇŸ ø >¸3é
ž
!    ª    /´f4¸CÍSÝeïá˜siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskStatusEnum.cs`qeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskTypeEnum.csa7®oaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\UserPermissions.csb)
F:\gspcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\VueDictionaryDTO.csd˜
F:\gskYF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\WIDESEAWCS_DTO.csprojiqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\WIDESEAWCS_Common.csprojh‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csprojg2QF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WI‚    F:|yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csr‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\WIDESEAWCS_IBasicInfoService.csprojjumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_UserService.cs.wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_TenantService.cs-umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleService.cs,yuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleAuthService.cs+umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_MenuService.cs*tkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_LogService.cs){yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryService.cs(‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryListService.cs'zwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.cs&zwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.cs%voF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.cs#|{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.cs"umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingService.cs!zuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.css gQF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\MenuDTO.cs2iUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.csyuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.cs9xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.cs4tkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs zF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs
S+    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\.editorconfig
)¯yž"+ ¤¯ ® : Ç R
Ú
b    æ    u    ‘§5¼LÖkãWÅ;²%£{wF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs´woF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs¸‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_LogController.csK ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryListController.csG‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryController.csD‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.csjUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonçumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsonoaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\WIDESEAWCS_Model.csprojmxsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\UserPermissions.cscqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_User.cs\siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Tenant.csYumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_RoleAuth.csSqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Role.csQqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Menu.csMpcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Log.csJ{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DictionaryList.csEwqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Dictionary.csBwqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Department.csAtkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Actions.cs@rgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleNodes.cs7siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleAuthor.cs6zwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs}{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csj{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csdKF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\LoginInfo.cs1‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ITaskInfoService\WIDESEAWCS_ITaskInfoService.csprojl
: S¬ ¾C Î U Ü bSÇŸ ø >¸3é
ž
!    ª    /´f4¸CÍSÝeïá˜siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskStatusEnum.cs`qeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskTypeEnum.csa7®oaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\UserPermissions.csb)
F:\gspcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\VueDictionaryDTO.csd˜
F:\gskYF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\WIDESEAWCS_DTO.csprojiqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\WIDESEAWCS_Common.csprojh‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csprojg2QF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WI‚    F:|yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csr‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\WIDESEAWCS_IBasicInfoService.csprojjumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_UserService.cs.wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_TenantService.cs-umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleService.cs,yuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_RoleAuthService.cs+umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_MenuService.cs*tkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_LogService.cs){yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryService.cs(‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\ISys_DictionaryListService.cs'zwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IScanStationService.cs&zwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IProcessInfoService.cs%voF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaService.cs#|{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IFormulaDetailService.cs"umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingService.cs!zuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.css gQF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\MenuDTO.cs2iUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\ActionDTO.csyuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\Attributes\BoolIndexAttribute.cs    xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.cs9xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ProcessInfoService.cs4tkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaService.cszwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\FormulaDetailService.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingService.cs zF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.cs
S+    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\.editorconfig
)¯yž"+ ¤¯ ® : Ç R
Ú
b    æ    u    ‘§5¼LÖkãWÅ;²%£{wF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs´woF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.cs¸‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_LogController.csK ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryListController.csG‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryController.csD‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DispatchInfoController.cs‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolDetailController.cs
‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceProtocolController.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\QuartzJob\DeviceInfoController.csjUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonçumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.Development.jsonoaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\WIDESEAWCS_Model.csprojmxsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\UserPermissions.cscqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_User.cs\siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Tenant.csYumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_RoleAuth.csSqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Role.csQqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Menu.csMpcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Log.csJ{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DictionaryList.csEwqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Dictionary.csBwqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Department.csAtkF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Actions.cs@rgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleNodes.cs7siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\RoleAuthor.cs6zwF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ScanStation.cs{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.cs}{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csj{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_BoxingDetail.csumF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Boxing.csdKF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\LoginInfo.cs1‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ITaskInfoService\WIDESEAWCS_ITaskInfoService.csprojl ^šò÷}™¥àÌ_hÌٚ6 h J ð I
Í^    Ù Îz~”
†”áiF‚%F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_DictionaryList.tsvÜutފҗG‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryListController.csÜutÞZ‡D‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_DictionaryController.csÜutÞ/GyMeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Menu.csÜutÝÿÛ=EyF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DictionaryList.csÜutÝÿ´,BqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Dictionary.csÜutÝÿ´,|@kF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Actions.csÜutÝÿMnqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_DeAqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Department.csÜutÝÿXaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Servw?aF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\swg-login.htmlÜutތCy>eF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\swaggerdoc.jsÜutދÝ{=iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\swaggerdoc.cssÜutދWugYF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\ss;YF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\site.jsÜutދ݁9sF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\ScanStationService.csÜutÝ뜓    n{PiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_MenuService.csÜutތÛõu:]F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\site.cssÜutދ/ô
kk‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAN‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Menu.tsvÜutފùd ÔbgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServiceszLgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_LogService.csÜutތÛõK‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_LogController.csÜutÞZ‡ \vuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryServiIuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryService.csÜutތÛõ    O‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_MenuController.csÜutÞZ‡csm ‚%F:\gH}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryListService.csÜutތ´-xJcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Log.csÜutÝÿ´,.cs÷‚F:\gsxm\Fav<_F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\style.cssÜutދ/ôq‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DBC‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Dictionary.tsvÜutފҗ
Þx7C¾GÉUâiø    œÆ    8¿IxÜTÅÊ‘¬4 È V æ X Æ .
ž
¼cIF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.cs5wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.json0‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxml8F:\gsxm\FaDianJi\代çpcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs rgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_UserController.cs^m]F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\site.css:‡F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.ts‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局异常错误日志AOP_1766739271.log]{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1766486446.logsqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server.csprojn‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.csU‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_TenantController.csZ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.csWqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketSetup.csfcIF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\index.html$wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketHostService.cse‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsv‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsvoaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\swg-login.html?qeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\swaggerdoc.js>kYF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\site.js;wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\jquery-3.3.1.min.js/pcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\swaggerdoc.css=n_F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\style.css<
Þx7C¾GÉUâiø    œÆ    8¿IxÜTÅÊ‘¬4 È V æ X Æ .
ž
¼cIF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Program.cs5wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\launchSettings.json0‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Properties\PublishProfiles\FolderProfile.pubxml8F:\gsxm\FaDianJi\代çpcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomProfile.cs xsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\CustomAuthorizeFilter.cs rgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperSetup.cssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutoMapperConfig.cs}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\AutofacPropertityModuleReg.cs‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_UserController.cs^m]F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\site.css:‡F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.ts‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局异常错误日志AOP_1766739271.log]{yF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1766486446.logsqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server.csprojn‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.csU‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_TenantController.csZ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.csWqeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketSetup.csfcIF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\index.html$wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketHostService.cse‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_Router.tsv‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DispatchInfo.tsv‚/F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocolDetail.tsv‚#F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceProtocol.tsv ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Dt_DeviceInfo.tsvoaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\swg-login.html?qeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\swaggerdoc.js>kYF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\site.js;wqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\jquery-3.3.1.min.js/pcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\js\anime.min.jssiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\swaggerdoc.css=n_F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\css\style.css< }ç ɇöƒp N ¼ .
ž
%    ™     "› ‚®îúòmçy‚…4wF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_ProcessInfo.csÜv>d8Äú‚suF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\BoxingDetailService.csÜv9Å!N‚ryF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\IBoxingDetailService.csÜv*#lÒ~…8oF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_Formula.csÜv>x¯- ‚j{F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\BasicInfo\Dt_FormulaDetail.csÜv?»/i…hEF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.csÜvE&;þ‚]‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局异常错误日志AOP_1766739271.logÜv?E3z§siYF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\WIDESEAWCS_DTO.csprojÜutÝò9àxdcF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\VueDictionaryDTO.csÜutÝò݁ g‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_BasicInfoService\WIDESEAWCS_BasicInfoService.csprojÜutÝ뜓yneF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server.csprojÜutÞ©ªog D1OF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_SqgUF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\appsettings.jsonÜv[Š:¥wqaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csprojÜutޓãînrOF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\W_PLCDBName.csÜutޓãî p‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\WIDESEAWCS_TaskInfoService.csprojÜutސŒ    o‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csprojÜutލV‰wmaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\WIDESEAWCS_Model.csprojÜutÞ4  l‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ITaskInfoService\WIDESEAWCS_ITaskInfoService.csprojÜutÝü Y k‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_ISystemServices\WIDESEAWCS_ISystemServices.csprojÜutÝù&Lj‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_IBasicInfoService\WIDESEAWCS_IBasicInfoService.csprojÜutÝõhäyheF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\WIDESEAWCS_Common.csprojÜutÝï®ZyaeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskTypeEnum.csÜutÝ>eF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAsyF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Log\全局日志AOP_1766486446.logÜvAۂuóyfeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketSetup.csÜutÞBÁeqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Filter\WebSocketHostService.csÜutÞâcsF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\UserPermissions.csÜutÞ 0wbaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_DTO\System\UserPermissions.csÜutÝòÝ
    .…mä[ Î E Ç M Ú f
î
z
    D¿…ÇèObEF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.csèfOF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\W_PLCDBName.csroaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csprojq‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\WIDESEAWCS_TaskInfoService.csprojp‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csprojofOF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\R_PLCDBName.cs8bF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cs3siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_UserService.cs_umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_TenantService.cs[siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.csXwqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csVsiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_MenuService.csPrgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_LogService.csLyuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryService.csI}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryListService.csH‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_User.tsv] ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_RoleAuth.tsvT‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.tsvR‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Menu.tsvN‚%F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_DictionaryList.tsvF
    .…mä[ Î E Ç M Ú f
î
z
    D¿…ÇèObEF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.csèfOF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\W_PLCDBName.csroaF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\WIDESEAWCS_Tasks.csprojq‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_TaskInfoService\WIDESEAWCS_TaskInfoService.csprojp‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\WIDESEAWCS_SystemServices.csprojofOF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\R_PLCDBName.cs8bF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Tasks\PLCJob.cs3siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_UserService.cs_umF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_TenantService.cs[siF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.csXwqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csVsiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_MenuService.csPrgF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_LogService.csLyuF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryService.csI}}F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_DictionaryListService.csH‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_User.tsv] ‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_RoleAuth.tsvT‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.tsvR‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Menu.tsvN‚%F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_DictionaryList.tsvF     ç*ºs4ì¦Q     ¿ s % Ó  : í ž S
þ    “    ?ä-Êv Äp°\ýœKàŽ*£Sþ¬SV=A*WIDESEAWCS_ISystemServices.ISys_MenuService.GetCurrentMenuActionListGetCurrentMenuActionListc\"    GetCurrentMenuActionList()WUc-*WIDESEAWCS_ISystemServices.ISys_MenuServiceISys_MenuService(Rê%PTAA*WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesö-ìR
SSa+)WIDESEAWCS_ISystemServices.ISys_LogServiceISys_LogServiceôã@NRAA)WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÂÝH¸m
Q-A(WIDESEAWCS_ISystemServices.ISys_DictionaryService.GetVueDictionaryGetVueDictionaryhQ9    GetVueDictionary(string[])bPo9(WIDESEAWCS_ISystemServices.ISys_DictionaryServiceISys_DictionaryServiceGIPOAA(WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesßú˜Õ½
iNwA'WIDESEAWCS_ISystemServices.ISys_DictionaryListServiceISys_DictionaryListServiceô2ãVOMAA'WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÂÝ^¸ƒ
_L!&WIDESEAWCS_BasicInfoService.IScanStationService.RepositoryRepository{
†X6]Kk3&WIDESEAWCS_BasicInfoService.IScanStationServiceIScanStationServiceNF
ŠRJCC&WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè’Þ¸
_I!%WIDESEAWCS_BasicInfoService.IProcessInfoService.RepositoryRepository{
†X6]Hk3%WIDESEAWCS_BasicInfoService.IProcessInfoServiceIProcessInfoServiceNF
ŠRGCC%WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè’Þ¸
ZFy!#WIDESEAWCS_BasicInfoService.IFormulaService.RepositoryRepositoryo
zP2TEc+#WIDESEAWCS_BasicInfoService.IFormulaServiceIFormulaServiceFB
~RDCC#WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè†Þ¬
aC!"WIDESEAWCS_BasicInfoService.IFormulaDetailService.RepositoryRepository
Œ\8aBo7"WIDESEAWCS_BasicInfoService.IFormulaDetailServiceIFormulaDetailServiceRH
RACC"WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè˜Þ¾
Y@w!!WIDESEAWCS_BasicInfoService.IBoxingService.RepositoryRepositoryl
wN1R?a)!WIDESEAWCS_BasicInfoService.IBoxingServiceIBoxingServiceDA
{R>CC!WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceèƒÞ©
! WIDESEAWCS_BasicInfoService.IBoxingDetailService.RepositoryRepository~
‰Z7µm5 WIDESEAWCS_BasicInfoService.IBoxingDetailServiceIBoxingDetailServicePG
TCC WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè•Þ»
S:mdWIDESEAWCS_DTO.System.VueDictionaryDTO.SaveCacheSaveCacheT    ^ H#I9cdWIDESEAWCS_DTO.System.VueDictionaryDTO.DataData,1  M8gdWIDESEAWCS_DTO.System.VueDictionaryDTO.ConfigConfig ò"K7edWIDESEAWCS_DTO.System.VueDictionaryDTO.DicNoDicNoÕÛ Ç!Q6Y-dWIDESEAWCS_DTO.System.VueDictionaryDTOVueDictionaryDTO¨½´›ÖD577dWIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System•Þuþ
P4kbWIDESEAWCS_DTO.System.UserPermissionDTO.ActionsActionsy b,L3gbWIDESEAWCS_DTO.System.UserPermissionDTO.IsAppIsAppFL :J2ebWIDESEAWCS_DTO.System.UserPermissionDTO.TextText$  H1cbWIDESEAWCS_DTO.System.UserPermissionDTO.PidPid÷û ìF0abWIDESEAWCS_DTO.System.UserPermissionDTO.IdIdÓÖ ÈS/[/bWIDESEAWCS_DTO.System.UserPermissionDTOUserPermissionDTO¨¾Ö›ùD.77bWIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System•u!
F-W2WIDESEAWCS_DTO.System.MenuDTO.ActionsActions è-=,G2WIDESEAWCS_DTO.System.MenuDTOMenuDTOÇÞ=ºaE+772WIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.Systemž´i”‰
D*WWIDESEAWCS_DTO.System.ActionDTO.ValueValueIO ;! G%z ó    À l a
ÿ
«
V    Ë    p    ¿Àlo¼^-Ø‚&Ôƒ/Ý—R¾zzzzzB)UWIDESEAWCS_DTO.System.ActionDTO.TextText %  F(YWIDESEAWCS_DTO.System.ActionDTO.MenuIdMenuIdõü êJ']WIDESEAWCS_DTO.System.ActionDTO.ActionIdActionIdËÔ À!C&KWIDESEAWCS_DTO.System.ActionDTOActionDTO¨    ¶¬›ÇD%77WIDESEAWCS_DTO.SystemWIDESEAWCS_DTO.System•Ïuï
P$kaWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.InboundInboundU3­‘)R#maWIDESEAWCS_Common.TaskEnum.TaskTypeEnum.OutboundOutboundä3< *O"[%aWIDESEAWCS_Common.TaskEnum.TaskTypeEnumTaskTypeEnumÉ Úç½P!AAaWIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnumœ· ’2
Z w#`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_FinishTask_FinishY5µ —0Tq`WIDESEAWCS_Common.TaskEnum.TaskStatusEnum.Task_NewTask_Newæ5@$*S_)`WIDESEAWCS_Common.TaskEnum.TaskStatusEnumTaskStatusEnumÉÜò½PAA`WIDESEAWCS_Common.TaskEnumWIDESEAWCS_Common.TaskEnumœ·’?
1;    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.BoolIndexAttributeBoolIndexAttribute
1&T    BoolIndexAttribute(int)Tw    WIDESEAWCS_Common.Attributes.BoolIndexAttribute.IndexIndexçí Ü\k1    WIDESEAWCS_Common.Attributes.BoolIndexAttributeBoolIndexAttribute¯ҋ¢»REE    WIDESEAWCS_Common.AttributesWIDESEAWCS_Common.AttributesœÃuê
]!9WIDESEAWCS_BasicInfoService.ScanStationService.RepositoryRepository
"
ô91k9WIDESEAWCS_BasicInfoService.ScanStationService.ScanStationServiceScanStationServiceß ˆb    ScanStationService(IRepository<Dt_ScanStation>)[i19WIDESEAWCS_BasicInfoService.ScanStationServiceScanStationService~µ
)RCC9WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè1ÞW
]!4WIDESEAWCS_BasicInfoService.ProcessInfoService.RepositoryRepository
"
ô91k4WIDESEAWCS_BasicInfoService.ProcessInfoService.ProcessInfoServiceProcessInfoServiceß ˆb    ProcessInfoService(IRepository<Dt_ProcessInfo>)[i14WIDESEAWCS_BasicInfoService.ProcessInfoServiceProcessInfoService~µ
)RCC4WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè1ÞW
Yw!WIDESEAWCS_BasicInfoService.FormulaService.RepositoryRepositoryû
 
Ü5)[WIDESEAWCS_BasicInfoService.FormulaService.FormulaServiceFormulaServiceÇ xZ    FormulaService(IRepository<Dt_Formula>)Sa)WIDESEAWCS_BasicInfoService.FormulaServiceFormulaServicen©
 R CCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceèÞ;
` !WIDESEAWCS_BasicInfoService.FormulaDetailService.RepositoryRepository%
0
;' 5sWIDESEAWCS_BasicInfoService.FormulaDetailService.FormulaDetailServiceFormulaDetailService—ë f    FormulaDetailService(IRepository<Dt_FormulaDetail>)_
m5WIDESEAWCS_BasicInfoService.FormulaDetailServiceFormulaDetailService†»
7R    CCWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè?Þe
Xu! WIDESEAWCS_BasicInfoService.BoxingService.RepositoryRepositoryô
ÿ
Ö4{'W WIDESEAWCS_BasicInfoService.BoxingService.BoxingServiceBoxingService{ Á tX    BoxingService(IRepository<Dt_Boxing>)Q_' WIDESEAWCS_BasicInfoService.BoxingServiceBoxingService j¦
RCC WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceèÞ4
¹!
WIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository
)
ú:X3o
WIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailService“å Œd    BoxingDetailService(IRepository<Dt_BoxingDetail>)³k3
WIDESEAWCS_BasicInfoService.BoxingDetailServiceBoxingDetailService‚¸
0TCC
WIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè8Þ^
­÷­öööáááááááááááá0dep‚
ept‚
pti‚
tid‚
            U€€€½zz0.mo*         sy?_acEdeKiTidvlokmexo*                  ro‚sc+ablQހ€€²4 ›0.co‚=mo‚qu‚="sy‚6_ht‚?id‚!mo‚  se‚B   us‚ wc‚= abl‚,cc‚?t‚<dd‚0i‚.ge‚.il‚+me‚         nt‚pp‚;rk‚t‚=%"""st‚/ta‚E c‚Je‚/u‚    ud‚1wc‚ble‚,ty‚cce‚?ei‚>p‚A    s‚?hi‚Jol‚C    n‚!  s_‚
 
 
 
 
 
s‚=ti‚ dat‚/ bt‚da‚/r‚0el‚p‚)r‚-s‚t‚Gv‚>if‚/m‚.s‚Jt‚1re‚0e_i‚#ad‚.w‚ct‚in‚>l.‚s‚ma‚na‚
        d‚-o‚%pr‚A
t‚)r.‚=_‚!m‚7n‚"p‚'s‚=t‚(v‚=se‚s‚0ta‚Gd‚Ai‚Eur‚.
vi‚>xt‚: foc‚>
 
 
 s‚Ayp‚/
gen‚-t‚Au‚.    hea‚.in‚J    on‚%tt‚?ice‚>de‚fy‚/    lc‚Gma‚.p‚Enf‚>    
g‚on‚     sa‚;p‚Js‚7
td‚1o‚3s‚2job‚=)&&&ken‚4l.m‚as‚/co‚Cde‚Ge_‚#n‚$r‚=le‚=s.‚6mag‚.i‚+r‚is‚7    od‚  po‚Enab‚,m‚    
n‚de‚-ec‚n‚%fo‚>             ne‚st‚ te‚?    i‚5n‚r‚=t‚oco‚>       de‚i‚/in‚A ke‚4lc‚Cd‚Ge‚#l‚=ne‚%n‚s‚
t‚=  rt‚Eto‚C
 
 
 
pat‚Jco‚?er‚7ho‚%id‚9or‚Ero‚A t_‚*n‚)wd‚' qua‚=#   r.c‚=_i‚!em‚s‚0in‚mi‚7na‚"oi‚A l‚#t‚C                pe‚7w‚'s.‚= td‚E    r‚(z‚=&###ue‚(ve‚=s.q‚=!s‚6_m‚  s‚B   u‚ w‚= ap‚;ea‚r‚    io‚7 or‚?pa‚Jse‚=i‚7 o‚?ta‚e‚6m‚/r‚ ys‚ t_i‚*ac‚? i‚Gt‚ch‚Jda‚1
e‚Aem‚6n‚x‚:
id‚5m‚Eo‚ mo‚/na‚oc‚C    k‚4r‚3pc‚?ri‚ o‚=u‚(st‚2tp‚?y‚us‚
yp‚zj‚='$$$uar‚=$!!!di‚1en‚(rl‚. se‚ ver‚=ic‚>wcs‚                        dd‚/ id‚xta‚? ype‚    w‚/ s_‚ t‚6zjo‚=(%%%           
 
         + 
 
     
 
 
 
     
           %&    
     % 
 
% (      + "      
 
 
 
 %      >€€€ƒ±0atc‚Jchi‚Jon‚Jdis‚Jfoc‚J hin‚J    inf‚J
sp‚Jler‚Jle‚Jnfo‚J tr‚Joco‚J ll‚Jnt‚Jpat‚Jrol‚Jspa‚Jtch‚Jro‚J                                                    m€€€…N<0.co‚Iqu‚I_se‚I art‚I"wc‚Icon‚Is_‚I
des‚Ieaw‚Ir.‚Is‚Iv‚Ise‚Iide‚Ijob‚I&ler‚Ile‚Intr‚Ioll‚Int‚Iqua‚I r.c‚Iol‚Is.‚Itz‚I#ve‚Is.q‚I_s‚I ea‚Ir‚I tro‚Izj‚I$uar‚I!ver‚Iwcs‚I    id‚IH
“M    
   „ ¶2
(êYMB7,! – Š } n³¦›‚âÖËÀÇ»°¥vj</" & 
ñ û î á Ô È » ® ¢
å
Ù
Î
Ã
¸
­
¡
•
‰
~
s
h
]A4(øìàÔȼ°¤˜Œ™‚wk_TI ? 4 )    ú ï ä Ø Ì Á µ © ž ’ ‡ { o d Y N B 6 +   
ÿ ô é Þ Ó È ½ ± ¥ š  „ y m a V J > 3
ÿôti^RG<0$öêÞÒŹ­¡÷ëßÓÇ»¯£—‹sg[•‰~sgZNB6*øìàÔȼ¯¢•ˆ{naTG:- ùìàÔǺ­ “‡{ocWK?2
P
D
7
*
 
 
    ø    ì    ß    Ò    Å    ¸    «    ž    ‘    …    y    m    a    U    I    =    1 b VôçÚOB5)÷    %             õéÝÑŸ¬Ÿ’†yl_RꝒ†zod ô è Ý Ò Ç ¼ ± ¦ š  „ y n
ñ(\Òs% \w$ \gf# \©v" \êz! \B°  \Å/ YÚt Y1c Yi‚ Yºf Yi OrW` MOvú MŽyù Mí    Bø MÅ    l÷ L’W¦ L*Å¥ Lñ¤ KmUX 8ý 8¶ü 8Xû 8÷ú 8”ù 81ø 8Í÷ 8lö 8 õ 8ªô 8U
ó 8øò 8›ñ 8Hð 8ø
ï 8–—î 8uºíN
3z G©^S Eùté ENeè E¡fç Eôeæ E1zå Emxä E¤~ã Eí†â EŰá D&‚R Dm
Q DX P D!-O DÝ;N D72áM Dÿ3L B `Øà B
¾˜ß B    Õ¡Þ Bú•Ý B“Ü BC•Û BY¢Ú Bm¤Ù B€¥Ø B§× B¥¢Ö B·§Õ BÁ }Ô B™ §Ó AtÒ A\eÑ A˜|Ð AégÏ A%|Î Aa|Í AšÌ Aí”Ë AÅ¾Ê @?!É @ È @îÇ @Ä!Æ @ÉÅ @uóÄ
9ô9
9ˆb 9
) 9ÞW 7$à 7í! 7ÉÁ 7¤À 7uο 6ä#¾ 6¼½ 6–w¼ 6uš»
4ô9
4ˆb 4
) 4ÞW
2è--
2ºa, 2”‰+
1é$r
1»$q
1–}p  €º  S~¹ 
~¸     Ë~·     ~¶ C~µ ~´ »~³ ÷~² 2~± yr° ²¯ ðz® .z­ ss¬ ΠЫ ¦ úª K Oɟ_ O<ƒ^ O¥] OÃÁ\ O;[ OñyZ OÀ¬Y M    ÔU M    #§ M²g Mc MQo M¤g Mçuÿ M;fþ Mzyý MÃqü M rû Jýsó JOfò JŠ}ñ JÆ|ð J^jï J®hî Jûmí J@sì JÏÏë J§ùê I5Q£ I¬¢ IŽç¡ Ij
  I_Ÿ I(-ž Iê5 If&œ I<R› H¾mš H*™ H3˜ G”kU GÞ'T
¨|
ä|~
3i}
ws| Î\{ ¦†z -‹y
©zx
çzw
%zv
isu Îðt ¦s .ÅA h¼@ $;? Œm> Qª=
.w.l .2ðk .j
-CEi -ú”h -ÏÁg
,.Wf
,î6e
,¶.d
,‚+c ,=Nb ,{a
+ãJ`
+¸w_
*'^
*Þ']
*µ\
*š[
*!oZ
*ê-Y
*¶*X
*‡%W
*\"V *%U *ìRT
)ã@S
)¸mR
(Q9Q (P (Õ½O
'ãVN '¸ƒM
&X6L &
ŠK &Þ¸J
%X6I %
ŠH %Þ¸G
#P2F
#
~E #Þ¬D
"\8C "
B "Þ¾A
!N1@
!
{? !Þ©>d  Z7= Jtvõ J¸tô oƒ £S‚ \  0΀ ˆ_K çJ ¯@I ¨oH ç6G ¯pF =ÆE ÑcD (áC ðB
;!*
 )
ê(
À!' ›Ç&
uï%í  r­Š  I؉ › ˆ iX‡
Æ ­Í… ÿ„
    T
    Ü     ¢»
    uêÓ9
1u o
.á;n
.¯(m  ®Ž  2  =Œ  º_‹
Ü5
xZ 
  Þ;
;
f 
7
Þe    
 Ö4
 tX  
  Þ4
KÞêW K©!V J    2fö œ…¤n%؝    [¨ v
÷-
…        ^‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_UserController.csÜut޺Á    W‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.csÜutÞ‘b U‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.csÜutÞZ‡y\eF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_User.csÜutÞ 0{YiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Tenant.csÜutÞ 0}SmF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_RoleAuth.csÜutÝÿÛ=yQeF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Model\Models\System\Sys_Role.csÜutÝÿÛ={`iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Common\TaskEnum\TaskStatusEnum.csÜutÝ
’fiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys{_iF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_UserService.csÜutލ.TVqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csÜutލö]‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_User.tsvÜutފùd emF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sy}[mF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_TenantService.csÜutލ.T Z‚    F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_TenantController.csÜutÞ‘bWiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.cs_‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleController.cswVqF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleAuthService.csb‚ F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\Controllers\System\Sys_RoleAuthController.cs T‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\w{XiF:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_SystemServices\Sys_RoleService.csÜutލöT‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_RoleAuth.tsvÜutފùdR‚F:\gsxm\FaDianJi\代码管理\WIDESEAWCS_Server\WIDESEAWCS_Server\WIDESEAWCS_Server\wwwroot\WIDESEAWCS_DB.DBSeed.Json\Sys_Role.tsvÜutފùd "‚
• § < á ‚ 2 Ó  (
³
"    —    ¶ZÛ‰0ÑSã§i"ۏH®W³gÉr°c  M;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°È 6¦ X
Pw'WIDESEAWCS_Model.Models.Dt_BoxingDetail.ComponentNameComponentNamej5      ¨|_~w'WIDESEAWCS_Model.Models.Dt_BoxingDetail.ComponentCodeComponentCode¦5E S ä|U}mWIDESEAWCS_Model.Models.Dt_BoxingDetail.BoxingIdBoxingIdó7† 3iI|aWIDESEAWCS_Model.Models.Dt_BoxingDetail.IdId;3ÚÝ wsQ{[+WIDESEAWCS_Model.Models.Dt_BoxingDetailDt_BoxingDetail1ùÎ\Jz;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°Èd¦†
Ky_WIDESEAWCS_Model.Models.Dt_Boxing.DetailsDetails£« -‹Uxg#WIDESEAWCS_Model.Models.Dt_Boxing.ProductNameProductNamek5
 ©zUwg#WIDESEAWCS_Model.Models.Dt_Boxing.ProductCodeProductCode©5H T çzSve!WIDESEAWCS_Model.Models.Dt_Boxing.PalletCodePalletCodeæ6‡
’ %zCuUWIDESEAWCS_Model.Models.Dt_Boxing.IdId-3ÌÏ isEtOWIDESEAWCS_Model.Models.Dt_BoxingDt_Boxing    #›ÎðJs;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°Èø¦
ErS1WIDESEAWCS_Model.LoginInfo.PasswordPassword÷ é$EqS1WIDESEAWCS_Model.LoginInfo.UserNameUserNameÉÒ »$<pA1WIDESEAWCS_Model.LoginInfoLoginInfo£    ±b–}:o--1WIDESEAWCS_ModelWIDESEAWCS_Model…u 
nnw?.WIDESEAWCS_ISystemServices.ISys_UserService.ModifyPwdModifyPwdô    á;    ModifyPwd(string, string)|m    15.WIDESEAWCS_ISystemServices.ISys_UserService.GetCurrentUserInfoGetCurrentUserInfo¯(    GetCurrentUserInfo()]lo-.WIDESEAWCS_ISystemServices.ISys_UserService.LoginLoginŠw.    Login(LoginInfo)Wkc-.WIDESEAWCS_ISystemServices.ISys_UserServiceISys_UserServiceCmµ2ðPjAA.WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServices,ø
}i)C-WIDESEAWCS_ISystemServices.ISys_TenantService.InitTenantInfoInitTenantInfoVCE    InitTenantInfo(string, int)Zhg1-WIDESEAWCS_ISystemServices.ISys_TenantServiceISys_TenantService 9Uú”PgAA-WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÙôœÏÁ
 f)e,WIDESEAWCS_ISystemServices.ISys_RoleService.SavePermissionSavePermissionA.W    SavePermission(List<UserPermissionDTO>, int)e7A,WIDESEAWCS_ISystemServices.ISys_RoleService.GetUserTreePermissionGetUserTreePermissionî6    GetUserTreePermission(int)d=A,WIDESEAWCS_ISystemServices.ISys_RoleService.GetCurrentTreePermissionGetCurrentTreePermissionɶ.    GetCurrentTreePermission()sc)3,WIDESEAWCS_ISystemServices.ISys_RoleService.GetAllChildrenGetAllChildren’‚+    GetAllChildren(int)Wbc-,WIDESEAWCS_ISystemServices.ISys_RoleServiceISys_RoleServiceNx=NPaAA,WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServices7V{
]`k5+WIDESEAWCS_ISystemServices.ISys_RoleAuthServiceISys_RoleAuthServiceô&ãJN_AA+WIDESEAWCS_ISystemServicesWIDESEAWCS_ISystemServicesÂÝR¸w
]^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()Zy!}*WIDESEAWCS_ISystemServices.ISys_MenuService.GetActionsGetActions1
!o    GetActions(int, List<ActionDTO>, List<Permissions>, int)sY)3*WIDESEAWCS_ISystemServices.ISys_MenuService.GetPermissionsGetPermissionsüê-    GetPermissions(int)vX+5*WIDESEAWCS_ISystemServices.ISys_MenuService.GetUserMenuListGetUserMenuListĶ*    GetUserMenuList(int)|W/9*WIDESEAWCS_ISystemServices.ISys_MenuService.GetMenuActionListGetMenuActionListއ%    GetMenuActionList(int) 0‘³gÉr °ã‘ e  « B Ô k 
™
0    Ç    ^õŒ#############‘‘‘‘‘‘‘‘    &      co   diNO+Y)WIDESEAWCS_Model.Models.Dt_ScanStationDt_ScanStation - qÎ ÐJ*;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°È ئ ú
óiWIDESEAWCS_Model.Models.Dt_ProcessInfo.Height3Height3 Å9 m u {žiWIDESEAWCS_Model.Models.Dt_ProcessInfo.Height2Height2 ü9 ¦ ® >}IiWIDESEAWCS_Model.Models.Dt_ProcessInfo.Height1Height1 59 Ý å w{ôo!WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewAngleScrewAngle
j: 
 
­~™q#WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewTorqueScrewTorque    œ:
G
S     ß;q#WIDESEAWCS_Model.Models.Dt_ProcessInfo.PressHeightPressHeightÐ:    y     …     Þo!WIDESEAWCS_Model.Models.Dt_ProcessInfo.TestResultTestResult 5®
¹ ^hƒ9WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStandardStiffnessValueStandardK6ò     ŠŒw)WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStiffnessValue‚4%4 ¿‚ª3WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueStandardTorsioValueStandard°6Wk ï‰;q#WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueTorsioValueê4 ™ 'Þs%WIDESEAWCS_Model.Models.Dt_ProcessInfo.ComponentQtyComponentQty75Æ Ó ukq#WIDESEAWCS_Model.Models.Dt_ProcessInfo.ProductNameProductNameu5   ³z    ÿq#WIDESEAWCS_Model.Models.Dt_ProcessInfo.ProductCodeProductCode³5R ^ ñz    ¢o!WIDESEAWCS_Model.Models.Dt_ProcessInfo.PalletCodePalletCodeð6‘
œ /z    G_WIDESEAWCS_Model.Models.Dt_ProcessInfo.IdId73ÖÙ ssüY)WIDESEAWCS_Model.Models.Dt_ProcessInfoDt_ProcessInfo - [Î ºª;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°È ¦ ä
]y'WIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentNameComponentNamel5  ª|¬y'WIDESEAWCSf9}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent9StationComponent9 4 ² Ä S~f8}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent8StationComponent8
R4
î
~f7}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent7StationComponent7    Ž4
*
<     Ë~f6}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent6StationComponent6Ê4    f    x     ~f5}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent5StationComponent54¢´ C~f4}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent4StationComponent4B4Þð ~f3}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent3StationComponent3~4, »~f2}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent2StationComponent2º4Vh ÷~f1}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent1StationComponent1õ4‘£ 2~k03WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponentQtyStationComponentQty;5ÊÞ yrf/}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationEndProductStationEndProductt5$ ²Z.q#WIDESEAWCS_Model.Models.Dt_ScanStation.StationNameStationName²5Q ] ðzZ-q#WIDESEAWCS_Model.Models.Dt_ScanStation.StationCodeStationCodeð5 › .zH,_WIDESEAWCS_Model.Models.Dt_ScanStation.IdId73ÖÙ ss_w'WIDESEAWCS_Model.Models.Dt_BoxingDetail.ComponentNameComponentNamej5      ¨|_~w'WIDESEAWCS_Model.Models.Dt_BoxingDetail.ComponentCodeComponentCode¦5E S ä|U}mWIDESEAWCS_Model.Models.Dt_BoxingDetail.BoxingIdBoxingIdó7† 3iI|aWIDESEAWCS_Model.Models.Dt_BoxingDetail.IdId;3ÚÝ wsQ{[+WIDESEAWCS_Model.Models.Dt_BoxingDetailDt_BoxingDetail1ùÎ\Jz;;WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°Èd¦†
Ky_WIDESEAWCS_Model.Models.Dt_Boxing.DetailsDetails£« -‹ 1o³fÄ{. Ý Œ 5 ä “ B õ « X 
ª
[    ÷    ¨    Y     Ãt#Ôƒ4ç˜?îŸTºaý®[µjÀeÃo  Q‚:scWIDESEAWCS_Model.Models.System.UserPermissions.TextText&+  O‚9qcWIDESEAWCS_Model.Models.System.UserPermissions.PidPidþ óM‚8ocWIDESEAWCS_Model.Models.System.UserPermissions.IdIdÚÝ ÏX‚7i+cWIDESEAWCS_Model.Models.System.UserPermissionsUserPermissions±ÅؤùV‚6IIcWIDESEAWCS_Model.Models.SystemWIDESEAWCS_Model.Models.Systemžu*
N‚5_\WIDESEAWCS_Model.Models.Sys_User.TenantIdTenantId35Öß q{H‚4Y\WIDESEAWCS_Model.Models.Sys_User.TokenToken{3 ·rL‚3]\WIDESEAWCS_Model.Models.Sys_User.AuditorAuditor¿4\d üuT‚2e#\WIDESEAWCS_Model.Models.Sys_User.AuditStatusAuditStatus 5œ ¨ KjP‚1a\WIDESEAWCS_Model.Models.Sys_User.AuditDateAuditDate X5 ì     ö –mL‚0]\WIDESEAWCS_Model.Models.Sys_User.AddressAddress ž3 9 A Úta‚/q/\WIDESEAWCS_Model.Models.Sys_User.LastModifyPwdDateLastModifyPwdDate ¾9 u ‡ ”V‚.g%\WIDESEAWCS_Model.Models.Sys_User.HeadImageUrlHeadImageUrl
ÿ3 š § ;yJ‚-[\WIDESEAWCS_Model.Models.Sys_User.GenderGender
V3
á
è
’cJ‚,[\WIDESEAWCS_Model.Models.Sys_User.EnableEnable    ¨5
8
?     æfH‚+Y\WIDESEAWCS_Model.Models.Sys_User.EmailEmailð3    ‹    ‘     ,rL‚*]\WIDESEAWCS_Model.Models.Sys_User.Dept_IdDept_IdB5ÑÙ €fN‚)_\WIDESEAWCS_Model.Models.Sys_User.DeptNameDeptName‡3"+ ÃuV‚(g%\WIDESEAWCS_Model.Models.Sys_User.UserTrueNameUserTrueNameÃ5c p |L‚']\WIDESEAWCS_Model.Models.Sys_User.UserPwdUserPwd3¤¬ DuJ‚&[\WIDESEAWCS_Model.Models.Sys_User.RemarkRemarkO3êñ ‹sL‚%]\WIDESEAWCS_Model.Models.Sys_User.PhoneNoPhoneNo–308 ÒsN‚$_\WIDESEAWCS_Model.Models.Sys_User.RoleNameRoleName×5v wL‚#]\WIDESEAWCS_Model.Models.Sys_User.Role_IdRole_Id)5¸À gfN‚"_\WIDESEAWCS_Model.Models.Sys_User.UserNameUserNamen2     ©vL‚!]\WIDESEAWCS_Model.Models.Sys_User.User_IdUser_Id¬5OW êzF‚ M\WIDESEAWCS_Model.Models.Sys_UserSys_UseríPˆ¢PB°J‚;;\WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏç Å/
L‚_YWIDESEAWCS_Model.Models.Sys_Tenant.RemarkRemarkž3:A ÚtL‚_YWIDESEAWCS_Model.Models.Sys_Tenant.StatusStatusõ3€‡ 1ca‚s-YWIDESEAWCS_Model.Models.Sys_Tenant.ConnectionStringConnectionString*6ÍÞ i‚L‚_YWIDESEAWCS_Model.Models.Sys_Tenant.DbTypeDbType{6  ºfT‚g!YWIDESEAWCS_Model.Models.Sys_Tenant.TenantTypeTenantTypeÊ5Y
d iT‚g!YWIDESEAWCS_Model.Models.Sys_Tenant.TenantNameTenantName5¨
³ FzP‚cYWIDESEAWCS_Model.Models.Sys_Tenant.TenantIdTenantIdE5èñ ƒ{G‚Q!YWIDESEAWCS_Model.Models.Sys_TenantSys_Tenant
;ígJ‚;;YWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏçoÅ‘
N‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.UserIdUserIdv5 ´eN‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.RoleIdRoleIdÉ5X_ eN‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.MenuIdMenuId5«² ZeT‚iSWIDESEAWCS_Model.Models.Sys_RoleAuth.AuthValueAuthValue\5û     šxN‚cSWIDESEAWCS_Model.Models.Sys_RoleAuth.AuthIdAuthId“9>E Õ}N‚U%SWIDESEAWCS_Model.Models.Sys_RoleAuthSys_RoleAuthí2k ‰–$ûJ‚;;SWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏç:Å\
F‚YQWIDESEAWCS_Model.Models.Sys_Role.RolesRoles6< ¢§N‚ _QWIDESEAWCS_Model.Models.Sys_Role.RoleNameRoleNameã5‚‹ !wN‚ _QWIDESEAWCS_Model.Models.Sys_Role.ParentIdParentId64ÃÌ sfJ‚ [QWIDESEAWCS_Model.Models.Sys_Role.EnableEnableˆ5 ÆfJ‚
[QWIDESEAWCS_Model.Models.Sys_Role.DeptIdDeptIdÛ5jq e !!ŸW„€€€€¿2‚0ntq    r‚=sh td
l
Jum
uaVd,i(
2lX m  nzsU    /t‚o.s%ce5Qo‚>       deo    
 
     
 
              inAuw gilsSin‚A ke‚4lc‚Cd‚Ge`ZDil‚=mmp~
 
 
 
 
 
 
 
 
 
 
n.a6
     c-d&    \
 
 
e~           kf8h 
 
 
i'lV n.ns        d
,
t‚=  olrdrj m
3<q    st‚Ey                        %                        sc
    e  & i%to‚C
 
 
 
un#t#f vawnxi55palv%rB         
 srt‚Jco‚?ee"r/*  Qho‚%id1‚on~           7r‚Es%re$o5/   sent_‚*i} n‚     ut    wdn9 qty ua‚=#   e    
 
Kr.c‚=_iv+amp  de\ ec e\ 
mR  5nV      U # p%qps#M?w ibd‚nm/pt    meXi/* Qu
3<naq-o\ oc5Qdw  i‚A l`ZDt‚C                pe/‚w‚'qu            reV    s.‚= ek
itd‚E    mK
reCz‚=&###ue‚(veWfi
 
  $   
  yd6 lNsPs.q‚=!s?w_aEb      &      c   d%    {    iM        lSmU                                    r`%    s‚B   th/uk5w‚= ap3‚v:#    ca4`r
Wea                  dnn pqr                 
 
    f    t he$ic&n5    Q o/ *  9 t%k_est"or‚?pa‚JoqqlXse‚=h$i 
 3
 o‚?v!        wrta-=         ce% U Wi!Am‚/ppr#y sNucrl#va!
 
worys%
T                  t10:_btfi‚*ps+abcZe i
 
  1  7 4lcnst-`
 % 
 
p
!
 
*    % 3 (9
 
    
-(
 
 
'0'
     " ( 7'=
 
    ' 
 
 !K  
 
 
 
' 
E
 
 J('
    "
U0 
 g    
 
 
(
s„
    Ë    Š    Eþ¥V ¶`Éx+â—Jø™6Ó|Æs&Ô‚.քŠ€€€Š€€€¾OXeBWIDESEAWCS_Model.Models.Sys_Dictionary.DBSqlDBSqlA6 €¥UWkBWIDESEAWCS_Model.Models.Sys_Dictionary.DBServerDBServerQ6!* §QVgBWIDESEAWCS_Model.Models.Sys_Dictionary.ConfigConfigh43: ¥¢OUeBWIDESEAWCS_Model.Models.Sys_Dictionary.DicIdDicIdy5KQ ·§OTY)BWIDESEAWCS_Model.Models.Sys_DictionarySys_DictionaryOo
ÏÁ }JS;;BWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models£» …™ §
PRgAWIDESEAWCS_Model.Models.Sys_Department.RemarkRemarkË3gn tPQgAWIDESEAWCS_Model.Models.Sys_Department.EnableEnable5­´ \e`Pw)AWIDESEAWCS_Model.Models.Sys_Department.DepartmentTypeDepartmentTypeZ5ø ˜|TOkAWIDESEAWCS_Model.Models.Sys_Department.ParentIdParentId«5:C ég`Nw)AWIDESEAWCS_Model.Models.Sys_Department.DepartmentCodeDepartmentCodeç5…” %|`Mw)AWIDESEAWCS_Model.Models.Sys_Department.DepartmentNameDepartmentName#5ÁÐ a|\Ls%AWIDESEAWCS_Model.Models.Sys_Department.DepartmentIdDepartmentId\5ÿ  šOKY)AWIDESEAWCS_Model.Models.Sys_DepartmentSys_Department2R/í”JJ;;AWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏçœÅ¾
HI_@WIDESEAWCS_Model.Models.Sys_Actions.ValueValueMS ?!FH]@WIDESEAWCS_Model.Models.Sys_Actions.TextText$)  JGa@WIDESEAWCS_Model.Models.Sys_Actions.MenuIdMenuIdù îNFe@WIDESEAWCS_Model.Models.Sys_Actions.ActionIdActionIdÏØ Ä!IES#@WIDESEAWCS_Model.Models.Sys_ActionsSys_Actionsª º¬ÉHD;;@WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models—Ñuó
SCo7WIDESEAWCS_Model.Models.System.RoleNodes.RoleNameRoleName%. $SBo7WIDESEAWCS_Model.Models.System.RoleNodes.ParentIdParentIdø í!GAc7WIDESEAWCS_Model.Models.System.RoleNodes.IdIdÔ× ÉL@]7WIDESEAWCS_Model.Models.System.RoleNodesRoleNodes±    ¿‚¤V?II7WIDESEAWCS_Model.Models.SystemWIDESEAWCS_Model.Models.Systemž¥uÎ
D>S6WIDESEAWCS_Model.RoleAuthor.actionsactionsòú ä#B=Q6WIDESEAWCS_Model.RoleAuthor.menuIdmenuIdÇÎ ¼><C!6WIDESEAWCS_Model.RoleAuthorRoleAuthor£
²[–w9;--6WIDESEAWCS_ModelWIDESEAWCS_Modeluš
i:1WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent10StationComponent10 Ú5 x ‹ €}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent9StationComponent9 4 ² Ä S~f8}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent8StationComponent8
R4
î
~f7}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent7StationComponent7    Ž4
*
<     Ë~f6}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent6StationComponent6Ê4    f    x     ~f5}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent5StationComponent54¢´ C~f4}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent4StationComponent4B4Þð ~f3}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent3StationComponent3~4, »~f2}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent2StationComponent2º4Vh ÷~f1}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponent1StationComponent1õ4‘£ 2~k03WIDESEAWCS_Model.Models.Dt_ScanStation.StationComponentQtyStationComponentQty;5ÊÞ yrf/}/WIDESEAWCS_Model.Models.Dt_ScanStation.StationEndProductStationEndProductt5$ ²Z.q#WIDESEAWCS_Model.Models.Dt_ScanStation.StationNameStationName²5Q ] ðzZ-q#WIDESEAWCS_Model.Models.Dt_ScanStation.StationCodeStationCodeð5 › .zH,_WIDESEAWCS_Model.Models.Dt_ScanStation.IdId73ÖÙ ss EE[[åbàEnšš€\€€€€€€‚$€€€‚&0_weƒñ€€€ꀀ€‚6†0a׀€€ƒ"¶02scƒuansƒurtƒutiƒu
booƒucanƒutƒu    ionƒu lloƒuocƒun2sƒuste€€zk0aus„ t„boo„lau„ola„ol„pa„
pau„ top„    use„ to„wbo„                            |¨€€€€|l0art„ ut„boo„lau„ola„ol„st„
sta„ tar„ os„    uto„wbo„                            b¤€€€€HU0_plƒameC€€€ˆfø0alp„s„    nc„    cre„    th„ w„ dis„    ow„     th„uc„
 
eal„ig„ou„
td„    wd„    
t„
 
ght„hei„idt„gh„st„    lpr„sc„    nce„    se„    odu„        rq„
 ut„
wn„     pro„ut„
que„
rea„w„            od„qu„
scr„    et„    ta„    tan„    di„    he„ or„
 pu„
wi„ uct„  eo„
tp„
wdo„     id„ns„    re„to„
 
                             
          
€€€ƒ¯0als„
cre„
eal„
ou„
wt„
 
lsc„
orq„
 ut„
put„
que„
rea„
w„
    qu„
scr„
tor„
 pu„
ueo„
tp„
wre„
to„
                                                 ;€€€ƒHÇ0als„    nc„    cre„    dis„    ow„     eal„    td„    wd„    
ist„    lsc„    nce„    se„    own„     rea„    w„        scr„    et„    ta„    tan„    di„    wdo„     ns„    re„                                                    Q€€€‚P’0alp„cth„ duc„
eal„ig„ght„hei„igh„lpr„odu„    pro„rea„od„the„ uct„ wre„                                                    £€€€‚:ˆ0alp„ctw„ dth„uc„
eal„idt„lpr„odu„    pro„rea„od„twi„ uct„ wid„re„                                                ‘3„€€€€¢jC1c0tau
bo#ch‚Jov
 
2 uV    da‚1
e‚Ai em%
U Wnh.s
x)    r
hei‚o<s` v‚idB
 
 f!mn    Wni o        
 
 
  1              lemeV p o‚/nax
 
0 <o.%c‚C    k‚4r%=s
papc‚?eYu    qt
re\     >i  ‚ o‚=u‚(seN t‚2teip‚?r  @ yP Jus    :  0
vuQwiyp". $zj‚='$$$uacVr‚=$!!!ccrtw di‚1t,ed6n‚(o     s  Nid(
2la
3<        iX t#    nazd#rls- rV    se
&
   tb#eh` \? o
p    y‚val*u  '-ec:pfrWfic    $   
Sue6wan&cs                                                                                                                                                                                                                              dd‚/ oid                       ns    on
rrto    xat
 
di in55ta‚? ydi t6liNpe".     $    wnA s_N Z                 ePt% U Wzjo‚=(%%%*     4
#
 
7 %
 
 !
      ; $
      " 
:0
–©n’›Ò¿¬å|bH.úàÓÁ¯…}fO8!
n ô æ Ù Ë ¿ ³ ¦ ™ Œ y a T G 0 !   ù í Þ ¾ ¨ “ „ m V = $   ó¹ Ô Á ¯ œ Š  s ] B /   
ú
î
â
Õ
È
´
¢
Ž
z
m
a
S
E
4
(
 
    ç    É    «    ‡    c    X    M    @    1    $             ôßç™…u_K7&÷ëßÓÆ æ ‡xeRF7'êÚÈ·š|_A#øà¾§’sfYL6
÷ã̼«š‰r^I/ùßÊ´žˆ |¶K>1$
÷íæßØÐÈÀ¸° ¨†rf\J7#÷íâHandleDetectScan|HandlePressScan–½_unitOfWorkManage–¦IsApp;    IsApp33IProcessInfoServiceH)InitTenantInfoÐ)InitTenantInfoq)InitTenantInfoi%InitTenantDbÑ    Index Inbound$+IFormulaServiceE7IFormulaDetailServiceB|½Id’Idä|­IdDId8IdìIdÁId¬Id|IduId0    Iconü)IBoxingService?5IBoxingDetailService± Height3¡ Height2  Height1Ÿ%HeadImageUrl.+_formulaServi/_unitOfWorkManage    €3_processInfoService    -GetVueDictionaryR-GetVueDictionaryQ-GetVueDictionaryQ5GetVierificationCodez7GetUserTreePermissionÊ7GetUserTreePermissionk7GetUserTreePermissione+GetUserMenuList·+GetUserMenuListX/GetUserChildRolesi#GetTreeMenu]#GetTreeItemµ#GetTreeItem_#GetTreeItem\/GetSuperAdminMenu®)GetPermissions±)GetPermissionsY+GetMenuByRoleId¯/GetMenuActionList¶/GetMenuActionListW GetMenu¹ GetMenu´ GetMenu^ GetMenu['GetImportDataE+GetDictionaries¡/GetDeviceProInfosA!EGetCurrentUserTreePermissionÉ1GetCurrentUserInfoÛ1GetCurrentUserInfom)GetCurrentUserx=GetCurrentTreePermissionÈ=GetCurrentTreePermissionj=GetCurrentTreePermissiond=GetCurrentMenuActionList¬=GetCurrentMenuActionListV#GetChildrenÇ%GetAllRoleIdÆ!GetAllMenu­-GetAllDictionary£)GetAllChildrenÅ)GetAllChildrenc!GetActions¸!GetActionsZ Gender-)FormulaService)FormulaServiceFormulaIdE5FormulaDetailService 5FormulaDetailService
command    „ EndDateï Enable, Enable Enableþ Enableç EnableÛ EnableÑ
Email+#ElapsedTimeî)Dt_ScanStation«)Dt_ProcessInfo‘-Dt_FormulaDetailC!Dt_Formulaã+Dt_BoxingDetail{ Dt_Boxingt9DispatchInfoControllerK9DispatchInfoControllerJ+DintAutoScrewOnì DicValueå
DicNoÚ    DicNo7 DicNameä DicNameÙDicListIdã DicListà
DicIdæ
DicIdÕ#IDeviceProtocolDetailControllerH#IDeviceProtocolDetailControllerG=DeviceProtocolControllerD=DeviceProtocolControllerC5DeviceInfoController@5DeviceInfoController> Detailsó Detailsy#Descriptioný DeptName) DeptName     DeptId
Dept_Id*)DepartmentTypeÐ)DepartmentNameÍ%DepartmentIdÌ)DepartmentCodeÎ DelMenu» DelMenua DelMenu^ DbType
DBSqlØ DBServer×Data9'CustomProfileŽ'CustomProfile7CustomAuthorizeFilterŠ-ConnectionString ConfigÖ
Config8%ComponentQty–'ComponentNameG'ComponentName'ComponentCodeF'ComponentCode~ Execute    ‘'BoxingService'BoxingService BoxingId}3BoxingDetailService¶3BoxingDetailServiceµ1BoolIndexAttribute1BoolIndexAttributeBeginDateí+AutoMapperSetup‡-AutoMapperConfig„AAutofacPropertityModuleRegAuthValue AuthId    Authû#AuditStatus2 Auditor3AuditDate1/AddWebSocketSetup— Address0 AddDataÚ1AddAutoMapperSetupˆ'ActionToArray³ Actions< Actions actions¾ Actions4 Actions- ActionIdÆ ActionId' ActionDTO&-_webSocketServer‘/_unitOfWorkManageÔ/_unitOfWorkManageÎ/_unitOfWorkManageÁ/_unitOfWorkManage©/_unitOfWorkManage3_RoleAuthRepositoryÃ_)_boxingService    {%_menuServiceÖ%_MenuService _mapperª5_httpContextAccessort5_httpContextAccessoro5_httpContextAccessorg5_httpContextAccessor[5_httpContextAccessorN5_httpContextAccessor?+_formulaService    }5_boxingDetailService    |'_cacheServiceÕ'_cacheServicež'_cacheServiceO7_formulaDetailService    ~
Þ»šR;}h3& òßÕÎÇÀ¸°¨ ˜ˆnZND2 ÷ßÕʲåÊhé¾?“;  ÷Þɲ†|rg\N7+  ü ð â × É » ¬  “ ‚ m ` S F 9 *  þ ð â Ô Ç º ² ©¦šz'üÑQ¦ ò Û Ä ´ £ :Ë  \ K ( ~   
ë
Ý
Í
½
 
ƒ
f
I
/
 
 
    õ    é    Ý    Ë    ¼    ­    ž        €    q    b    S    D    5    %        ðãÓÇ»­Ÿ‘‚w_G/øÜÓÉ¿±žŠv_H8±'š‘üëÔ¼¥Žw`I2ëÔ÷£‡zeP@& õÞ/ScrewTorqueOutputë5ScrewDownsetDistanceê'ProductHeightéE]Sys_TenantServiceÏ/Sys_TenantServiceÍ5Sys_TenantControllerp5Sys_TenantControl/HandleOfflineScan    •-HandleDetectScan    ”+HandlePressScan    “-HandleOnlineScan    ’'IsConnected20    1portCommunicator20    'IsConnected19    Ž1portCommunicator19    'IsConnected18    Œ1portCommunicator18    ‹'IsConnected17    Š1portCommunicator17    ‰%IsConnected2    ˆ/portCommunicator2    ‡%IsConnected1    †/portCommunicator1    …set    ‚ PLCJob     PLCJob    z3IScanStationServiceK
IsApp;    IsApp33IProcessInfoServiceH)InitTenantInfoÐ)InitTenantInfoq)InitTenantInfoi%InitTenantDbÑ    Index Inbound$+IFormulaServiceE7IFormulaDetailServiceBIdäId’IdDId8IdìIdÁId¬Id|IduId0    Iconü)IBoxingService?5IBoxingDetailService± Height3¡ Height2  Height1Ÿ%HeadImageUrl. BHandlePressScan HandleOnlineScan/HandleOfflineScan9StiffnessValueStandardš)StiffnessValue™ Status#StationName®/StationEndProduct¯3StationComponentQty°/StationComponent9¹/StationComponent8¸/StationComponent7·/StationComponent6¶/StationComponent5µ/StationComponent4´/StationComponent3³/StationComponent2²1StationComponent10º/StationComponent1±#StationCode­!StartAsync“ l    set    %SerializeJwt{#ScrewTorque!ScrewAnglež1ScanStationService1ScanStationService)SavePermissionË)SavePermissionl)SavePermissionf SaveCache:    Saveº    Save`Save]9rrealDetectScrewTorqueù7rrealDetectScrewAngleú9rrealDetectPressHeightø1rrealDetectHeight3ý1rrealDetectHeight2ü1rrealDetectHeight1û
RolesRoleNodesÀ RoleName$ RoleName RoleNameà RoleId RoleId!RoleAuthor¼ Role_Id#'ResponseParamñ%RequestParamð!Repository·!Repository²!RepositoryL!RepositoryI!RepositoryF!RepositoryC!Repository@!Repository!Repository!Repository!Repository !Repository%ReplaceToken| Remark& Remark Remarké RemarkÞ RemarkÒ-RegisterMappings…5rboolOnlineExecutingò;rboolLocation4ScanStart÷;rboolLocation3ScanStartö;rboolLocation2ScanStartõ;rboolLocation1ScanStartô!rboolHeartï!rboolErroró rboolEMGð1rboolAutoExecutingñ#R_PLCDBNameî
Query¢pwd#ProductNameæÄ#ProductCodeå#ProductName•#ProductNamex Pr PLCJob%ProductWidthè'ProductLengthç#ProductCode”#ProductCodew1ProcessInfoService1ProcessInfoService#PressHeightœZ¦p1portCommunicator18Z‰IsConnected17ZvportCommunicator17Z^IsConnected2ZLportCommunicator2Z5IsConnected1 Z#portCommunicator1 Z PLCJobPid9Pid1 PhoneNo% Passwordr ParentId ParentId ParentIdÝ ParentIdÏ ParentIdÂ!PalletCode“!PalletCodev Outbound# OrderNo OrderNoè OrderNoÜ+OnAuthorization‹#objKeyValue°    name~ModifyPwdÜModifyPwdy ModifyPwdn MenuType
Menus MenuNameú MenuId MenuIdù MenuIdÇ menuId½
MenuId( MenuDTO,/MenuActionToArray² LoginInfop
LoginØ
Loginw    Loginl    Load‚/LastModifyPwdDate/-ISys_UserServicek1ISys_TenantServiceh-ISys_RoleServiceb5ISys_RoleAuthService`-ISys_MenuServiceU+ISys_LogServiceS9ISys_DictionaryServicePAISys_DictionaryListServiceNpIsC'IsConnected20VportCommunicator20>IsConnected19+portCommunicator19IsConnected187IsComponentCodesEqual¸7IsComponentCodesEqual³ 1ŠªX®V ¦ S  ¬ O ö › F
ï
–
?    ò    ®    j    ÂtÁs-á‘Cö°cÉ€)܉8ñ¢Q¼o)܊O‚    _QWIDESEAWCS_Model.Models.Sys_Role.DeptNameDeptName 5»Ä J‡J‚[QWIDESEAWCS_Model.Models.Sys_Role.RoleIdRoleIdO3îõ ‹wC‚MQWIDESEAWCS_Model.Models.Sys_RoleSys_Role+E
íbJ‚;;QWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏçjÅŒ
I‚]MWIDESEAWCS_Model.Models.Sys_Menu.ActionsActions
 
     ÔUF‚YMWIDESEAWCS_Model.Models.Sys_Menu.MenusMenus    ·    ½     #§N‚_MWIDESEAWCS_Model.Models.Sys_Menu.MenuTypeMenuTypet5         ²gL‚]MWIDESEAWCS_Model.Models.Sys_Menu.OrderNoOrderNoÊ4U] cD‚UMWIDESEAWCS_Model.Models.Sys_Menu.UrlUrl3¯³ QoN‚_MWIDESEAWCS_Model.Models.Sys_Menu.ParentIdParentIdf5õþ ¤gPaMWIDESEAWCS_Model.Models.Sys_Menu.TableNameTableName«3E    O çuJ~[MWIDESEAWCS_Model.Models.Sys_Menu.EnableEnableý5” ;fT}e#MWIDESEAWCS_Model.Models.Sys_Menu.DescriptionDescription>3Ú æ zyF|WMWIDESEAWCS_Model.Models.Sys_Menu.IconIcon‡3"' ÃqF{WMWIDESEAWCS_Model.Models.Sys_Menu.AuthAuthÏ3kp  rNz_MWIDESEAWCS_Model.Models.Sys_Menu.MenuNameMenuName5¯¸ OvJy[MWIDESEAWCS_Model.Models.Sys_Menu.MenuIdMenuIdP5óú ŽyCxMMWIDESEAWCS_Model.Models.Sys_MenuSys_Menu,Féí    BJw;;MWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏç    JÅ    l
Kv[JWIDESEAWCS_Model.Models.Sys_Log.User_IdUser_Idô5    ƒ    ‹     2fMu]JWIDESEAWCS_Model.Models.Sys_Log.UserNameUserName65ÔÝ tvItYJWIDESEAWCS_Model.Models.Sys_Log.UserIPUserIPz5 ¸tCsSJWIDESEAWCS_Model.Models.Sys_Log.UrlUrl¿5_c ýsKr[JWIDESEAWCS_Model.Models.Sys_Log.SuccessSuccess5 ¨ OfWqg'JWIDESEAWCS_Model.Models.Sys_Log.ResponseParamResponseParamL5ì ú Š}Vpe%JWIDESEAWCS_Model.Models.Sys_Log.RequestParamRequestParamÒë( 5 Æ|Ko[JWIDESEAWCS_Model.Models.Sys_Log.EndDateEndDate 5³» ^jSnc#JWIDESEAWCS_Model.Models.Sys_Log.ElapsedTimeElapsedTimer3ý      ®hOm_JWIDESEAWCS_Model.Models.Sys_Log.BeginDateBeginDate½5Q    [ ûmAlQJWIDESEAWCS_Model.Models.Sys_Log.IdId3£¦ @sAkKJWIDESEAWCS_Model.Models.Sys_LogSys_Logîú¤ÏÏJj;;JWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models±É×§ù
TioEWIDESEAWCS_Model.Models.Sys_DictionaryList.RemarkRemark½3Y` ùtVhqEWIDESEAWCS_Model.Models.Sys_DictionaryList.OrderNoOrderNo4ž¦ NeTgoEWIDESEAWCS_Model.Models.Sys_DictionaryList.EnableEnablec5óú ¡fRfmEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicIdDicIdµ6FL ôeXesEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicValueDicValueï9•ž 1zVdqEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicNameDicName,8ÐØ mxZcuEWIDESEAWCS_Model.Models.Sys_DictionaryList.DicListIdDicListIdd7      ¤~Wba1EWIDESEAWCS_Model.Models.Sys_DictionaryListSys_DictionaryList6Zí†Ja;;EWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.ModelsÏçŽÅ°
P`iBWIDESEAWCS_Model.Models.Sys_Dictionary.DicListDicList # + `ØY_o!BWIDESEAWCS_Model.Models.Sys_Dictionary.SystemTypeSystemType
€5 >
I
¾˜Q^gBWIDESEAWCS_Model.Models.Sys_Dictionary.RemarkRemark    ™3
b
i     Õ¡U]kBWIDESEAWCS_Model.Models.Sys_Dictionary.ParentIdParentId¼5    y    ‚ ú•S\iBWIDESEAWCS_Model.Models.Sys_Dictionary.OrderNoOrderNoâ4¥ “Q[gBWIDESEAWCS_Model.Models.Sys_Dictionary.EnableEnable5ÄË C•OZeBWIDESEAWCS_Model.Models.Sys_Dictionary.DicNoDicNo5èî Y¢SYiBWIDESEAWCS_Model.Models.Sys_Dictionary.DicNameDicName/5ü m¤
½ ¬  ô ç Ú Í À ³ § š  € s f Y L ? 2 %  þ ò å Ù Í Á µ ¨ › Ž ‚ v j ^ R E 8 ,    ù ì à Ó Æ ¹ ¬ Ÿ ’ … y m a T G : -    
ù
ì
ß
Ó
Ç
»
¯
¢
–
Š
}
p
d
W
J
=
0
$
 
 
    ý    ð    ã    ×    Ë    ¿    ³    §    ›        ƒ    w    k    _    S    G    ;    .    "        
þòæÙÌÀ³¦™ŒreXL@4'öéÜϵ¨œ…znbWLA5*    þòåÙÍÁµ©ž’‡|qfZNB5(÷ëÞÒÆº®¢–Š~rfZNB6*øêÝÐö¯¡”‡yk^QCòøëÞÑÄ·ªƒvi\OB5¨š€sfYL?2% þñä×É5' &óæØË¾±¤—Š}pcVI</"äÖȺ¬¥    m ¥&¼¥    ßn&®¥    m&¡¥^hl&”¥ŠŒk&†¥¿‚j&x¥ï‰i&j¥ôT):‹ÃQ*;˜ èFö d    • è4Ƹ    ” è"ãk    “ è™Ò    ’ è û'    ‘ ´¦ / èî1    } èª;    | èr/    { èOC    z èýOg    y s³¸ sú:· sŒd¶ s
³µ sÞá´ r®n³ rZ7² r
± rÞF° · {Ž ¸ µŽó ¸ 5uò ¸ qyñ ¸
¯uð ¸    ëyï ¸    )uî ¸eyí ¸¥sì ¸ãuë ¸zê ¸`qé ¸¥pè ¸éqç ¸$zæ ¸bzå ¸§sä ¸
?ã ¸â iâ j«|G jç|F j5jE jysD jÎ_C j¦‰B rT rñ rŽ r+ rÈ re r r¥
rA     râ r† r) rÈ rh r r¨ rP rú r–Úÿ ruýþ f¢°— fqç– fA• eu” eC´“ e¹€’ eŽ!‘ eM/ e$Z
dH#:
d 9
dò"8
dÇ!7 d›Ö6
duþ5 ci.< cA; c : có9 cÏ8 c¤ù7 cu*6
bb,4
b:3
b 2
bì1
bÈ0 b›ù/
bu!.
a‘)$
a *# a½" a’2!
`—0 
`$* `½ `’? _–ÎÜ _ëÛ _uÚ _ …wÙ _ÿ|Ø _´A× _|/Ö _F-Õ _5Ô _œÎÓ _rúÒ ^) ^ ~ ^Ñ}} ^ Á| ^ á×{ ^
óåz ^
6³y ^    Ÿx ^дw ^øÏv ^.Áu ^é;t ^_ls ^."r \q{5 \·r4 \üu3 \Kj2 \ –m1 \ Út0 \ ”/ \ ;y. \
’c- \    æf, \    ,r+ \€f* \Ãu) \|( \Du' \‹s& \Òs% \w$ \gf# \©v" \êz! \B°  \Å/ [ö~Ñ [)ÃÐ [l³Ï [7,Î [Ã·Í [™ãÌ Z@Ýq ZmÉp Z(;o Z–n ZeÀm YÚt Y1c Yi‚ Yºf Yi YFz Yƒ{ Yíg YÅ‘ X©·Ë X ÝÊ X µ‡É X    ÕiÈ X7Ç XÎôÆ Xˆ<Å X%YÄ XÝ?à X¥/ Xg5Á XûkÀ XÊž¿ W©íl Wâ½k W"¶j Wþi WW¹h W;g W…f WMQe V¦a¾ V*ã½ V¼ U|_d UÞc U©:b S´e Se SZe Sšx SÕ} S$û SÅ\ Q¢§ Q!w Qsf QÆf Qe
QJ‡     Q‹w Qíb QÅŒ P/¥¼» P&\    ?º P$    À¹ P!Þ¹¸ P rb· Pè¶ Pϵ PJÁ´ P:³ P~²² Pݱ PMm° P ௠Pø® PÍ!­ PþŬ P°Ý« P…!ª PG5© PÛ/Œ¨ P±/¸§ è(=    ~® ´ bk¡ ´ «k  ´
ôkŸ ´
9ož ´    |p ´¿pœ ´
h› ´Kwš ´•m™ ´Út˜ ´'j— ´uk– ´³z• ´ñz” ´/z“ ´ss’ ´Î ‘ è Ð"    þ è h_     è ="    Ž è
Õ_     è
ª"    Œ è
B_    ‹ è
"    Š è    ¯_    ‰ è    „!    ˆ è    ]    ‡ èô!    † èŽ]    … è/3    „ èÆ&    ƒ è,W    ‚ èî5     è°5    € èn9     "" ŸV„€€€€¿00.atco‚=mos                 qu‚="sy%
wta_acEba      &      otco   deKiNt%    fi oht‚?idv+sM        loSmeU#oo                                    neprro`%    sc+e‚B   teh/usk5wc‚= ablQ
  !cc‚?h:t&"    d?7dd‚0e
7    Q i‚.ge‚.il    1  7llc%u*u          '-meq
 
 
 
 
 
          ncd g&s4`th
    .    pp3‚snrap
 d eB # kR  5tK    m%"""y6   se6    i&ksrt‚/ta9‚  c‚Jem@i4    ` t  u    ud‚1t` *2?
ve:#    wc                  bas      &      egmleQ
  !oou#x55seWqXty‚utcac:n4`cerMe1 2 3i‚>p‚A    s5 /YMhe:icgidUn&li`naY o7#odv                  ! l‚C    m   ]                                            n8& !  re i}s_
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
    
 
    
 
 
    
 
    
 
 
 
 
 
s‚=tcw hi&        
 
1.# lnx wurV    vaedar t94@ bsWt‚dao@r‚0el^                 pK9r\ +s                      t        1    
7  4v‚>xic6fnAm‚.n
r s   ;t‚1owpr/ rec Mt_th ino%    ucw e_i‚#ad‚.u`
\T    w                  ca:t  di6tnei\n"    pd gimid‚ g
   n‚>t\l.s                 anm^ss                 maR  5sM t_nahZ
 
 
        d/    @>g
o@etV                                      # u 
) 
_
1    ou     paK!    ed o%r‚A
t‚    qupr.‚=_v+im!m/):
    (     
 ? ', C
 
 ' 9  )
    !  
-
'
<4 N     U"( 2
  "     
     
:9: 
Z? '
""ŸV„€€€€¿0Y Q0ernqk    p/xsk    RteCv        
 
$
 
  lfsc}e 
                 pqs5Q    N>t  Mu#ta        
 
1
       4cV        %d 9i‚EmWpYt\uX vQur‚.
vi‚>wa&do
 t    xa        t)    r ffn!ig8n ne!oc‚>
 
 
 r
3<s  & wypnA
gde9?
en‚-tQTu‚.    ht 
id}nl}le&    se8    th hea‚.i       id‚lc    n‚J    on‚%r<    se`t1 23t‚?va‚ibo<uce    $ 
Si& l`n7"
o|t6    vede                  t
ff!oBynA    gh     lc‚Gdc
s    1 7ma‚.en
p‚Enb$dQf        &
 ) %    
g55i It
on
 
           
 %                             
 
 
     vprHt}re sa3‚cKh 
p‚Js/
*     
Q
tN0   QyM    
    td‚1e\    o%gs‚2tijob‚=)&&&k_f nen‚stty"l.ms                 ad
7Q
pns6jchco‚Cde‚Grc e_‚#a`    \Ti‚ n    ;<r‚=sb    ,tv%insN lccev%"me^ogS{s.?we  1ue*u
 
  '-mag‚.i‚+rR  5en()     _
 (    is/    *     Q    moodn                                     npo~            seM ty_ul
3<n.atabQ
  !mq                  
 
     
nh    .r6     bo$ceo-da Kdoe‚i    p/
t&    ec‚n~ks!wfi8o
 
&  ) %             gd9?    i}l&s8t he    id'nps     tiliVna.e‚od@se  4 =
it4`q t11    2233445566778899a
c~        8
e‚?    ii
Y
 
#  mV
n        6
 
!/         
 
  4 .
    
 
 $.
     
 I% 
 $3+; 
%
    
+     C X 8    B(     9
 I      
 
{}KâÉ»ª–‚dF. êˬ‘viR;'íÕÀ«‹oS:!    ñÜÇ·ƒlUGKcëÖÆ·§š‡vhZJ:*!=ïÞŵ¬£–‰}qdVH2 þ ô é Ô Ã ¯ ›  c G +  û á Í ­  m M - í Í ­  l K *
ì
Ò
¸
ž
„
e
F
'
    é    Ê    «    Œ    w    a    E    )     ïjI(øá¦ˆjL0øÂ’—«{4{YDirectionHeight3ò1Sys_UserControllers1Sys_UserControlleruúÂYDirectionHeight2ð]XDirectionDistance2ï/YDirectionHeight1î-XDirectionDistance1í°¼WIDESEAWCS_Model.Modelsâ9wrealYDirectionHeight39wrealYDirectionHeight29wrealYDirectionHeight1 =wrealXDirectionDistance3=wrealXDirectionDistance2=wrealXDirectionDistance1 9wrealScrewTorqueOutput
?wrealScrewDownsetDistance    /wrealProductWidth1wrealProductLength1wrealProductHeight CWIDESEAWCS_WCSServer.FilterŒ CWIDESEAWCS_WCSServer.Filter† CWIDESEAWCS_WCSServer.Filterƒ CWIDESEAWCS_WCSServer.Filter€,[WIDESEAWCS_WCSServer.Controllers.Systeme,[WIDESEAWCS_WCSServer.Controllers.SystemL/aWIDESEAWCS_WCSServer.Controllers.QuartzJob=%MWIDESEAWCS_WCSServer.Controllersr%MWIDESEAWCS_WCSServer.Controllersm%MWIDESEAWCS_WCSServer.ControllersY-WIDESEAWCS_Tasks-WIDESEAWCS_Tasksþ-WIDESEAWCS_Tasksí%MWIDESEAWCS_SystemServices.System¿?WIDESEAWCS_SystemServicesÒ?WIDESEAWCS    Text    ƒ Sys_User /Sys_TenantServiceÏ/Sys_TenantServiceÍ5Sys_TenantControllerp5Sys_TenantControllern!Sys_Tenant+Sys_RoleServiceÄ+Sys_RoleServiceÀ1Sys_RoleControllerh1Sys_RoleControllerf3Sys_RoleAuthService¾3Sys_RoleAuthService½9Sys_RoleAuthControllerd9Sys_RoleAuthControllerc%Sys_RoleAuth Sys_Role+Sys_MenuService«+Sys_MenuService¨1Sys_MenuController\1Sys_MenuControllerZ Sys_Menuø)Sys_LogService¦)Sys_LogService¥/Sys_LogControllerX/Sys_LogControllerW Sys_Logë7Sys_DictionaryServiceŸ7Sys_DictionaryServiceœ?Sys_DictionaryListServiceš?Sys_DictionaryListService™!ESys_DictionaryListControllerU!ESys_DictionaryListControllerT1Sys_DictionaryListâ=Sys_DictionaryControllerP=Sys_DictionaryControllerM)Sys_DictionaryÔ)Sys_DepartmentË#Sys_ActionsÅ SwgLoginv3SwaggerLoginRequest} Successò;WIDESEAWCS_Model.ModelsÄ;WIDESEAWCS_Model.Modelsª;WIDESEAWCS_Model.Modelsz;WIDESEAWCS_Model.Modelss-WIDESEAWCS_Model»-WIDESEAWCS_ModeloAWIDESEAWCS_ISystemServicesjAWIDESEAWCS_ISystemServicesgAWIDESEAWCS_ISystemServicesaAWIDESEAWCS_ISystemServices_AWIDESEAWCS_ISystemServicesTAWIDESEAWCS_ISystemServicesRAWIDESEAWCS_ISystemServicesOAWIDESEAWCS_ISystemServicesM7WIDESEAWCS_DTO.System57WIDESEAWCS_DTO.System.7WIDESEAWCS_DTO.System+7WIDESEAWCS_DTO.System%AWIDESEAWCS_Common.TaskEnum!AWIDESEAWCS_Common.TaskEnum EWIDESEAWCS_Common.Attributes CWIDESEAWCS_BasicInfoService´ CWIDESEAWCS_BasicInfoService°CWIDESEAWCS_BasicInfoServiceJCWIDESEAWCS_BasicInfoServiceGCWIDESEAWCS_BasicInfoServiceDCWIDESEAWCS_BasicInfoServiceACWIDESEAWCS_BasicInfoService>CWIDESEAWCS_BasicInfoServiceCWIDESEAWCS_BasicInfoServiceCWIDESEAWCS_BasicInfoService CWIDESEAWCS_BasicInfoService    CWIDESEAWCS_BasicInfoService)WebSocketSetup–5WebSocketHostService’5WebSocketHostService-wDintAutoScrewOn 9wboolLocation4ScanDone9wboolLocation3ScanDone9wboolLocation2ScanDone9wboolLocation1ScanDone)wboolAutoStart)wboolAutoPause#W_PLCDBNameÿ-VueDictionaryDTO6
ValueÉ    Value*%UserTrueName( UserPwd'+UserPermissions7/UserPermissionDTO/ UserName" UserNameõ UserNameq UserIPô UserId User_Id! User_IdöUrlUrló!UpdateDataÙ3TorsioValueStandard˜#TorsioValue—
Token4
Text
    Text:    TextÈText2Text)!TestResult›!TenantType!TenantName TenantId5 TenantId%TaskTypeEnum")TaskStatusEnum Task_New#Task_Finish TableNameÿ!SystemTypeß+Sys_UserService×+Sys_UserServiceÓ $¬sü} ÿ l í s  ¶ ^
 
+    Ù    }þ­U¹mu ÌX ¯F«.µ[f¬fƒs?HWIDESEAWCS_SystemServices.Sys_DictionaryListServiceSys_DictionaryListService7´}*Nƒ??HWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices
$3
ƒ /afWIDESEAWCS_Server.HostedService.WebSocketSetup.AddWebSocketSetupAddWebSocketSetupµña¢°    AddWebSocketSetup(this IServiceCollection)Vƒi)fWIDESEAWCS_Server.HostedService.WebSocketSetupWebSocketSetup…˜ÀqçWƒKKfWIDESEAWCS_Server.HostedServiceWIDESEAWCS_Server.HostedServiceKkïA
vƒ{EeWIDESEAWCS_Server.Filter.WebSocketHostService.StopAsyncStopAsync     D2u    StopAsync(CancellationToken)zƒ}!GeWIDESEAWCS_Server.Filter.WebSocketHostService.StartAsyncStartAsyncO
‡pC´    StartAsync(CancellationToken)ƒ5WeWIDESEAWCS_Server.Filter.WebSocketHostService.WebSocketHostServiceWebSocketHostServiceÀþ;¹€    WebSocketHostService(WebSocketServer)fƒ    -eWIDESEAWCS_Server.Filter.WebSocketHostService._webSocketServer_webSocketServeržŽ!Zƒg5eWIDESEAWCS_Server.Filter.WebSocketHostServiceWebSocketHostServiceZ„øM/Iƒ==eWIDESEAWCS_Server.FilterWIDESEAWCS_Server.Filter.G7$Z
qƒ{'+ WIDESEAWCS_WCSServer.Filter.CustomProfile.CustomProfileCustomProfilee@µ Îm®    CustomProfile()Qƒ _' WIDESEAWCS_WCSServer.Filter.CustomProfileCustomProfile? [æ2Rƒ CC WIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter,=
ƒ     +c WIDESEAWCS_Server.Filter.CustomAuthorizeFilter.OnAuthorizationOnAuthorizationƺ_    OnAuthorization(AuthorizationFilterContext)\ƒ
i7 WIDESEAWCS_Server.Filter.CustomAuthorizeFilterCustomAuthorizeFilter°or­Iƒ    == WIDESEAWCS_Server.FilterWIDESEAWCS_Server.FilterSlµIØ
ƒ    1cWIDESEAWCS_WCSServer.Filter.AutoMapperSetup.AddAutoMapperSetupAddAutoMapperSetup®ëЛ     AddAutoMapperSetup(this IServiceCollection)Uƒc+WIDESEAWCS_WCSServer.Filter.AutoMapperSetupAutoMapperSetup,8}‘0iXNƒCCWIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter
&Ã
|ƒ-1WIDESEAWCS_WCSServer.Filter.AutoMapperConfig.RegisterMappingsRegisterMappingsÏꐭ͠   RegisterMappings()Yƒe-WIDESEAWCS_WCSServer.Filter.AutoMapperConfigAutoMapperConfig?=Ž£ÝÿOƒCCWIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter9Io
rƒ9WIDESEAWCS_WCSServer.Filter.AutofacPropertityModuleReg.LoadLoad»â£S    Load(ContainerBuilder)iƒyAWIDESEAWCS_WCSServer.Filter.AutofacPropertityModuleRegAutofacPropertityModuleRegi™c\ OƒCCWIDESEAWCS_WCSServer.FilterWIDESEAWCS_WCSServer.Filter:V¨0Î
U‚}^WIDESEAWCS_WCSServer.Controllers.SwaggerLoginRequest.pwdpwd7; )W‚~^WIDESEAWCS_WCSServer.Controllers.SwaggerLoginRequest.namename  `‚}u3^WIDESEAWCS_WCSServer.Controllers.SwaggerLoginRequestSwaggerLoginRequestÞöXÑ}w‚| %)^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.ReplaceTokenReplaceToken © Á    ReplaceToken()|‚{ %5^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.SerializeJwtSerializeJwt 4 Vb á×    SerializeJwt(string)‚z59^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.GetVierificationCodeGetVierificationCode I hp
óå    GetVierificationCode(){‚y?^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.ModifyPwdModifyPwd
r    
¢G
6³    ModifyPwd(string, string)|‚x)-^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.GetCurrentUserGetCurrentUser    ×    ð<    Ÿ    GetCurrentUser()t‚wC^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.LoginLogin        F>д    Login([FromBody] LoginInfo)    ‚v]^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.SwgLoginSwgLogin={LøÏ    SwgLogin([FromBody] SwaggerLoginRequest) gªPÝk ç ! Œ  ¨
è
O    â    `¢ìƒ &å~2Ëga‚Wy/KWIDESEAWCS_Server.Controllers.System.Sys_LogControllerSys_LogControllerceÞêd‚VUUKWIDESEAWCS_Server.Controllers.SystemWIDESEAWCS_Server.Controllers.System³$Øò©!
M‚UIE}GWIDESEAWCS_Server.Controllers.System.Sys_DictionaryListController.Sys_DictionaryListControllerSys_DictionaryListController›ô ”k    Sys_DictionaryListController(ISys_DictionaryListService)x‚TEGWIDESEAWCS_Server.Controllers.System.Sys_DictionaryListControllerSys_DictionaryListController%Š{Þ'd‚SUUGWIDESEAWCS_Server.Controllers.SystemWIDESEAWCS_Server.Controllers.System³$Ø/©^
‚R/-=DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController.GetVueDictionaryGetVueDictionaryªÏ&C&‚    GetVueDictionary(string)#‚Q/-WDWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController.GetVueDictionaryGetVueDictionaryÀõ    ‘m
    GetVueDictionary([FromBody] string[])c‚P?=7DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController.Sys_DictionaryControllerSys_DictionaryController_ömX     Sys_DictionaryController(ISys_DictionaryService, IHttpContextAccessor, ICacheService)s‚O)'DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController._cacheService_cacheService@ !-‚N75DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryController._httpContextAccessor_httpContextAccessorÝ;t‚M =DWIDESEAWCS_WCSServer.Controllers.System.Sys_DictionaryControllerSys_DictionaryControllerzÓ2E72áj‚L[[DWIDESEAWCS_WCSServer.Controllers.SystemWIDESEAWCS_WCSServer.Controllers.System    '12éÿ3
2‚K79eWIDESEAWCS_Server.Controllers.QuartzJob.DispatchInfoController.DispatchInfoControllerDispatchInfoControllerÜ ˆ_    DispatchInfoController(IDispatchInfoService)o‚J    9WIDESEAWCS_Server.Controllers.QuartzJob.DispatchInfoControllerDispatchInfoController(~oçj‚I[[WIDESEAWCS_Server.Controllers.QuartzJobWIDESEAWCS_Server.Controllers.QuartzJob¹'á¯@
[‚HWIWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolDetailController.DeviceProtocolDetailControllerDeviceProtocolDetailController¯ ¨o    DeviceProtocolDetailController(IDeviceProtocolDetailService)‚GIWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolDetailControllerDeviceProtocolDetailController0žç6j‚F[[WIDESEAWCS_Server.Controllers.QuartzJobWIDESEAWCS_Server.Controllers.QuartzJob¹'á>¯p
‚E)'IWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolController.GetImportDataGetImportData’ Ã@=Æ    GetImportData(List<IFormFile>)<‚D?=mWIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolController.DeviceProtocolControllerDeviceProtocolControllerØ) Ñc    DeviceProtocolController(IDeviceProtocolService)t‚C =WIDESEAWCS_Server.Controllers.QuartzJob.DeviceProtocolControllerDeviceProtocolControllerkÇB(áj‚B[[WIDESEAWCS_Server.Controllers.QuartzJobWIDESEAWCS_Server.Controllers.QuartzJobú'"éð
‚A//3WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoController.GetDeviceProInfosGetDeviceProInfos”°C.Å    GetDeviceProInfos()B‚@55WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoController.DeviceInfoControllerDeviceInfoControlleroáCh¼    DeviceInfoController(DeviceInfoService, IHttpContextAccessor)‚?55WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoController._httpContextAccessor_httpContextAccessorJ$;o‚> 5WIDESEAWCS_WCSServer.Controllers.QuartzJob.DeviceInfoControllerDeviceInfoControllerËߌmp‚=aaWIDESEAWCS_WCSServer.Controllers.QuartzJobWIDESEAWCS_WCSServer.Controllers.QuartzJob[*†uQª
W‚<ycWIDESEAWCS_Model.Models.System.UserPermissions.ActionsActions‚Š i.S‚;ucWIDESEAWCS_Model.Models.System.UserPermissions.IsAppIsAppMS A ""¶¶¶¶¶¶¶¶¶¶¶¶ŸVˆ€€€€¿00.co‚L    fiƒhoƒsy‚L" "Z1scƒt2scƒu3scƒv4scƒw_boƒ_ca‚OO7di‚MDfoƒaht‚N  lo‚WMmaƒ*e‚ZLplƒnrƒcro‚cUse‚S   '   yƒ            taƒ]   e‚n]unƒ  s‚s^wc‚L         eƒacc‚N  e‚|h‚OO7pƒtƒ,    ddƒCeƒb    mƒ.
geƒ  g‚}ilƒ`  ldƒxi‚{lƒ#
p„s„    uƒ0    me‚~p
 
naƒ  c„    dƒggƒzsƒtt‚n            \                ppƒ 
"riƒ! rƒ2
tƒ\         y‚M    D    seƒa    kƒ]yƒtaƒY    c‚KeƒYi‚z  i
 
 
 
 
 
 
 
oƒhus„ t‚c
 
2
 
.ve‚` Nwc‚L          bjkƒ0naƒnooƒo    xƒ_soƒyrƒ/    cac‚OO7nƒt t‚z n 
                                 ce‚N  dbƒnes‚N  $     t‚|he‚OO7i‚K    \joƒ^keƒ
od‚zmƒgn‚K        
 
 
 
 
 
 eprƒreƒys_‚L
 
 
 
    
 
 
 
 
 
 
 
 
 
 
 
 
    
 
 
 
 
 
 
 
 
s‚L  teƒi        hƒ{    i‚M
 
D
 
    
l„ pƒx sƒy  w„ ur‚j4sƒ
tƒldatƒYuƒbnƒndaƒRdƒZwƒel‚aZs‚L          tƒ`    
ic‚MDf‚ycs‚K>miƒ. on„w„     reƒE     o‚i seƒth„uc„
 
 
lƒweƒealƒx    rƒou‚c        Y        w‚L          bsƒco‚f        tƒi 
 
 
 
 
 
uƒl d1ƒi 2ƒk aƒYi‚QNsƒei‚_Vm‚]p‚j ] xƒr fiƒ
giƒidƒ/ gƒx t‚_Vjw‚{
lm‚aZme‚]gƒpsƒ     na‚n\g„t‚j        4                u‚Z
G     
ou„
pe‚j \ l‚|oƒC qu‚}r.‚L    aƒ.c‚i
 
eƒi‚z`l‚}m‚j,rƒss‚L    
 Kt‚k Hv‚L             
 
            
 yƒ"s.ƒ?e‚L            s‚N  ot‚}taƒ#
 
 c‚j4dƒ!heƒxhƒ        m‚^Qo‚|pƒ1sƒ
     t‚]Vu‚i   v‚Q(&waƒzd„    
tƒy
xeƒl  t‚N     ryvƒ0facƒic‚z
gƒlƒ  oc‚K rƒasƒc woƒ  yp‚ycgco‚Wdeƒ`er‚}t‚Q 
 &            
 
(
"
.S     2
% /  gS :
   R,
 'R     
 =2 "(!a
 
 
    
  !}@ » ì a É c
Í
|
)    ¢    Qû”B˜—@È7³JÛTÙCà}`ƒ:i)PWIDESEAWCS_SystemServices.Sys_MenuService.SaveSave%Ӏ&v&’        &\    ?    Save(Sys_Menu)`ƒ9oPWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuGetMenu#¡_$$) $    À    GetMenu()ƒ8u!}PWIDESEAWCS_SystemServices.Sys_MenuService.GetActionsGetActions!õ
"\;!Þ¹    GetActions(int, List<ActionDTO>, List<Permissions>, int)xƒ7+5PWIDESEAWCS_SystemServices.Sys_MenuService.GetUserMenuListGetUserMenuList ‡ «) rb    GetUserMenuList(int)ƒ6/9PWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuActionListGetMenuActionList³´è    GetMenuActionList(int)lƒ5w#-PWIDESEAWCS_SystemServices.Sys_MenuService.GetTreeItemGetTreeItem# C¡Ï    GetTreeItem(int)fƒ4o1PWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuGetMenuX{JÁ    GetMenu(List<int>)ƒ3{'MPWIDESEAWCS_SystemServices.Sys_MenuService.ActionToArrayActionToArrayT ‰·:    ActionToArray(List<Permissions>) ƒ2/UPWIDESEAWCS_SystemServices.Sys_MenuService.MenuActionToArrayMenuActionToArray˜Ñ_~²    MenuActionToArray(List<Permissions>)uƒ1})3PWIDESEAWCS_SystemServices.Sys_MenuService.GetPermissionsGetPermissionsÝtİ    GetPermissions(int)Zƒ0w#PWIDESEAWCS_SystemServices.Sys_MenuService.objKeyValueobjKeyValue ÿE Mmxƒ/+5PWIDESEAWCS_SystemServices.Sys_MenuService.GetMenuByRoleIdGetMenuByRoleId # G® à    GetMenuByRoleId(int)|ƒ./3PWIDESEAWCS_SystemServices.Sys_MenuService.GetSuperAdminMenuGetSuperAdminMenu        "éø    GetSuperAdminMenu()fƒ-u!%PWIDESEAWCS_SystemServices.Sys_MenuService.GetAllMenuGetAllMenuâ
÷÷Í!    GetAllMenu()ƒ,=APWIDESEAWCS_SystemServices.Sys_MenuService.GetCurrentMenuActionListGetCurrentMenuActionList—^ /”þÅ    GetCurrentMenuActionList()&ƒ++PWIDESEAWCS_SystemServices.Sys_MenuService.Sys_MenuServiceSys_MenuService·2[°Ý    Sys_MenuService(IRepository<Sys_Menu>, IUnitOfWorkManage, IMapper)Oƒ*oPWIDESEAWCS_SystemServices.Sys_MenuService._mapper_mapperž…!dƒ)/PWIDESEAWCS_SystemServices.Sys_MenuService._unitOfWorkManage_unitOfWorkManagejG5Sƒ(_+PWIDESEAWCS_SystemServices.Sys_MenuServiceSys_MenuServiceè=/*Û/ŒNƒ'??PWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices»Õ/”±/¸
ƒ&{)ULWIDESEAWCS_SystemServices.Sys_LogService.Sys_LogServiceSys_LogService™Þ ’W    Sys_LogService(IRepository<Sys_Log>)Pƒ%])LWIDESEAWCS_SystemServices.Sys_LogServiceSys_LogService7ˆg*ÅNƒ$??LWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices
$Íñ
ƒ# -WIWIDESEAWCS_SystemServices.Sys_DictionaryService.GetAllDictionaryGetAllDictionaryR‡ÿ5Q    GetAllDictionary(IEnumerable<string>)cƒ"w'IWIDESEAWCS_SystemServices.Sys_DictionaryService.QueryQuery˜²y¬    Query(string)ƒ! +aIWIDESEAWCS_SystemServices.Sys_DictionaryService.GetDictionariesGetDictionaries±þwŽç    GetDictionaries(IEnumerable<string>, bool)ƒ  -AIWIDESEAWCS_SystemServices.Sys_DictionaryService.GetVueDictionaryGetVueDictionaryˆ²    Òj
    GetVueDictionary(string[])Kƒ75IWIDESEAWCS_SystemServices.Sys_DictionaryService.Sys_DictionaryServiceSys_DictionaryServicefùg_    Sys_DictionaryService(IRepository<Sys_Dictionary>, IUnitOfWorkManage, ICacheService)bƒ'IWIDESEAWCS_SystemServices.Sys_DictionaryService._cacheService_cacheServiceG (-jƒ/IWIDESEAWCS_SystemServices.Sys_DictionaryService._unitOfWorkManage_unitOfWorkManage ê5_ƒk7IWIDESEAWCS_SystemServices.Sys_DictionaryServiceSys_DictionaryServicesà¬f&Nƒ??IWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServicesF`.<R
<ƒ'?HWIDESEAWCS_SystemServices.Sys_DictionaryListService.Sys_DictionaryListServiceSys_DictionaryListServiceÅ  ¾m    Sys_DictionaryListService(IRepository<Sys_DictionaryList>)  ëLïN ï ’ $ À N w
÷
€    ô    U«s"È_³/´c ¦Hì)ÆTëefiƒsy‚LA15_WIDESEAWCS_SystemServices.Sys_UserService.GetCurrentUserInfoGetCurrentUserInfo…]"Þë    GetCurrentUserInfo()fƒZo1_WIDESEAWCS_SystemServices.Sys_UserService.AddDataAddData)N-u    AddData(SaveModel)oƒYu!7_WIDESEAWCS_SystemServices.Sys_UserService.UpdateDataUpdateData ¨
Ð, …w    UpdateData(SaveModel)`ƒXk-_WIDESEAWCS_SystemServices.Sys_UserService.LoginLogin<?ÿ|    Login(LoginInfo)?ƒW+A_WIDESEAWCS_SystemServices.Sys_UserService.Sys_UserServiceSys_UserService»f´A    Sys_UserService(IRepository<Sys_User>, IUnitOfWorkManage, ICacheService, ISys_MenuService)YƒVy%_WIDESEAWCS_SystemServices.Sys_UserService._menuService_menuServicež |/[ƒU{'_WIDESEAWCS_SystemServices.Sys_UserService._cacheService_cacheServicee F-dƒT/_WIDESEAWCS_SystemServices.Sys_UserService._unitOfWorkManage_unitOfWorkManage+5SƒS_+_WIDESEAWCS_SystemServices.Sys_UserServiceSys_UserService©þlœÎNƒR??_WIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices|–Örú
xƒQ}%=[WIDESEAWCS_SystemServices.Sys_TenantService.InitTenantDbInitTenantDb *Jö~    InitTenantDb(Sys_Tenant)ƒP)C[WIDESEAWCS_SystemServices.Sys_TenantService.InitTenantInfoInitTenantInfoC}o)à   InitTenantInfo(string, int)(ƒO/[WIDESEAWCS_SystemServices.Sys_TenantService.Sys_TenantServiceSys_TenantServicesâ=l³    Sys_TenantService(IRepository<Sys_Tenant>, IUnitOfWorkManage)fƒN/[WIDESEAWCS_SystemServices.Sys_TenantService._unitOfWorkManage_unitOfWorkManageQ7,WƒMc/[WIDESEAWCS_SystemServices.Sys_TenantServiceSys_TenantServiceÐ-M÷NƒL??[WIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices£½¿™ã
ƒK )eXWIDESEAWCS_SystemServices.System.Sys_RoleService.SavePermissionSavePermissionì´ÃQ©·    SavePermission(List<UserPermissionDTO>, int)ƒJ7AXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetUserTreePermissionGetUserTreePermission FŽ ÷ !Á Ý    GetUserTreePermission(int)&ƒI'EIXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetCurrentUserTreePermissionGetCurrentUserTreePermission Hd Ï öF µ‡    GetCurrentUserTreePermission()ƒH=AXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetCurrentTreePermissionGetCurrentTreePermission    `l    ï
,    Õi    GetCurrentTreePermission()ƒG#OXWIDESEAWCS_SystemServices.System.Sys_RoleService.GetChildrenGetChildrenÌbO †Ð7    GetChildren(List<RoleNodes>, int)tƒF%)XWIDESEAWCS_SystemServices.System.Sys_RoleService.GetAllRoleIdGetAllRoleIdæ ýÅÎô    GetAllRoleId()}ƒE )3XWIDESEAWCS_SystemServices.System.Sys_RoleService.GetAllChildrenGetAllChildrenŸÂˆ<    GetAllChildren(int)SƒD +YXWIDESEAWCS_SystemServices.System.Sys_RoleService.Sys_RoleServiceSys_RoleService,ã›%Y    Sys_RoleService(IRepository<Sys_Role>, ISys_MenuService, IRepository<Sys_RoleAuth>, IUnitOfWorkManage)oƒC3XWIDESEAWCS_SystemServices.System.Sys_RoleService._RoleAuthRepository_RoleAuthRepositoryÝ?aƒB%XWIDESEAWCS_SystemServices.System.Sys_RoleService._MenuService_MenuServiceÇ ¥/kƒA/XWIDESEAWCS_SystemServices.System.Sys_RoleService._unitOfWorkManage_unitOfWorkManageŠg5Zƒ@m+XWIDESEAWCS_SystemServices.System.Sys_RoleServiceSys_RoleService]    ûk\ƒ?MMXWIDESEAWCS_SystemServices.SystemWIDESEAWCS_SystemServices.SystemÔ õsÊž
ƒ>3iVWIDESEAWCS_SystemServices.Sys_RoleAuthService.Sys_RoleAuthServiceSys_RoleAuthService­ü ¦a    Sys_RoleAuthService(IRepository<Sys_RoleAuth>)Zƒ=g3VWIDESEAWCS_SystemServices.Sys_RoleAuthServiceSys_RoleAuthService7œq*ãNƒ<??VWIDESEAWCS_SystemServicesWIDESEAWCS_SystemServices
$ë
`ƒ;o%PWIDESEAWCS_SystemServices.Sys_MenuService.DelMenuDelMenu/¿/Û†/¥¼    DelMenu(int) ¯f¤- z  š ! ­ @
Ù
j    ·    Jßa§qÒ$Å^å(›<Ùb¯/‚u1^WIDESEAWCS_WCSServer.Controllers.Sys_UserController.Sys_UserControllerSys_UserController5¬C.Á    Sys_UserController(ISys_UserService, IHttpContextAccessor)t‚t5^WIDESEAWCS_WCSServer.Controllers.Sys_UserController._httpContextAccessor_httpContextAccessoré;`‚ss1^WIDESEAWCS_WCSServer.Controllers.Sys_UserControllerSys_UserController˜ßì_l\‚rMM^WIDESEAWCS_WCSServer.ControllersWIDESEAWCS_WCSServer.Controllers8 Y÷."
    ‚q)CZWIDESEAWCS_WCSServer.Controllers.Sys_TenantController.InitTenantInfoInitTenantInfo•ÏN@Ý    InitTenantInfo(string, int)9‚p!5    ZWIDESEAWCS_WCSServer.Controllers.Sys_TenantController.Sys_TenantControllerSys_TenantControllertóCmÉ    Sys_TenantController(ISys_TenantService, IHttpContextAccessor)v‚o!5ZWIDESEAWCS_WCSServer.Controllers.Sys_TenantController._httpContextAccessor_httpContextAccessorN(;d‚nw5ZWIDESEAWCS_WCSServer.Controllers.Sys_TenantControllerSys_TenantControllerÑ–\‚mMMZWIDESEAWCS_WCSServer.ControllersWIDESEAWCS_WCSServer.Controllerso •eÀ
*‚l){WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.SavePermissionSavePermissionêAU©í    SavePermission([FromBody] List<UserPermissionDTO>, int)‚k-7AWWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.GetUserTreePermissionGetUserTreePermission*TKâ½    GetUserTreePermission(int)!‚j3=AWWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.GetCurrentTreePermissionGetCurrentTreePermissionmH"¶    GetCurrentTreePermission() ‚i%/3WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.GetUserChildRolesGetUserChildRoles^zžþ    GetUserChildRoles()6‚h'1WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController.Sys_RoleControllerSys_RoleController^ÍCW¹    Sys_RoleController(ISys_RoleService, IHttpContextAccessor){‚g+5WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleController._httpContextAccessor_httpContextAccessor9;h‚f1WWIDESEAWCS_WCSServer.Controllers.System.Sys_RoleControllerSys_RoleController    “…j‚e[[WWIDESEAWCS_WCSServer.Controllers.SystemWIDESEAWCS_WCSServer.Controllers.SystemW'MQ
/‚d19eUWIDESEAWCS_Server.Controllers.System.Sys_RoleAuthController.Sys_RoleAuthControllerSys_RoleAuthControllerƒÐ |_    Sys_RoleAuthController(ISys_RoleAuthService)l‚c9UWIDESEAWCS_Server.Controllers.System.Sys_RoleAuthControllerSys_RoleAuthControllerroÞd‚bUUUWIDESEAWCS_Server.Controllers.SystemWIDESEAWCS_Server.Controllers.System³$Ø ©:
j‚a%OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.DelMenuDelMenu-7Ғ    DelMenu(int)q‚`}?OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.SaveSave¨ÏúrW    Save([FromBody] Sys_Menu)v‚_ #-OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.GetTreeItemGetTreeItem 'Aɟ    GetTreeItem(int)g‚^OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.GetMenuGetMenuvˆ7<ƒ    GetMenu()s‚] #'OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.GetTreeMenuGetTreeMenuÔ êH¥    GetTreeMenu()/‚\1OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController.Sys_MenuControllerSys_MenuControllerÊACÃÁ    Sys_MenuController(ISys_MenuService, IHttpContextAccessor)t‚[5OWIDESEAWCS_WCSServer.Controllers.Sys_MenuController._httpContextAccessor_httpContextAccessor¥;`‚Zs1OWIDESEAWCS_WCSServer.Controllers.Sys_MenuControllerSys_MenuController.uõñy\‚YMMOWIDESEAWCS_WCSServer.ControllersWIDESEAWCS_WCSServer.ControllersÊ ëÀ¬
‚X/QKWIDESEAWCS_Server.Controllers.System.Sys_LogController.Sys_LogControllerSys_LogControllert· mU    Sys_LogController(ISys_LogService) Í( Gˆ
    Ø    Š    @â€2Êbú’,Æb¦H Åo³Mç á ƒ '
É
["È^ ø Ž (} ÚÀr
uii‚L"
[~k1 ÍucjWIDESEAWCS_Model.Models.Dt_FormulaDetail.IdId=3Üß ysT„C]-jWIDESEAWCS_Model.Models.Dt_FormulaDetailDt_FormulaDetail3úÎ_c„s9rWIDESEAWCS_Tasks.W_PLCDBName.wrealYDirectionHeight3wrealYDirectionHeight38TTg„w=rWIDESEAWCS_Tasks.W_PLCDBName.wrealXDirectionDistance3wrealXDirectionDistance3®:ññc„s9rWIDESEAWCS_Tasks.W_PLCDBName.wboolLocation3ScanDonewboolLocation3ScanDone(7hhc„s9rWIDESEAWCS_Tasks.W_PLCDBName.wboolLocation2ScanDonewboolLocation2ScanDoneÈ7c„s9rWIDESEAWCS_Tasks.W_PLCDBName.wboolLocation1ScanDonewboolLocation1ScanDoneh7¨¨S„c)rWIDESEAWCS_Tasks.W_PLCDBName.wboolAutoPausewboolAutoPause5PPS„c)rWIDESEAWCS_Tasks.W_PLCDBName.wboolAutoStartwboolAutoStart¼5úúCƒE#rWIDESEAWCS_Tasks.W_PLCDBNameW_PLCDBName¢ ²¾–Ú:ƒ~--rWIDESEAWCS_TasksWIDESEAWCS_Tasksâuý
[ƒ}k18WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight3rrealDetectHeight3Ò9[ƒ|k18WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight2rrealDetectHeight2t9¶¶[ƒ{k18WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectHeight1rrealDetectHeight19XXaƒzq78WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectScrewAnglerrealDetectScrewAngle´:÷÷cƒys98WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectScrewTorquerrealDetectScrewTorqueQ:””cƒxs98WIDESEAWCS_Tasks.R_PLCDBName.rrealDetectPressHeightrrealDetectPressHeightî:11eƒwu;8WIDESEAWCS_Tasks.R_PLCDBName.rboolLocation4ScanStartrboolLocation4ScanStart7ÍÍeƒvu;8WIDESEAWCS_Tasks.R_PLCDBName.rboolLocation3ScanStartrboolLocation3ScanStart,7lleƒuu;8WIDESEAWCS_Tasks.R_PLCDBName.rboolLocation2ScanStartrboolLocation2ScanStartË7  eƒtu;8WIDESEAWCS_Tasks.R_PLCDBName.rboolLocation1ScanStartrboolLocation1ScanStartj7ªªKƒs[!8WIDESEAWCS_Tasks.R_PLCDBName.rboolErrorrboolError6U
U
_ƒro58WIDESEAWCS_Tasks.R_PLCDBName.rboolOnlineExecutingrboolOnlineExecuting·8øø[ƒqk18WIDESEAWCS_Tasks.R_PLCDBName.rboolAutoExecutingrboolAutoExecutingZ8››GƒpW8WIDESEAWCS_Tasks.R_PLCDBName.rboolEMGrboolEMG 3HHKƒo[!8WIDESEAWCS_Tasks.R_PLCDBName.rboolHeartrboolHeart¼3ø
ø
CƒnE#8WIDESEAWCS_Tasks.R_PLCDBNameR_PLCDBName¢ ²{–—:ƒm--8WIDESEAWCS_TasksWIDESEAWCS_TasksŸuº
i„    y?rWIDESEAWCS_Tasks.W_PLCDBName.wrealScrewDownsetDistancewrealScrewDownsetDistanceþ:AA[„k1rWIDESEAWCS_Tasks.W_PLCDBName.wrealProductHeightwrealProductHeight¡8ââY„i/rWIDESEAWCS_Tasks.W_PLCDBName.wrealProductWidthwrealProductWidthE8††[„k1rWIDESEAWCS_Tasks.W_PLCDBName.wrealProductLengthwrealProductLengthè8))c„s9rWIDESEAWCS_Tasks.W_PLCDBName.wboolLocation4ScanDonewboolLocation4ScanDoneˆ7Èȁƒ[15_WIDESEAWCS_SystemServices.Sys_UserService.GetCurrentUserInfoGetCurrentUserInfo…]"Þë    GetCurrentUserInfo() oK„B;;jWIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°Èg¦‰
c„s9rWIDESEAWCS_Tasks.W_PLCDBName.wrealYDirectionHeight2wrealYDirectionHeight2M8ŽŽg„w=rWIDESEAWCS_Tasks.W_PLCDBName.wrealXDirectionDistance2wrealXDirectionDistance2è:++c„ s9rWIDESEAWCS_Tasks.W_PLCDBName.wrealYDirectionHeight1wrealYDirectionHeight1‡8ÈÈg„ w=rWIDESEAWCS_Tasks.W_PLCDBName.wrealXDirectionDistance1wrealXDirectionDistance1":eeW„ g-rWIDESEAWCS_Tasks.W_PLCDBName.wDintAutoScrewOnwDintAutoScrewOnÅ:c„
s9rWIDESEAWCS_Tasks.W_PLCDBName.wrealScrewTorqueOutputwrealScrewTorqueOutputd8¥¥uƒ\s?_WIDESEAWCS_SystemServices.Sys_UserService.ModifyPwdModifyPwd
ƒ°    à„–Π   ModifyPwd(string, string) $$2ŸTˆ€€€€¿,âƒJ0gge‚}htƒx in‚v [sƒleƒzo‚vseƒ%9th„hco‚c  eaƒoiƒx   s‚OO7il‚i
\    n‚K    orƒ
 sƒ  reƒC
seƒ=  t1ƒ{2ƒ|3ƒ}t‚N  ial‚{ca‚z n  e‚O A       t‚M        D        de‚L          t„er‚zsƒ!fi‚z    y‚ycghƒx ld‚i \
eƒ   sƒ` tƒneƒr
f‚K
& _ 
gƒZi‚q_mƒ. r‚} on‚M
 
 
 
 
 
 
 
                 )        scƒip‚Ks‚j
E    
t‚T0
Rte‚_    V    oƒ  t‚q_yƒzaƒ 
e‚{jkeƒ0obƒ^wt‚{ ken‚| tƒ     yƒ0maƒ     lac‚|dƒbsƒauƒqcdƒnhƒEjƒ^deƒxiƒ#r‚i \ ea‚cYc‚fiƒ/ 
mƒpn„r‚K rs‚iWheƒoinƒr    s‚TD
 z‚{lcƒEdƒ#e‚Kmƒ-oƒt rƒFme‚aLoaƒcƒt g‚W    (2nƒrpr„roƒFsc„    eƒ`teƒueƒ0
manƒ     pƒ
    "uƒ
en‚Z    G     inƒ. s‚j    E    maƒguƒhod‚y[prƒ seƒ     ulƒanƒh        n1sƒt2sƒu3sƒv4sƒwagƒ  m‚~p        n‚n\r‚M    D     uƒ ce„    o‚zdo„ecƒieƒr fiƒo‚K & _  gdƒ`lƒzsƒZt„icƒh  t‚q,  liƒ,
<meƒ.neƒire‚} se„    tƒttc‚n
 
dƒQ
e‚N                      i‚q
_
mƒ,
oƒ2 r‚K        sƒM
 
t‚j
^
u‚x
Q
 
uaƒ,bƒ/c‚Zlƒ7 sƒ(oadƒrƒ2     bjƒ0caƒt eƒckƒ    o‚K de‚zi‚ycuƒ            exƒq
faƒiƒ 
 
wƒ  gc‚Wi‚v
[sƒ%ke‚|
laƒqe‚cF     *hƒol‚K oƒrmaƒmƒgpƒ n1ƒt  2ƒu  3ƒv  4ƒw  a‚M      6     
 c‚ze„fƒ lƒ,
 <nƒisƒ1     t‚K
 
        =
olƒo    paƒm
eƒ r1ƒh2ƒjiƒ
 kƒ
 
 
 
 
mƒaqƒy tƒhyƒCseƒc iƒCtƒ  k
ut„
wn„     xiƒ_pasƒt‚Ku„ co‚N  daƒYer‚j           " inƒ la‚|cƒ^
orƒhsƒC peƒ "iƒ reƒx oƒ     U#ut„
wd‚y]que‚}%Wr.c‚L    fƒhƒ_pƒnadƒ.    yƒ2 boƒoch‚io‚s         eaƒx                 s+S
 
 
 q   
              
 
 
U O
>
 
 + 
 
 
O
 
 
    
 
 
 
.g
 
 
 
.
 
d2 
 
 
 
     / 
  yÌ¢y'5SymbolIX_Symbol_DocumentId529 7 1 1(?SymbolIX_Symbol_UnqualifiedName529 2255SymbolCompletion_idxSymbolCompletion_idx15 2 1 ((ހ€ŸPˆ€€€€¿$0ree‚]  
J 
gƒn‚j4 
p‚|G q‚}sƒxwƒy        ia‚{eƒ! f‚znƒ[zƒ
     kmƒ     lo‚}maƒ    eƒ7i‚jEuƒaocƒcd„fƒ         l‚K  
 
: pƒ
rƒs    quƒyraƒ2 e‚j4oƒss.‚L   eƒ K        taƒcƒhiƒr‚k^ve‚L    i‚O
A
           
       yc‚Ml‚TDsƒs.s‚L! !Z_d‚MDl‚WMm‚ZLr‚cUs‚S   '               t‚n]   u‚s^w‚L         av‚` Ncaƒt oƒirƒy  ea‚L          r‚L                    
 
 
 
        
tƒ  N$heƒxinƒc    o‚j E  tƒCksƒ]ocƒr‚N  pa‚Kse‚L  hƒxi‚j E
 o‚N  taƒa         c‚Te‚L%"" "%      oƒ
sƒ  upƒ.wa‚}g‚vynƒs‚L#   ##        tac‚N     Diƒ`  lƒ#
n„    rƒa     sƒJ   ch‚K|o‚T  xu‚j4dbƒQ iƒ!hecƒx                        dƒD
 
m‚L&##    
#&3    
 n‚n\rƒx‚N
 
 
 
 
rhc‚c  eƒ{    oƒ
 
 
 
rƒC    sƒ=  in‚q _ !o‚M                  %                        <        tƒle„ me‚^N oaƒ2 eƒq    fƒ  k‚|    mƒpƒm    rƒC% s„    pc‚N  eƒ1rƒx u„
re‚]      J     o‚K        scƒy  eƒ 
 3  uƒ.te‚q_p‚N  r‚]  K upƒ s‚i  ?  vi‚zu‚QNwi„ ymƒuacƒ,byƒ/co‚Z        t„   ed‚QNo„
rƒ"s‚}laƒaeƒiƒ7 niƒ  
 
pdƒYeƒ.rr‚j4se‚i 0                & tƒ
teƒlh‚c  &    2  iƒqoƒip„
valƒ0ep‚l_r‚L    ic‚O A      
 
   e‚zue‚QNw_pƒag‚}nƒzbo„cs‚L                                                                                                                  do„     ebƒgl‚vid‚L              ns„    orƒ                      re„toƒy xecƒl inƒ_ta‚N     yco‚Mli‚TDmoƒncƒ    pw‚ycroƒ/
s_‚M$    eƒ
 
 
 
 
k (
 5s 
.
SA 
2  
 
2 
X 
O    5 
     4t    \V    e àÞ    âÜÖÐÊľ¸²¬¦ š”Žˆ‚|vpjd^XRLF@:4.("
þøòìæàÚÔÎȼ¶°ª¤Œ†€ztnhb\VPJD>82,&  ü ö ð ê ä Þ Ø Ò Ì Æ À º ´ ® ¨ ¢ œ –  Š „ ~ x r l f ` Z T N H B < 6 0 * $     Ù Ò Ë Ä ½ ¶ ¯ ¨ ¡ š “ Œ … ~ 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*#ùòëäÝÖÏÈÁº³cƒ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/.    -    ,+ *’&’’’’
    ’    ’ü’õ’î ’ç’à    ’Ù
’Ò    ’Ë    ’Ä’½’¶ ’¯’¨ # wpib[TM F?8 1
* #         ~ }|{ zyx    w    vutsrqponmlkji hgf edc ba`_^]\    [ZY X WVUTS RQPONMLKJIHGFE DCBA@? >è :9876543210/.-,+*)('&%$#"
!           
        B2ÁNG@92+$ ú ó ì å Þ × Ð É Â » ´ ­ ¦ Ÿ ˜ ‘ Š ƒ | 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    *    #                    ùùòëäÝÖÏÈQJC<5.'  ýöïèáÚÓÌž·°©¢›”†xqjc\UëäÝÖÏÈC<5.'  Ìž·°©¢›”†xqjc\UÁº³¬¥ž—‰‚{tmf_XQJýöïèáÚÓòº³¬¥ž—‰‚{tmf_XNG@92“““ ““!              
         “’’~’} ’|’{ ’z’y…8…7…6…5…4…3…2…1…0srqponml kji h
g f    e    dcb„G „F „E„D„C„B“ƒ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“ ““ “ “  “ “
 “    “
““
““““‚
ƒ\ƒ[ƒZƒYƒXƒW ƒV
ƒU õžõ
 
 
¨¨¨¨¨¨¨¨¨¨¨»fo‡=pr‡?ta‡9ade Z‚€€€‚F0ato‡~cat‡~ om‡~,€€€¼LJ0.mo‡I_ba…+  o…ƒ,fo… ƒ,mo‡I pr„    ƒ-ta…ƒ- ade…!ƒ-    il…    ƒ  ll‡Iu‡F    me‡I
nd „ƒ-g&rd se… ƒ-    i…+k…ƒ-to…'ƒ+wc„ƒbas…+  ox…ƒcat…'ƒ+      es„    ƒ-in…+jo…ƒ'od„  ƒ,    m„ƒ    n…(ƒ+re%s_„
 
ƒ
 
tc‡Ie…(ƒ+                        n‡Iut…+ƒ5d17ˆY 8ˆ[ 9ˆ] 20ˆ_ ar el‡Is„ƒt…     ƒ    
t_‡Iuc‡Heaw„ƒct…(ƒ+
­€€€©    ’0.mo„Z„6_fo„[„=mo„Z„6  prˆbHail„k„=llˆdHuˆhme„^„5
nc„b„6dˆirdˆiut„d„=wc„Z„6ce1„e„=2„g„=3„i„=sˆbHod„]„5    mˆgre„b„; s_„Z„6
 
tc„]„5h„a„=i„e„8l„_„=n„^„5w„`„=darˆiel„Z„6s„Z„6t„k„=in„d„=r„e„8s„b„6   ow„b„=t_„[„6h„`„= uc„]„4eaw„Z„6ct„e„8ig„a„4
   l.„Z„6s„Z„6ng„_„=
tˆgou„c„= se„Z„6sˆb?    tˆiuˆlta„k„=cˆdHd„b„= wd„b„=o„d„= t„c„=ffnˆjneˆjor„[„=ght„a„4 th„_„= hei„a„4       t1„f„=2„h„=3„j„=ide„Z„6t„`„=
ffˆjgh„a„4 ls„k„=nfˆbH t„d„=on„e„8                        vˆhre„e„8st„b„6   l.m„Z„6en„_„=    tˆdHleˆdHueˆhmod„Z„6  poˆgul„[„=nam„^„5    ce„b„6뀀€›J
‰D
0rea„ c ‚|
 
 
 
 
 
…5p9„us#ˆw‚e …+  mu‚Na„w.oc‚J…Gdˆqu    ˆ        siˆtcƒhvi8ƒ#¸€€€–d%0_boŒvfoŒxprŒztaŒtadeŒyilŒwndŒ~seŒxkŒttoŒwcŒtboxŒvcan tŒesŒzjoŒu €€€” Š0_boOfoQprSunTadeRgeTilPnaTdXseQtoYboxOcanftYesSjoNomXnZteZuted17^8`9b20detPlefectZued1Z2\onfrvOscfsStaPxeetWforQsSwoTgdePseOhanficaYeOlsPneffSgOscZtoTjobNkmaTladRsQcjNeofinfsePmanTmaXuYulQnYnagTdlfecZsffoSgdPsOicYtTlifneZoceSfwTmmXnlfnZr1Y2[kTmQtYseSxiOplcNorYroSr17]8_9a20ckmTmuQocStcYviOscafoZerOtVinSsiStaiPcoYedZxWofTrYÁ€€€‚v£0_bo!Œ€€€€‚F0ato“    cat“     om“    ica“     mmu“    un“        nic“     omm“    r1“    t“    por“    r17“    tc“    tco“    or“    uni“    
                                    [ˆ€€€€:R0yst‚L$!! !$3     vaƒ0zatƒ  efƒ
j‚{    .     ·ê`¤@ÜÙuQûšó¯êŽ; ï “ 5 × w  ª F
Ñ
u
    ¹    ]    ±[ùùùùykèC-c3†WIDESEAWCS_Tasks.PLCJob._processInfoService_processInfoService,9Ôg7†WIDESEAWCS_Tasks.PL·ñc3¤WIDESEAWCS_Tasks.PLCJob._processInfoService_processInfoService,9·˜g7¤WIDESEAWCS_Tasks.PLCJob._formulaDetailService_formulaDetailServiceèÁ=·;[+¤WIDESEAWCS_Tasks.PLCJob._formulaService_formulaService¨‡1·êe5¤WIDESEAWCS_·ËY)µWIDESEAWCS_Tasks.PLCJob._boxingService_boxingService+ /·|;µWIDESEAWCS_Tasks.PLCJobPLCJobæ9T·9ž·@--µWIDESEAWCS_TasksWIDESEAWCS_Tasks ±9¦–9Á
A…87sWIDESEAWCS_BasicInfoService.BoxingDetailService.IsComponentCodesEqualIsComponentCodesEqual?¼z=³    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)`…7!sWIDESEAWCS_BasicInfoService.BoxingDetailService.RepositoryRepository
)
ú:K„DcjWIDESEAWCS_Model.Models.Dt_FormulaDetail.IdId=3Üß ysT„C]-jWIDESEAWCS_Model.Models.Dt_FormulaDetailDt_FormulaDetail3úÎ_/9C*WIDESEAWCS_Tasks.PLCJob.setsetI1W·A#…63osWIDESEAWCS_BasicInfoService.BoxingDetailService.BoxingDetailServiceBoxingDetailService“å Œd    BoxingDetailService(IRepository<Dt_BoxingDetail>)^…5k3sWIDESEAWCS_BasicInfoService.BoxingDetailServiceBoxingDetailService‚;
³S…4CCsWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè»Þá
<…37rWIDESEAWCS_BasicInfoService.IBoxingDetailService.IsComponentCodesEqualIsComponentCodesEqual›
º®n    IsComponentCodesEqual(List<Dt_BoxingDetail>, List<Dt_FormulaDetail>)a…2!rWIDESEAWCS_BasicInfoService.IBoxingDetailService.RepositoryRepository~
‰Z7a…1m5rWIDESEAWCS_BasicInfoService.IBoxingDetailServiceIBoxingDetailServicePÒ
S…0CCrWIDESEAWCS_BasicInfoServiceWIDESEAWCS_BasicInfoServiceè ÞF
èalWIw‹+_/I*WIS!i´WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height3Height3  9 ¸ À bkS i´WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height2Height2 i9       «kSi´WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height1Height1
²9 J R
ôkYo!´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewAngleScrewAngle    ö:

 
›
9o[q#´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewTorqueScrewTorque    9:    Ó     ß     |p[q#´WIDESEAWCS_Model.Models.Dt_ProcessInfo.PressHeightPressHeight|:         " ¿pYo!´WIDESEAWCS_Model.Models.Dt_ProcessInfo.TestResultTestResultÌ5Z
e 
hr9´WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStandardStiffnessValueStandard 6žµ Kwaw)´WIDESEAWCS_Model.Models.Dt_ProcessInfo.StiffnessValueStiffnessValueX4æõ •ml3´WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueStandardTorsioValueStandard›6-A Út[q#´WIDESEAWCS_Model.Models.Dt_ProcessInfo.TorsioValueTorsioValueê4x „ 'j]s%´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ComponentQtyComponentQty75Æ Ó uk[q#´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ProductNameProductNameu5   ³z[q#´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ProductCodeProductCode³5R ^ ñzYo!´WIDESEAWCS_Model.Models.Dt_ProcessInfo.PalletCodePalletCodeð6‘
œ /zI_´WIDESEAWCS_Model.Models.Dt_ProcessInfo.IdId73ÖÙ ssPY)´WIDESEAWCS_Model.Models.Dt_ProcessInfoDt_ProcessInfo - ¦Î K;;´WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Models°È ¦ /
a„Gy'jWIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentNameComponentNamem5  «|a„Fy'jWIDESEAWCS_Model.Models.Dt_FormulaDetail.ComponentCodeComponentCode©5H V ç|Y„EqjWIDESEAWCS_Model.Models.Dt_FormulaDetail.FormulaIdFormulaIdõ7ˆ    ’ 5j ##)))݀))))ŸU€€€€¿.0.moƒ*‡26_ba:„u  oƒ_ˆzfo‚Na‡2gmoƒ* ‡2 6 pr‚JˆH3taƒ]ˆ{ ade‚Oa ˆ    id„El9U‚Man   †OV  ll‹u‹          x„ y„ meƒ* ‡1
7
nc‚}‡ld ‚EˆK.g&‹rd ‹seƒaˆ{    i:„ukƒ]ˆ{toƒhut
ƒ‡swc:E‚Een†@6.bas:„u  ox9Y‚JQ‡$catƒhe1 ƒ‡s2 ƒ‡s3ƒ‡ss‚JˆH3in:„ujoƒ^ˆuodƒ* m  †?    6    m‚I\l†x2nƒire‚e ‡q 9s_:E‚Ee
n
 
†@
6
.
tcŠ[7eƒihŠti ‚|      ‡nlŠtnŠ[7wŠtutƒldar ‹elƒ*‡26s:E‚Een†<6.t9U‚Ma n    †OV    
in
ƒ‡sr ‚|‡ns‚}‡l   owŠtt_ƒ*‡26hŠt ucŠZ3eal„ w:E‚Een†@6.ct ‚Y!      ‡nuƒld1ƒi2ƒkig‚d‡j
   2l.ƒ*‡26sƒ*‡26ngŠt
tƒ(l
 
†xou    Št po9„uqu…3rv8ƒ#M‡$
 se:E‚Een†<6.s‚?ˆH    (t ‹ u#‹ta9U‚Ma n
        †OV
 c‹dŠt wa&‹dŠto
ƒ‡s t    ŠX:xeƒltƒfˆ{ffn!‹ne!‹or‚Na‡0gs:ƒ(M‡* gde9ƒ$Q‡%ht‚d‡j 2
idle&‹    seƒ_ˆ{thŠt hei‚d‡j       2t1 ‚f‡s92‚g‡s83‚h‡s7ibo<„ucaƒhe8ƒ#M‡$ i:„ude:E‚Een†@6.tŠt
ff!‹gh‚d‡j 2    ls9U‚OO   †OV nf:^‚JM†w 3
g9Y‚JQ‡$t
ƒ‡son ‚|‡n                        v‹re ‚|                        ‡nscƒiHt‚}‡l   to9„ujobƒ^ˆul.mƒ*‡26ad‚Oa
ˆi„Esƒaˆ{cjƒ^ˆuenŠt    t‹le‹se9ƒ$O  ‡%ue‹
 
  xd„ yd„ manƒgˆ{maƒgˆ{uƒhodƒ* ‡2 6 poƒ(l†xul‚Na‡0gnƒhnamƒ* ‡1    7    ce‚}‡lda ‹i ‚}‡o   ecƒinƒ(l        †xs!‹fo:^‚JM†w 3 gd9ƒ$Q‡%il&‹sƒ_ˆ{tŠt he ‚}‡o   icƒhneƒiseŠt
ta
ƒ‡scƒ0    m  nƒ0    q‹    oce‚JˆH3deƒ& m†<
3    
uŠZ3mmƒgˆxpƒ(l†xnd ‚}‡o
 
 
eƒ(l†xh ‚}‡o
 
 
nƒir1ƒh2ƒjm‚Na‡0gq    ŠX:s‹tƒhy9„u        sc
ƒ
‡s    e:ƒ(M‡* i9„uut    Št va‹wnŠtxi9Y‚JQ‡$pal‹lcƒ^ˆuonƒ(l†xrƒhs9„u (  $
 
    $"
!$#$
6
 
)(6# 
)#;8   9*
)
 
 
 
8 9     8$
8%!77#
 
  $    
 
 
         
 
3(  "  ÜyÿVÜœœœœœœœœ€€€–d%0_boŽffoŽhprŽjtaŽd€€d(0cS€€‚o0_bo’{box’{erv’{
gse’{ice’{ ng’{ngs’{oxi’{rvi’{ ser’{    vic’{ xin’{                                        / €€€€d(0cjo’zjob’zlcj’zplc’z            œ€€€€‚"}0_ta’y ask’ywc’ycs_’y
des’yeaw’yse’yide’ys_t’y ea’yks’ytas’y wcs’y    id’y                                    €€€˜4€0_bo’^fo’`pr’bta’\un’cade’age’cil’_na’cd’gse’`k’\to’hwc’\box’^can’ut’hes’bjo’]om’gn’is_’\te’is’wut’td17’m8’o9’q20’ses’\t’_le’ueaw’\ct’iu’td1’i2’ke’wof’xn’upr’vrv’^sc’ue’\s’bta’_e’wxe’tt’fffl’xli’x݀€v00and“com“man“ma“omm“            ž€€<0ext“tex“    |€€( 0set“d€€d(0cjo“job“lcj“plc“            .€€€‚:ˆ0_un“age“na“fwo“ito“kma“ man“ nag“it“ofw“rk“
rkm“ tof“uni“wor“                                                ‹€€€‚\—0_pr’ces’erv’ss’fos’ ice’nf’
nfo’ oce’se’ pro’roc’vi’ser’in’    si’vic’                                        ׀€€ƒª0_fo’~ade’~    il’~ det’~
erv’~ta’~ for’~ice’~ls’~lad’~se’~mul’~orm’~rmu’~vi’~ser’~tai’~ ula’~vic’~                                                    €€€‚x0_fo’}ase’}    erv’} for’}ice’}las’}mul’}orm’}rmu’}vi’} ser’}sœ€€€€jd0con“ te“     d18“  ect“ d1“  isc“ nec“ ne“ onn“ sco“ ted“ 
                            !˜€€€€‚F0ato“ cat“  om“ ica“  mmu“ un“     nic“  omm“ r1“ t“ por“ r18“ tc“ tco“ or“ uni“ 
                                    s”€€€€jd0con“
te“
    d17“
 ect“
d1“
 isc“
nec“
ne“
onn“
sco“
ted“
 
                            Ž€€€€ž#0pre$‹o‚Fˆ0/ut    Štqty‹ ua…3e    ŠX
:
rea„ c ‚|
 
 
 
 
 
‡np9„us#‹w‚e ‡q 9mu‚Na‡0goc‚JˆH3dŠZ3qu    ŠX    :    si‹tcƒhvi8ƒ#M‡$  s_b:„u  mƒ* ‡2 6 tƒ]ˆ{ coƒiHr‚e ‡q
9ea:E‚Een†@6.q…3r8ƒ#M‡$    
t‚]ˆ dhe$‹ic:„un‚JˆH 3    o‹t9„uksƒ]ˆ{sh$‹i‚JˆH
3v!‹        ta‚j‡l/ i!‹r#‹ul#‹va!‹
 
t_fƒ0‡2p‹ai9U‚Man 
 
†OV  n‚j‡l/sƒ]ˆ{ u
ƒ‡sco‚L\
m  †?6diŠt edƒis#‹xƒfˆ{heŠtif!‹o ‚|      ‡nleŠtnaƒ*
‡17or9L‚CH†F4s
ƒ    ‡spu    Štqt‹
re#‹wiŠtual…3ctŠZ3eo    Št s ‹ la‚Na    ‡0    gt#‹    niƒhteƒlo
ƒ‡sp    Štval‹  ic8ƒ#M‡$  wan&‹cs:E‚Ee    n        †@    6    .    di„ oŠtid:E ‚Een†@    0.nsŠt    on
ƒ‡sre„ to    ŠX:xdi ‚}‡oecƒlin9Y‚JQ‡$ydi ‚}‡o 3 6"(    9
"$
8  .
 
)-
%     
 
6 ) ) 
    
9 $
)  " -u¢FðšD ö « c      ¯ Q õ — +
Å
c    ù    “    )ÃYó£c'Ø},Ïv!_&è¤L¬a
½fÂußßßJ“W'èWIDESEAWCS_Tasks.PLCJob.IsConnected19IsConnected19 I ="T“ a1èWIDESEAWCS_Tasks.PLCJob.portCommunicator19portCommunicator19
ì
Õ_J“ W'èWIDESEAWCS_Tasks.PLCJob.IsConnected18IsConnected18
ª"T“ a1èWIDESEAWCS_Tasks.PLCJob.portCommunicator18portCommunicator18
Y
B_J“
W'èWIDESEAWCS_Tasks.PLCJob.IsConnected17IsConnected17
#
"T“    a1èWIDESEAWCS_Tasks.PLCJob.portCommunicator17portCommunicator17    Æ    ¯_H“U%èWIDESEAWCS_Tasks.PLCJob.IsConnected2IsConnected2         „!R“_/èWIDESEAWCS_Tasks.PLCJob.portCommunicator2portCommunicator2    5    ]H“U%èWIDESEAWCS_Tasks.PLCJob.IsConnected1IsConnected1     ô!U“_/èWIDESEAWCS_Tasks.PLCJob.portCommunicator1portCommunicator1b#¥Ž]A“KèWIDESEAWCS_Tasks.PLCJob.commandcommandì:G/3;“EèWIDESEAWCS_Tasks.PLCJob.TextTextƒ:ÞÆ&6“CèWIDESEAWCS_Tasks.PLCJob.setsetD,W>“I‚èWIDESEAWCS_Tasks.PLCJob.PLCJobPLCJobõä?î5    PLCJob(IBoxingService, IBoxingDetailService, IFormulaService, IFormulaDetailService, IProcessInfoService, IUnitOfWorkManage)R“_/èWIDESEAWCS_Tasks.PLCJob._unitOfWorkManage_unitOfWorkManageÓ°5V’c3èWIDESEAWCS_Tasks.PLCJob._processInfoService_processInfoService“n9Z’~g7èWIDESEAWCS_Tasks.PLCJob._formulaDetailService_formulaDetailServiceO(=N’}[+èWIDESEAWCS_Tasks.PLCJob._formulaService_formulaServiceî1X’|e5èWIDESEAWCS_Tasks.PLCJob._boxingDetailService_boxingDetailServiceЪ;L’{Y)èWIDESEAWCS_Tasks.PLCJob._boxingService_boxingService’r/9’z;èWIDESEAWCS_Tasks.PLCJobPLCJobMhNùOC=’y--èWIDESEAWCS_TasksWIDESEAWCS_TasksOLýOg
Msa¸WIDESEAWCS_Model.Models.Dt_Formula.DetailsDetails . 6 µŽcru/¸WIDESEAWCS_Model.Models.Dt_Formula.YDirectionHeight3YDirectionHeight3 ô8 ‹  5ugqy3¸WIDESEAWCS_Model.Models.Dt_Formula.XDirectionDistance3XDirectionDistance3 .: É Ý qycpu/¸WIDESEAWCS_Model.Models.Dt_Formula.YDirectionHeight2YDirectionHeight2
n8  
¯ugoy3¸WIDESEAWCS_Model.Models.Dt_Formula.XDirectionDistance2XDirectionDistance2    ¨:
C
W     ëycnu/¸WIDESEAWCS_Model.Models.Dt_Formula.YDirectionHeight1YDirectionHeight1è8        ‘     )ugmy3¸WIDESEAWCS_Model.Models.Dt_Formula.XDirectionDistance1XDirectionDistance1":½Ñ ey_lq+¸WIDESEAWCS_Model.Models.Dt_Formula.DintAutoScrewOnDintAutoScrewOnb:û ¥scku/¸WIDESEAWCS_Model.Models.Dt_Formula.ScrewTorqueOutputScrewTorqueOutput¢89K ãuij{5¸WIDESEAWCS_Model.Models.Dt_Formula.ScrewDownsetDistanceScrewDownsetDistanceÛ:v‹ z[im'¸WIDESEAWCS_Model.Models.Dt_Formula.ProductHeightProductHeight8¶ Ä `qYhk%¸WIDESEAWCS_Model.Models.Dt_Formula.ProductWidthProductWidthd8û  ¥p[gm'¸WIDESEAWCS_Model.Models.Dt_Formula.ProductLengthProductLength¨8? M éqWfi#¸WIDESEAWCS_Model.Models.Dt_Formula.ProductNameProductNameæ5… ‘ $zWei#¸WIDESEAWCS_Model.Models.Dt_Formula.ProductCodeProductCode$5à Ï bzEdW¸WIDESEAWCS_Model.Models.Dt_Formula.IdIdk3
 §sHcQ!¸WIDESEAWCS_Model.Models.Dt_FormulaDt_FormulaE
a è
?Kb;;¸WIDESEAWCS_Model.ModelsWIDESEAWCS_Model.Modelsì Gâ i
S!i´WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height3Height3  9 ¸ À bkS i´WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height2Height2 i9       «kSi´WIDESEAWCS_Model.Models.Dt_ProcessInfo.Height1Height1
²9 J R
ôkYo!´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewAngleScrewAngle    ö:

 
›
9o[q#´WIDESEAWCS_Model.Models.Dt_ProcessInfo.ScrewTorqueScrewTorque    9:    Ó     ß     |p óóJÐ'­n¿2Â0.
Œ߀€€¿2Â0.mo‹t6f_boŒZIfo‹ugImo‹t6f p…€€v00cut“ecu“xe“ute“xec“            s°€€€€jd0con“te“    d20“ ect“d2“ isc“nec“ne“onn“sco“ted“
                            !¬€€€€‚F0ato“cat“ om“ica“ mmu“un“    nic“ omm“r2“t“por“r20“tc“tco“or“uni“
                                    s¨€€€€jd0con“te“    d19“ ect“d1“ isc“nec“ne“onn“sco“ted“
                            !¤€€€€‚F0ato“ cat“  om“ ica“  mmu“ un“     nic“  omm“ r1“ t“ por“ r19“ tc“ tco“ or“ uni“ 
                                    š €€€€´ 0.mob_bo$…Vfo&<…mob pr(…Wta"…W un“ade'…W    ge“il%L…      mef
na“cjd,…Gse&…W    k"…Wto-…Nutlwc"@…box$…Vcan:t-…N  e1m2o3qs(…Wjo#…Qode    m,…Mn.…Nrej s_"@
…
tcee.…N        hiimlgnfs<whut9d1728496208elbs"@…t%7…        
inlrmsj   le:owjt_chh uceeaw"@…ct.1…u9d1.…P 20…P e<igi
   l.bsbngg
of=n:uk pr;rv$…S
 sc:e"@…s(…Dta%L…    
 dj e<wdjol tkxe9t+…Xffl=li=or&<…s(…W wo“gde%…Whti se$…Wthg han:eii       t1n2p3rica-…N  e$…S de"@…th
ghi ls%L…     ne:f(…W
g$…Vtlonm                        remsc.…Ntj   to“job#…Qkma“ l.mbad'…Ws&…Wcj#…Qed<ng    o:p;in:se%…Uman,…T ma,…Xu-…Nodb ul&<…n-…N        nag“mf    cejdim   l:ec.…Ns:fo(…W gd%…Ws$…Wtg hen   ic-…N  t“li:ne.…Nsej
taloce(…Wdeb
ueff=w“mm,…Mndm
 
 
hn
 
 
l:n.…Nr1-…P2/…Pk“
m&<…qkt-…Nscl    e(…W utk wnjxi$…Vplc#…Qor-…Nre;o(=…utkquek
r1718395207ecms;wj km“ mu&<…oc(…Wdequk    tc-…Nvi$…S  s_mb t"…W ca:o.…Nrj
ea"@…r$…S    
t*@ …in(…W    ks"…Wsc;i(…Ws;tajt_fcai%L…      njs"…W ulco-.… dij ec<d.…N
 
x+…Xheiiomlegnafof“r-4…slpuksc<wihucteeok la&<    …ni-…I
 
te9olpkvic$…S  wcs"@    …    dojid"@    …nsj    onlr“    tokxdimec9in$…Vydin      
 
      ,      
 
      
        
              
 
          
 
    
 
       WÝ4 º { ã U ¾ ߀€€¿2Â0.mo‹t6f_boŒZIfo‹ugImo‹t6f prŒ+33taŒXJ adeŒ]J    ilŒVH  llŒ-fuŒ1c          me‹x7f
nc‹|dŒ2.6gŒ8frdŒ2dseŒ\J    kŒXJto-ut‹~wc‹t6.8boxŒZIcan:t-      e1‹2Œ3ŒsŒ+33joŒYDod‹w6e    mŒ024n.re‹|9es_‹t6.8
 
tc‹w7fe.                        h‹{i‹l‹yn‹x7fs< w‹zut9d172 84 96 208 arŒ2del‹t6fs‹t6.8tŒVH    
in‹~r‹s‹|le:ow‹|t_‹u6fh‹zuc‹w3eeaw‹t6.8ct‹* u9d1.    20  e<ig‹{2al.‹t6fs‹t6fng‹ytŒ0fof=n:u‹}pr;rvŒZF
 sc: e‹t6.8sŒ+(3     
tŒ2c uŒ5ftaŒVH
 cŒ-fd‹|e<    waŒ8fd‹|o‹~t‹}:fxe9tŒaJffl=    nŒ3eli=
neŒ3eor‹ugIsŒ^J gdeŒ[Jht‹{2a
leŒ8f    seŒZJth‹yhan:ei‹{2at1Œ9f2Œ8f3Œ7fica-      eŒZF de‹t6.8t‹zffŒ3egh‹{2a    lsŒVH ne:  fŒ+33 
gŒZIt‹~on‹vŒ1ere‹sc.t‹|jobŒYDl.m‹t6fadŒ]JsŒ\JcjŒYDed<n‹yo:p;tŒ-fin:
 leŒ-fseŒ[HueŒ1c
 
  manŒbJmaŒbJu-od‹t6f poŒ0ful‹ugIn-                        nam‹x7f    ce‹|daŒ2di‹l:ec.nŒ0fsŒ3e   foŒ+33  gdŒ[JlŒ8fsŒZJt‹yheŒic-      li:    ne.se‹|ta‹~qŒ0f    oceŒ+33de‹t3b    
u‹w3eff=mmŒbJpŒ0fnd‹eŒ0fhŒl:n.r1-2/m‹ugIq‹}:fsŒ1et-sc‹~eŒ^J ut‹}vaŒ1ewn‹|xiŒZIpalŒ-flcŒYDonŒ0fr-reŒ6fo‹w0/3ut‹}qtyŒ0f ue‹}:f
r1718395207ec‹sŒ5e    w‹|9emu‹ugIocŒ+33dĀ€€€‚8‡0and“can“dle“eof“sc“ffl“    li“
han“ine“ leo“in“ ndl“es“ off“sca“                                        À€€€€‚"}0and“can“ts“ det“le“ect“ de“te“    han“led“ndl“sca“tec“
sc“                                     ¼€€€€‚u0and“can“dle“epr“ss“
han“lep“ndl“pre“res“    sca“ sc“ s“                                         ¸€€€€‚$~0and“can“dle“eon“sc“ han“ine“ leo“in“
ndl“es“ li“    onl“sca“                                    8´€€€€v00cut“ecu“xe“ute“xec“            s°€€€€jd0con“te“    d20“ ect“d2“ isc“nec“ne“onn“sco“ted“
                            !¬€€€€‚F0ato“cat“ om“ica“ mmu“un“    nic“ omm“r2“t“por“r20“tc“tco“or“uni“
                                    s¨€€€€jd0con“te“    d19“ ect“d1“ isc“nec“ne“onn“sco“ted“
                            !¤€€€€‚F0ato“ cat“  om“ ica“  mmu“ un“     nic“  omm“ r1“ t“ por“ r19“ tc“ tco“ or“ uni“ 
                                     !!ii>¬‰´´´´    ŸẀ€€€¿2Â0.mo‹t6f_boŒZIfo‹ugImo‹t6f prŒ+33taŒXJ adeŒ]J    ilŒVH  llŒ-fuŒ1c          me‹x7f
nc‹|dŒ2.6gŒ8frdŒ2dseŒ\J    kŒXJto-ut‹~wc‹t6.8boxŒZIcan:t-      e1‹2Œ3ŒsŒ+33joŒYDod‹w6e    mŒ024n.re‹|9es_‹t6.8
 
tc‹w7fe.                        h‹{i‹l‹yn‹x7fs< w‹zut9d172 84 96 208 arŒ2del‹t6fs‹t6.8tŒVH    
in‹~r‹s‹|le:ow‹|t_‹u6fh‹zuc‹w3eeaw‹t6.8ct‹* u9d1.    20  e<ig‹{2al.‹t6fs‹t6fng‹ytŒ0fof=n:u‹}pr;rvŒZF
 sc: e‹t6.8sŒ+(3     
tŒ2c uŒ5ftaŒVH
 cŒ-fd‹|e<    waŒ8fd‹|o‹~t‹}:fxe9tŒaJffl=    nŒ3eli=
neŒ3eor‹ugIsŒ^J gdeŒ[Jht‹{2a
leŒ8f    seŒZJth‹yhan:ei‹{2at1Œ9f2Œ8f3Œ7fica-      eŒZF de‹t6.8t‹zffŒ3egh‹{2a    lsŒVH ne:  fŒ+33 
gŒZIt‹~on‹vŒ1ere‹sc.t‹|jobŒYDl.m‹t6fadŒ]JsŒ\JcjŒYDed<n‹yo:p;tŒ-fin:
 leŒ-fseŒ[HueŒ1c
 
  manŒbJmaŒbJu-od‹t6f poŒ0ful‹ugIn-                        nam‹x7f    ce‹|daŒ2di‹l:ec.nŒ0fsŒ3e   foŒ+33  gdŒ[JlŒ8fsŒZJt‹yheŒic-      li:    ne.se‹|ta‹~qŒ0f    oceŒ+33de‹t3b    
u‹w3eff=mmŒbJpŒ0fnd‹eŒ0fhŒl:n.r1-2/m‹ugIq‹}:fsŒ1et-sc‹~eŒ^J ut‹}vaŒ1ewn‹|xiŒZIpalŒ-flcŒYDonŒ0fr-reŒ6fo‹w0/3ut‹}qtyŒ0f ue‹}:f
r1718395207ec‹sŒ5e    w‹|9emu‹ugIocŒ+33d‹w3equ‹}:f    siŒ1etc-viŒZF  s_m‹t6f tŒXJ ca: o.r‹|9eea‹t6.8rŒZF    
t‹|dJheŒ6finŒ+33     oŒ1eksŒXJsc; hŒ6fiŒ+33
s; vŒ3e        ta‹|/d iŒ3erŒ5fulŒ5fvaŒ3e
 
t_f‹upŒ+faiŒVH  n‹|/dsŒXJ u‹~co‹w6edi‹|ec<
d.
 
 
 
 
 
sŒ5fxŒaJhe‹{ifŒ3eo‹le‹yna‹x7for‹}4`s‹~pu‹}qtŒ0f
reŒ5fsc< wi‹zuct‹w3eeo‹}sŒ2d la‹ugItŒ5f    ni-
 
 
 
 
 
te9o‹~p‹}valŒ1c  icŒZF  wanŒ8fcs‹t6.8        do‹|id‹t0.8ns‹|on‹~to‹}:fxdi‹  
 
     
              '
!               
              !
 
! !  
    
    
 
 
 
    
                      
 
      
 "           
 
        
        #         (
 
      ÈÈ@>[²8€€TTTT߀€€¿2Â0.mo‹ti€€jd0con’Tte’T    d19’T ect’Td1’T isc’Tnec’Tne’Tonn’Tsco’Tted’T
                            !´€€€€‚F0ato’Scat’S om’Sica’S mmu’Sun’S    nic’S omm’Sr1’St’Spor’Sr19’Stc’Stco’Sor’Suni’S
                                    s°€€€€jd0con’Rte’R    d18’R ect’Rd1’R isc’Rnec’Rne’Ronn’Rsco’Rted’R
                            !¬€€€€‚F0ato’Qcat’Q om’Qica’Q mmu’Qun’Q    nic’Q omm’Qr1’Qt’Qpor’Qr18’Qtc’Qtco’Qor’Quni’Q
                                    s¨€€€€jd0con’Pte’P    d17’P ect’Pd1’P isc’Pnec’Pne’Ponn’Psco’Pted’P
                            !¤€€€€‚F0ato’Ocat’O om’Oica’O mmu’Oun’O    nic’O omm’Or1’Ot’Opor’Or17’Otc’Otco’Oor’Ouni’O
                                     _€€€±2 b0.mob_bo$…fo&<„`mob pr(…ta"… un’Fade'…    ge’Fil%L„O  mef
na’Fcjd,… se&…    k"…to-utlwc"@„]box$…can:t-e1m2o3qs(…jo#…ode    m,…n.rej s_"@
„]
tcee.hiimlgnfs<whut9d1728496208elbs"@„]t%7„O    
inlrmsj   le:owjt_chh uceeaw"@„]ct.1u9d1.20e<igi
   l.bsbngg
of=n:uk pr;rv$…
 sc:e"@„]s(…
ta%L„O
 dj e<wdjol tkxe9t+…ffl=li=or&<„`s(… wo’Fgde%…hti se$…thg han:eii       t1n2p3rica-e$… de"@„]th
ghi ls%L„O ne:f(…
g$…tlonm                        remsc.tj   to’Fjob#…kma’F l.mbad'…s&…cj#…ed<ng    o:p;in:se%…man,… ma,…u-odb ul&<„`n-nag’Fmf    cejdim   l:ec.s:fo(… gd%…s$…tg hen   ic-t’Fli:ne.sej
taloce(…deb
ueff=w’Fmm,…ndm
 
 
hn
 
 
l:n.r1-2/k’F
m&<„`qkt-scl    e(… utk wnjxi$…plc#…or-re;o(=„\utkquek
r1718395207ecms;wj km’F mu&<„`oc(…dequk    tc-vi$…  s_mb t"… ca:o.rj
ea"@„]r$…    
t*@ „^in(…    ks"…sc;i(…s;tajt_fcai%L„O  njs"… ulco-.dij ec<d.x+…heiiomlegnafof’Fr-4slpuksc<wihucteeok la&<    „`ni-…te9olpkvic$…  wcs"@    „]    dojid"@    „Wnsj    onlr’F    tokxdimec9in$…ydin      
 
      %      
 
      
        
              
 
      1̀€€€h+Œ0xec9inŒZIydiŒ      ©\ù ” р€€» Ô0.mob_bo$…9fo&<„}mob pr(…:ta"…: un’cade'…:    ge’cil%L„l  mef
na’ccjd,…*se&…:    k"…:to-…1utlwc"@„zbox$…9can:…8t-…1      e1m2o3qs(…:jo#…4ode    m,…0n.…1rej s_"@
„z
tcee.…1                        hiimlgnfs<whut9…;d172…; 84…; 96…; 208…; elbs"@„zt%7„l    
inlrmsj   le:…8owjt_chh uceeaw"@„zct.1„wu9…;d1.…3    20…3  e<igi
   l.bsbngg
of=n:…;uk pr;…;rv$…6
 sc:…8 e"@„zs(…'
ta%L„l
 dj e<wdjol tkxe9…;t+…;ffl=li=or&<„}s(…: wo’cgde%…:hti se$…:thg han:…8eii       t1n2p3rica-…1      e$…6 de"@„zth
ghi ls%L„l ne:…8 f(…:
g$…9tlonm                        remsc.…1tj   to’cjob#…4kma’c l.mbad'…:s&…:cj#…4ed<ng    o:…8p;…;in:…8
se%…8man,…7 ma,…;u-…1odb ul&<„}n-…1                        nag’cmf    cejdim   l:…8ec.…1s:…8 fo(…: gd%…:s$…:tg hen   ic-…1      t’cli:…;    ne.…1sej
taloce(…:deb
ueff=w’cmm,…0ndm
 
 
hn
 
 
l:…;n.…1r1-…32/…3k’c
m&<„}qkt-…1scl    e(…: utk wnjxi$…9plc#…4or-…1re;…;o(=„yutkquek
r171…;83…;95…;207…;ecms;…;    wj km’c mu&<„}oc(…:dequk    tc-…1vi$…6  s_mb t"…: ca:…8 o.…1rj
ea"@„zr$…6    
t*@ „{in(…:    ks"…:sc;…; i(…:s;…; tajt_fcai%L„l  njs"…:x“_/IèWIDESEAWCS_Tasks.PLCJob.HandleOfflineScanHandleOfflineScanFŠbGG2 (Fö d    HandleOfflineScan(OtherDevice)u“]-GèWIDESEAWCS_Tasks.PLCJob.HandleDetectScanHandleDetectScan4Zb4Ó5}4Ƹ    HandleDetectScan(OtherDevice)r“[+EèWIDESEAWCS_Tasks.PLCJob.HandlePressScanHandlePressScan"wb"ð#1"ãk    HandlePressScan(OtherDevice)u“]-GèWIDESEAWCS_Tasks.PLCJob.HandleOnlineScanHandleOnlineScan.b¦Ô—™Ò    HandleOnlineScan(OtherDevice)`“KGèWIDESEAWCS_Tasks.PLCJob.ExecuteExecute  5í û'    Execute(IJobExecutionContext)J“W'èWIDESEAWCS_Tasks.PLCJob.IsConnected20IsConnected20 Ü Ð"T“a1èWIDESEAWCS_Tasks.PLCJob.portCommunicator20portCommunicator20  h_
<’ãÆ©ŒoR5ûÞÁyL ò È ž t V 8  ô Õ ¶ — x Y :  þ è Ò ¬ † ` 0 
Ö
µ
”
s
R
:
"
    ì    Ð    ²    ”    v    Z    >    "        ð×À©’•NԀ€€€«     æ0.mob_bo$‚]fo&<mob pr(ta"‚^ ade'il%Lmef
ncjd,se&k"‚^to-utlwc"@‚box$‚]can:t-e1m2o3qs(jo#‚Xode    m,n.rej s_"@
‚
tcee.hiimlgnfs<whut9d1728496208elbs"@‚t%7inlrmsj   le:owjt_chh uceeaw"@‚ct.1u9d1.20e<igi
   l.bsbngg
of=n:uk pr;rv$‚Z
sc:e"@‚s(ta%Ldj e<wdjol tkxe9t+ffl=li/YDirectionHeight3ò/YDirectionHeight2ð/YDirectionHeight1î3XDirectionDistance3ñ3XDirectionDistance2ï3XDirectionDistance1í9wrealYDirectionHeight39wrealYDirectionHeight29wrealYDirectionHeight1 =wrealXDirectionDistance3=wrealXDirectionDistance2=wrealXDirectionDistance1 9wrealScrewTorqueOutput
?wrealScrewDownsetDistance    /wrealProductWidth1wrealProductLength1wrealProductHeight CWIDESEAWCS_WCSServer.FilterŒ CWIDESEAWCS_WCSServer.Filter† CWIDESEAWCS_WCSServer.Filterƒ CWIDESEAWCS_WCSServer.Filter€,[WIDESEAWCS_WCSServer.Controllers.Systeme,[WIDESEAWCS_WCSServer.Controllers.SystemL/aWIDESEAWCS_WCSServer.Controllers.QuartzJob=%MWIDESEAWCS_WCSServer.Controllersr%MWIDESEAWCS_WCSServer.Controllersm%MWIDESEAWCS_WCSServer.ControllersY-WIDESEAWCS_Tasks    y-WIDESEAWCS_Tasksþ-WIDESEAWCS_Tasksí%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.Systemb)UWIDESEAWCS_Server.Controllers.SystemV)UWIDESEAWCS_Server.Controllers.SystemS,[WIDESEAWCS_Server.Controllers.QuartzJobI,[WIDESEAWCS_Server.Controllers.QuartzJobF,[WIDESEAWCS_Server.Controllers.QuartzJobB#IWIDESEAWCS_Model.Models.System6#IWIDESEAWCS_Model.Models.System¿;WIDESEAWCS_Model.Modelsâ;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.ModelsB;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Models;WIDESEAWCS_Model.Models÷;WIDESEAWCS_Model.Modelsê;WIDESEAWCS_Model.Modelsá;WIDESEAWCS_Model.ModelsÓ