yanjinhui
2025-10-14 ff4660980ccfe3e123df8d5fa820266784625c74
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
{
  "Version": 1,
  "WorkspaceRootPath": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\",
  "Documents": [
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\goodsjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\goodsjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\globalusing.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\globalusing.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\outorderjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\outorderjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\inorderjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\inorderjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\cabinordercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\cabinordercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\inventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\inventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\iinventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\iinventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_dto\\squarecabin\\towcsdto.cs||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\towcsdto.cs||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\extensions\\autofacmoduleregister.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\extensions\\autofacmoduleregister.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\medicinegoodsservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\medicinegoodsservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\medicinegoodscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\medicinegoodscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\deliveryordercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\deliveryordercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\suppliercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\suppliercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\inventorycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\inventorycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\deliveryorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\deliveryorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\customercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\customercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_dto\\squarecabin\\orderdto.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\orderdto.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_dto\\squarecabin\\apiresponse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\apiresponse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_dto\\wcs\\dt_deviceinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\wcs\\dt_deviceinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\iwarehousetypeservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\iwarehousetypeservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_medicinegoods.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_medicinegoods.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\imedicinegoodsservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\imedicinegoodsservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabinwcs\\dt_edioutdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabinwcs\\dt_edioutdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabinwcs\\dt_ediout.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabinwcs\\dt_ediout.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabinwcs\\dt_ediindetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabinwcs\\dt_ediindetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabinwcs\\dt_ediin.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabinwcs\\dt_ediin.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\middlewares\\apilogmiddleware.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\middlewares\\apilogmiddleware.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\authorization\\authorizationresponse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\authorization\\authorizationresponse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\extensions\\alloptionregister.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\extensions\\alloptionregister.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorder.cs||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorder.cs||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorderdetail_hty .cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorderdetail_hty .cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\seed\\dbseed.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\seed\\dbseed.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\cabinorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\cabinorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\cabinorderhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\cabinorderhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\cabinorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\cabinorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\cabinorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\cabinorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\icabinorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\icabinorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\icabinorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\icabinorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\icabinorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\icabinorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\icabinorderhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\icabinorderhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\deliveryorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\deliveryorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\deliveryorderhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\deliveryorderhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\ideliveryorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\ideliveryorderrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_inventory.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_inventory.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\deliveryorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\deliveryorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\iinventoryrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\iinventoryrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\ideliveryorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\ideliveryorderdetailrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\ideliveryorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\ideliveryorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\deliveryorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\deliveryorderdetailhtyrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\icustomerrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\icustomerrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\customerservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\customerservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\isupplierrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\isupplierrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_supplier.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_supplier.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_errorlog.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_errorlog.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorderdetail_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorderdetail_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\logininfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\logininfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\system\\sys_log.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\system\\sys_log.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\loghelper\\logger.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\loghelper\\logger.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\helper\\appsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\helper\\appsettings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\helper\\filehelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\helper\\filehelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\helper\\httphelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\helper\\httphelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\extensions\\httpcontextsetup.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\extensions\\httpcontextsetup.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_core\\extensions\\applicationsetup.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\extensions\\applicationsetup.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9912BD12-4CF7-4A91-8203-47C9C125004C}|WIDESEA_StorageTaskServices\\WIDESEA_StorageTaskServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_storagetaskservices\\task\\dt_taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9912BD12-4CF7-4A91-8203-47C9C125004C}|WIDESEA_StorageTaskServices\\WIDESEA_StorageTaskServices.csproj|solutionrelative:widesea_storagetaskservices\\task\\dt_taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\inventoryrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\inventoryrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_warehousetype.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_warehousetype.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_customer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_customer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\warehousetypeservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\warehousetypeservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinservices\\supplierservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FD984F34-1876-4808-AD7C-28A41E665504}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\supplierservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\system\\roleauthor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\system\\roleauthor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\iwarehousetyperepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\iwarehousetyperepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_i\\imedicinegoodsrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1F2B754E-819F-4D71-A873-C099AA9A760E}|WIDESEA_I\\WIDESEA_ISquareCabinRepository.csproj|solutionrelative:widesea_i\\imedicinegoodsrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\outboundorder\\dt_outorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\outboundorder\\dt_outorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\basic\\dt_areainfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\basic\\dt_areainfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\dt_roadwayinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\dt_roadwayinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\dt_materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\dt_materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_squarecabinrepository\\customerrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{8584322D-54AE-40AF-8BF5-B8C2B29820A5}|WIDESEA_SquareCabinRepository\\WIDESEA_SquareCabinRepository.csproj|solutionrelative:widesea_squarecabinrepository\\customerrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\controllers\\taskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\taskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_wmsserver\\index.html||{40D31677-CBC0-4297-A9EF-89D907823A98}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\index.html||{40D31677-CBC0-4297-A9EF-89D907823A98}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\icustomerservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icustomerservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{B5C7DC02-077C-4255-A369-600D033A4C23}|WIDESEA_IRepository\\WIDESEA_IRepository.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_irepository\\isys_dictionaryrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{B5C7DC02-077C-4255-A369-600D033A4C23}|WIDESEA_IRepository\\WIDESEA_IRepository.csproj|solutionrelative:widesea_irepository\\isys_dictionaryrepository.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_isquarecabinservices\\isupplierservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{1FCD1E49-069F-4C34-ACF0-C561DC9A0DA3}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\isupplierservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_model\\models\\outboundorder\\dt_outorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\outboundorder\\dt_outorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{2BB1F129-E90F-40B2-9487-FEA102EE48C4}|WIDESEA_IStorageOutOrderService\\WIDESEA_IStorageOutOrderServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u4EE3\u7801\u7BA1\u7406\\widesea_wmsserver\\widesea_istorageoutorderservice\\outboundorder\\idt_outorderandstockservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{2BB1F129-E90F-40B2-9487-FEA102EE48C4}|WIDESEA_IStorageOutOrderService\\WIDESEA_IStorageOutOrderServices.csproj|solutionrelative:widesea_istorageoutorderservice\\outboundorder\\idt_outorderandstockservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    }
  ],
  "DocumentGroupContainers": [
    {
      "Orientation": 0,
      "VerticalTabListWidth": 256,
      "DocumentGroups": [
        {
          "DockedWidth": 200,
          "SelectedChildIndex": 6,
          "Children": [
            {
              "$type": "Document",
              "DocumentIndex": 8,
              "Title": "IInventoryServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "ViewState": "AgIAAAwAAAAAAAAAAAAAABUAAABVAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T13:37:06.732Z",
              "IsPinned": true,
              "EditorCaption": ""
            },
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
            },
            {
              "$type": "Document",
              "DocumentIndex": 4,
              "Title": "CabinOrderController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAswBIAAAAuAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:47:48.421Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 3,
              "Title": "InOrderJob.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAswAgAAABBAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T08:58:12.162Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 2,
              "Title": "OutOrderJob.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABUAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T00:59:35.966Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 1,
              "Title": "GlobalUsing.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GlobalUsing.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\GlobalUsing.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GlobalUsing.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\GlobalUsing.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAsAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T00:57:55.359Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 0,
              "Title": "GoodsJob.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ViewState": "AgIAAAIAAAAAAAAAAAAlwBIAAAA4AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:04:50.65Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 5,
              "Title": "CabinOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ViewState": "AgIAAFcBAAAAAAAAAAAlwGEBAABAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T03:28:24.308Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 6,
              "Title": "ICabinOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ViewState": "AgIAAAQAAAAAAAAAAAASwBEAAAAbAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T00:57:40.312Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 7,
              "Title": "InventoryServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAE4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T07:03:31.08Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 9,
              "Title": "TowcsDto.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ViewState": "AgIAADkBAAAAAAAAAIA6wE8BAAAoAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T03:36:18.251Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 10,
              "Title": "CabinOrderDetailHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAAAAABEAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T07:39:08.325Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 11,
              "Title": "AutofacModuleRegister.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\AutofacModuleRegister.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Extensions\\AutofacModuleRegister.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\AutofacModuleRegister.cs",
              "RelativeToolTip": "WIDESEA_Core\\Extensions\\AutofacModuleRegister.cs",
              "ViewState": "AgIAAEAAAAAAAAAAAAAUwE4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:40:56.934Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 12,
              "Title": "MedicineGoodsServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ViewState": "AgIAAGgAAAAAAAAAAAApwHgAAAALAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T06:36:27.263Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 13,
              "Title": "MedicineGoodsController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAswAgAAAA9AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:46:33.758Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 14,
              "Title": "DeliveryOrderController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAABUAAAA9AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:42:38.3Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 15,
              "Title": "Program.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Program.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Program.cs",
              "ViewState": "AgIAAC0AAAAAAAAAAAAhwD4AAAAnAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T13:44:16.06Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 16,
              "Title": "appsettings.json",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\appsettings.json",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\appsettings.json",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\appsettings.json",
              "RelativeToolTip": "WIDESEA_WMSServer\\appsettings.json",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABMAAAA9AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2025-09-28T05:48:43.064Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 17,
              "Title": "SupplierController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAAA3AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T02:51:57.04Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 19,
              "Title": "DeliveryOrderDetailController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:46:12.697Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 18,
              "Title": "InventoryController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAMAAAAjAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:46:17.643Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 20,
              "Title": "CustomerController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T05:51:09.469Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 21,
              "Title": "CabinOrderDetailHtyController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:09:19.797Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 22,
              "Title": "CabinOrderDetailController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T02:51:51.935Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 23,
              "Title": "OrderDto.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ViewState": "AgIAAEEAAAAAAAAAAAAqwFYAAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T08:31:20.094Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 25,
              "Title": "Dt_DeviceInfo.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\WCS\\Dt_DeviceInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\WCS\\Dt_DeviceInfo.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\WCS\\Dt_DeviceInfo.cs",
              "RelativeToolTip": "WIDESEA_DTO\\WCS\\Dt_DeviceInfo.cs",
              "ViewState": "AgIAACoAAAAAAAAAAAAQwCgAAAAQAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T02:48:23.023Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 26,
              "Title": "IWarehouseTypeServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IWarehouseTypeServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IWarehouseTypeServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IWarehouseTypeServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IWarehouseTypeServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T02:36:26.243Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 27,
              "Title": "Dt_CabinOrder.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "ViewState": "AgIAACAAAAAAAAAAAAASwDYAAAAnAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T05:37:21.19Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 24,
              "Title": "ApiResponse.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "ViewState": "AgIAABAAAAAAAAAAAAAQwCAAAAAgAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T05:53:40.506Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 28,
              "Title": "Dt_CabinOrderDetail.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "ViewState": "AgIAAAUAAAAAAAAAAAASwBIAAAAoAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T03:47:00.754Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 29,
              "Title": "Dt_MedicineGoods.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAwAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T06:51:32.874Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 30,
              "Title": "IMedicineGoodsServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IMedicineGoodsServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IMedicineGoodsServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IMedicineGoodsServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IMedicineGoodsServices.cs",
              "ViewState": "AgIAAAUAAAAAAAAAAAAEwBQAAAAiAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:03:58.501Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 31,
              "Title": "Dt_CabinOrder_Hty.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:10:19.993Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 32,
              "Title": "Dt_EdiOutDetail.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOutDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOutDetail.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOutDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOutDetail.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABcAAAAxAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T01:53:20.938Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 33,
              "Title": "Dt_EdiOut.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOut.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOut.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOut.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiOut.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T01:53:20.255Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 34,
              "Title": "Dt_EdiInDetail.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiInDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiInDetail.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiInDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiInDetail.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T01:53:19.501Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 35,
              "Title": "Dt_EdiIn.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiIn.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiIn.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiIn.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabinWCS\\Dt_EdiIn.cs",
              "ViewState": "AgIAAAwAAAAAAAAAAADwvxYAAABWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-09T01:53:15.558Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 37,
              "Title": "AuthorizationResponse.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Authorization\\AuthorizationResponse.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Authorization\\AuthorizationResponse.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Authorization\\AuthorizationResponse.cs",
              "RelativeToolTip": "WIDESEA_Core\\Authorization\\AuthorizationResponse.cs",
              "ViewState": "AgIAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:41:17.468Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 38,
              "Title": "AllOptionRegister.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\AllOptionRegister.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Extensions\\AllOptionRegister.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\AllOptionRegister.cs",
              "RelativeToolTip": "WIDESEA_Core\\Extensions\\AllOptionRegister.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAABUAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T11:31:03.391Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 36,
              "Title": "ApiLogMiddleware.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Middlewares\\ApiLogMiddleware.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Middlewares\\ApiLogMiddleware.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Middlewares\\ApiLogMiddleware.cs",
              "RelativeToolTip": "WIDESEA_Core\\Middlewares\\ApiLogMiddleware.cs",
              "ViewState": "AgIAAC0AAAAAAAAAAADwv0AAAABOAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:41:54.531Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 39,
              "Title": "ICabinOrderDetailServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:07:18.218Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 40,
              "Title": "ICabinOrderDetailHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:07:03.348Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 41,
              "Title": "Dt_DeliveryOrder_Hty.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAADoAAAAzAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:32:35.284Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 42,
              "Title": "Dt_DeliveryOrderDetail.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "ViewState": "AgIAABwAAAAAAAAAAAAkwBUAAAAxAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T03:33:50.273Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 43,
              "Title": "Dt_DeliveryOrder.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "ViewState": "AgIAABkAAAAAAAAAAAAkwBAAAABoAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T03:50:57.77Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 44,
              "Title": "Dt_CabinOrderDetail_Hty .cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T08:56:45.972Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 45,
              "Title": "DBSeed.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Seed\\DBSeed.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Seed\\DBSeed.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Seed\\DBSeed.cs",
              "RelativeToolTip": "WIDESEA_Core\\Seed\\DBSeed.cs",
              "ViewState": "AgIAAKEAAAAAAAAAAAArwLQAAAAQAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:21:08.951Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 46,
              "Title": "CabinOrderHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:43:04.881Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 47,
              "Title": "CabinOrderDetailServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:37:33.171Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 48,
              "Title": "ICabinOrderHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:45:15.874Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 49,
              "Title": "CabinOrderRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\CabinOrderRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\CabinOrderRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAABgAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:26:45.473Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 50,
              "Title": "CabinOrderHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\CabinOrderHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\CabinOrderHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw0AAABjAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:41:37.245Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 51,
              "Title": "CabinOrderDetailRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderDetailRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\CabinOrderDetailRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderDetailRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\CabinOrderDetailRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwsAAABQAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T07:19:58.582Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 52,
              "Title": "CabinOrderDetailHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderDetailHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\CabinOrderDetailHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CabinOrderDetailHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\CabinOrderDetailHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAABXAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:08:21.138Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 53,
              "Title": "ICabinOrderDetailHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderDetailHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\ICabinOrderDetailHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderDetailHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\ICabinOrderDetailHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAoAAABZAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:07:42.938Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 54,
              "Title": "ICabinOrderDetailRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderDetailRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\ICabinOrderDetailRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderDetailRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\ICabinOrderDetailRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABSAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:37:21.754Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 55,
              "Title": "ICabinOrderRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\ICabinOrderRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\ICabinOrderRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABEAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:37:09.909Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 56,
              "Title": "ICabinOrderHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\ICabinOrderHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICabinOrderHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\ICabinOrderHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAswAoAAABOAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:40:23.935Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 57,
              "Title": "DeliveryOrderDetailHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAABoAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T06:33:04.409Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 58,
              "Title": "DeliveryOrderHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAABMAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T07:17:58.135Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 59,
              "Title": "DeliveryOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAABUAAAB4AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-25T06:57:14.285Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 60,
              "Title": "DeliveryOrderDetailServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw0AAACQAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:30:48.11Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 61,
              "Title": "IDeliveryOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T13:37:05.265Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 62,
              "Title": "IDeliveryOrderHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAwAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T07:16:01.44Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 63,
              "Title": "IDeliveryOrderDetailServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:12:33.212Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 64,
              "Title": "IDeliveryOrderDetailHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw0AAAAHAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:53:04.079Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 65,
              "Title": "DeliveryOrderRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\DeliveryOrderRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\DeliveryOrderRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwsAAABKAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T05:49:22.703Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 66,
              "Title": "DeliveryOrderHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\DeliveryOrderHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\DeliveryOrderHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxIAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T07:11:13.076Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 67,
              "Title": "IDeliveryOrderRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IDeliveryOrderRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\IDeliveryOrderRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IDeliveryOrderRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\IDeliveryOrderRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAoAAABTAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:37:20.245Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 68,
              "Title": "Dt_Inventory.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "ViewState": "AgIAAAoAAAAAAAAAAAAAABQAAAAbAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T08:29:27.505Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 69,
              "Title": "DeliveryOrderDetailRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderDetailRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\DeliveryOrderDetailRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderDetailRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\DeliveryOrderDetailRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABIAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T05:49:21.116Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 70,
              "Title": "IInventoryRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IInventoryRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\IInventoryRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IInventoryRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\IInventoryRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAUAAAAiAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T06:05:55.033Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 71,
              "Title": "IDeliveryOrderDetailRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IDeliveryOrderDetailRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\IDeliveryOrderDetailRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IDeliveryOrderDetailRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\IDeliveryOrderDetailRepository.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAADwvw8AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:37:20.761Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 72,
              "Title": "IDeliveryOrderDetailHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IDeliveryOrderDetailHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\IDeliveryOrderDetailHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IDeliveryOrderDetailHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\IDeliveryOrderDetailHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABfAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:47:28.674Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 73,
              "Title": "DeliveryOrderDetailHtyRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderDetailHtyRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\DeliveryOrderDetailHtyRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\DeliveryOrderDetailHtyRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\DeliveryOrderDetailHtyRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABIAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:49:08.17Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 74,
              "Title": "ICustomerRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICustomerRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\ICustomerRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ICustomerRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\ICustomerRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABCAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:37:12.436Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 75,
              "Title": "CustomerServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "ViewState": "AgIAAAcAAAAAAAAAAAAgwBIAAABkAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T05:34:28.588Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 76,
              "Title": "ISupplierRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ISupplierRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\ISupplierRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\ISupplierRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\ISupplierRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T06:05:58.424Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 77,
              "Title": "Dt_Supplier.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAAAoAAAAcAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:49:22.073Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 78,
              "Title": "Dt_ErrorLog.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABcAAAAtAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T06:00:05.688Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 79,
              "Title": "Dt_DeliveryOrderDetail_Hty.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAAAAABAAAABDAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:34:30.699Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 80,
              "Title": "LoginInfo.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\LoginInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\LoginInfo.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\LoginInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\LoginInfo.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T05:31:41.968Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 81,
              "Title": "Sys_Log.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\System\\Sys_Log.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\System\\Sys_Log.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\System\\Sys_Log.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\System\\Sys_Log.cs",
              "ViewState": "AgIAAAsAAAAAAAAAAAAwwBoAAAAOAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:44:44.022Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 82,
              "Title": "Logger.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\LogHelper\\Logger.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\LogHelper\\Logger.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\LogHelper\\Logger.cs",
              "RelativeToolTip": "WIDESEA_Core\\LogHelper\\Logger.cs",
              "ViewState": "AgIAAFEAAAAAAAAAAAAawGwAAAA6AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:40:44.391Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 83,
              "Title": "AppSettings.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Helper\\AppSettings.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Helper\\AppSettings.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Helper\\AppSettings.cs",
              "RelativeToolTip": "WIDESEA_Core\\Helper\\AppSettings.cs",
              "ViewState": "AgIAAEoAAAAAAAAAAAAuwAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:41:41.988Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 84,
              "Title": "FileHelper.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Helper\\FileHelper.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Helper\\FileHelper.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Helper\\FileHelper.cs",
              "RelativeToolTip": "WIDESEA_Core\\Helper\\FileHelper.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:41:37.39Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 85,
              "Title": "HttpHelper.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Helper\\HttpHelper.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Helper\\HttpHelper.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Helper\\HttpHelper.cs",
              "RelativeToolTip": "WIDESEA_Core\\Helper\\HttpHelper.cs",
              "ViewState": "AgIAACQAAAAAAAAAAAAcwAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:41:33.665Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 86,
              "Title": "HttpContextSetup.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\HttpContextSetup.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Extensions\\HttpContextSetup.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\HttpContextSetup.cs",
              "RelativeToolTip": "WIDESEA_Core\\Extensions\\HttpContextSetup.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-08T04:41:03.355Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 88,
              "Title": "Dt_TaskService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_StorageTaskServices\\Task\\Dt_TaskService.cs",
              "RelativeDocumentMoniker": "WIDESEA_StorageTaskServices\\Task\\Dt_TaskService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_StorageTaskServices\\Task\\Dt_TaskService.cs",
              "RelativeToolTip": "WIDESEA_StorageTaskServices\\Task\\Dt_TaskService.cs",
              "ViewState": "AgIAADIAAAAAAAAAAAAswG0AAAAdAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T11:30:02.21Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 87,
              "Title": "ApplicationSetup.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\ApplicationSetup.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\Extensions\\ApplicationSetup.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Core\\Extensions\\ApplicationSetup.cs",
              "RelativeToolTip": "WIDESEA_Core\\Extensions\\ApplicationSetup.cs",
              "ViewState": "AgIAAAUAAAAAAAAAAAAowBYAAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T11:29:55.729Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 89,
              "Title": "InventoryRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\InventoryRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\InventoryRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\InventoryRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\InventoryRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAcAAAAbAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T05:49:30.08Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 90,
              "Title": "Dt_WarehouseType.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_WarehouseType.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_WarehouseType.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_WarehouseType.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_WarehouseType.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAkAAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T13:44:20.246Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 91,
              "Title": "Dt_Customer.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABEAAAAtAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T07:01:52.501Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 92,
              "Title": "WarehouseTypeServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\WarehouseTypeServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\WarehouseTypeServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\WarehouseTypeServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\WarehouseTypeServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAkAAAAkAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:34:15.171Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 93,
              "Title": "SupplierServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAoAAAAlAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:34:11.471Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 94,
              "Title": "RoleAuthor.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\System\\RoleAuthor.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\System\\RoleAuthor.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\System\\RoleAuthor.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\System\\RoleAuthor.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T09:09:44.44Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 95,
              "Title": "IWarehouseTypeRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IWarehouseTypeRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\IWarehouseTypeRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IWarehouseTypeRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\IWarehouseTypeRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T06:05:58.97Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 96,
              "Title": "IMedicineGoodsRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IMedicineGoodsRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_I\\IMedicineGoodsRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_I\\IMedicineGoodsRepository.cs",
              "RelativeToolTip": "WIDESEA_I\\IMedicineGoodsRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:35:58.362Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 97,
              "Title": "Dt_OutOrder.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAABrAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:06:36.732Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 98,
              "Title": "Dt_AreaInfo.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Basic\\Dt_AreaInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Basic\\Dt_AreaInfo.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Basic\\Dt_AreaInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Basic\\Dt_AreaInfo.cs",
              "ViewState": "AgIAAAEAAAAAAAAAAAAswBQAAAAqAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-29T05:42:41.016Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 99,
              "Title": "Dt_RoadWayInfoController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Dt_RoadWayInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\Dt_RoadWayInfoController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Dt_RoadWayInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\Dt_RoadWayInfoController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T06:02:05.822Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 100,
              "Title": "Dt_MaterielInfoController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Dt_MaterielInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\Dt_MaterielInfoController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Dt_MaterielInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\Dt_MaterielInfoController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxoAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:28:45.969Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 101,
              "Title": "CustomerRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CustomerRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinRepository\\CustomerRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_SquareCabinRepository\\CustomerRepository.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinRepository\\CustomerRepository.cs",
              "ViewState": "AgIAAAkAAAAAAAAAAADwvw8AAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T05:22:13.87Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 102,
              "Title": "TaskController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\TaskController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\TaskController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T04:57:54.813Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 103,
              "Title": "index.html",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\index.html",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\index.html",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\index.html",
              "RelativeToolTip": "WIDESEA_WMSServer\\index.html",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001512|",
              "WhenOpened": "2025-09-28T03:41:45.701Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 104,
              "Title": "ICustomerServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICustomerServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICustomerServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICustomerServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICustomerServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABEAAABHAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:24:48.534Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 105,
              "Title": "ISys_DictionaryRepository.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_IRepository\\ISys_DictionaryRepository.cs",
              "RelativeDocumentMoniker": "WIDESEA_IRepository\\ISys_DictionaryRepository.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_IRepository\\ISys_DictionaryRepository.cs",
              "RelativeToolTip": "WIDESEA_IRepository\\ISys_DictionaryRepository.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T02:07:33.542Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 106,
              "Title": "ISupplierServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ISupplierServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ISupplierServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ISupplierServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ISupplierServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-28T01:02:51.791Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 107,
              "Title": "Dt_OutOrder_Hty.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder_Hty.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\OutboundOrder\\Dt_OutOrder_Hty.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAAAUAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:06:45.919Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 108,
              "Title": "IDt_OutOrderAndStockService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_IStorageOutOrderService\\OutboundOrder\\IDt_OutOrderAndStockService.cs",
              "RelativeDocumentMoniker": "WIDESEA_IStorageOutOrderService\\OutboundOrder\\IDt_OutOrderAndStockService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u4EE3\u7801\u7BA1\u7406\\WIDESEA_WMSServer\\WIDESEA_IStorageOutOrderService\\OutboundOrder\\IDt_OutOrderAndStockService.cs",
              "RelativeToolTip": "WIDESEA_IStorageOutOrderService\\OutboundOrder\\IDt_OutOrderAndStockService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAIAAABLAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-09-26T12:06:24.556Z",
              "EditorCaption": ""
            }
          ]
        },
        {
          "DockedWidth": 115,
          "SelectedChildIndex": -1,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}"
            }
          ]
        }
      ]
    }
  ]
}