yanjinhui
2025-10-24 4e9a3d6063aa619b020623a0ac6fcfa6d3b63e13
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
{
  "Version": 1,
  "WorkspaceRootPath": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\",
  "Documents": [
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\alarmjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\alarmjob.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorder.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.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_core\\baseservices\\servicebase.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{111BD7AA-9749-4506-9772-79F9EF14754C}|WIDESEA_Core\\WIDESEA_Core.csproj|solutionrelative:widesea_core\\baseservices\\servicebase.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_inventoryinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_inventoryinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\equipmentalarminforservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\equipmentalarminforservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\containerservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\containerservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\iequipmentalarminforservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\iequipmentalarminforservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_dto\\squarecabin\\towcsdto.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\towcsdto.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_dto\\squarecabin\\alarmdto.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\alarmdto.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\iinventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\iinventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\itacticsservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\itacticsservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\icontainerservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\icontainerservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_dto\\squarecabin\\orderdto.cs||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\orderdto.cs||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\medicinegoodsservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\medicinegoodsservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\iinventoryinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\iinventoryinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\imaterielinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\imaterielinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\isupplytaskhtyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\isupplytaskhtyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\isupplytaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\isupplytaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\inventory_batchservices.cs.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\inventory_batchservices.cs.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_systemservice\\sys_roleservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|solutionrelative:widesea_systemservice\\sys_roleservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\system\\sys_rolecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\system\\sys_rolecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_tactics.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_tactics.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\tacticscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\wmsinfo\\tacticscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\supplytaskhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\wmsinfo\\supplytaskhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\containercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\wmsinfo\\containercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_systemservice\\sys_dictionaryservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D8C9593B-B31C-4650-8F44-962E9096A0CF}|WIDESEA_SystemService\\WIDESEA_SystemService.csproj|solutionrelative:widesea_systemservice\\sys_dictionaryservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\tacticsservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\tacticsservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary1\\iinventory_batchservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|solutionrelative:classlibrary1\\iinventory_batchservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_container.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_container.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_materielinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_materielinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_supplytask_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\\wmsinfo\\dt_supplytask_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_supplytask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_supplytask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\basic\\dt_supplierinfo.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_supplierinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_basicservice\\materielcodeinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\materielcodeinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_basicservice\\materielinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\materielinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_basicservice\\palletcodeinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\palletcodeinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_equipmentalarminfor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_equipmentalarminfor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\equipmentalarminforcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\wmsinfo\\equipmentalarminforcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\wmsinfo\\dt_inventory_batch.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\wmsinfo\\dt_inventory_batch.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\extend\\check.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\extend\\check.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{C57C16CE-88A7-499A-8CE1-855D55482891}|WIDESEA_CheckService\\WIDESEA_CheckService.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_checkservice\\checkorderresultservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{C57C16CE-88A7-499A-8CE1-855D55482891}|WIDESEA_CheckService\\WIDESEA_CheckService.csproj|solutionrelative:widesea_checkservice\\checkorderresultservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\check\\dt_checkorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\check\\dt_checkorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\inventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\inventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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|e:\\fangcangzhineng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\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}"
    }
  ],
  "DocumentGroupContainers": [
    {
      "Orientation": 0,
      "VerticalTabListWidth": 256,
      "DocumentGroups": [
        {
          "DockedWidth": 200,
          "SelectedChildIndex": 6,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
            },
            {
              "$type": "Document",
              "DocumentIndex": 6,
              "Title": "DeliveryOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ViewState": "AgIAAC4AAAAAAAAAAAAQwAwDAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:15:35.915Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 4,
              "Title": "CabinOrderHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "ViewState": "AgIAABoAAAAAAAAAAAAAABYAAAAwAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:48:52.837Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 2,
              "Title": "InOrderJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADgvw0AAABLAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:20:24.8Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 3,
              "Title": "OutOrderJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw0AAABKAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:00:28.363Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 1,
              "Title": "GoodsJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwYAAAAfAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:51:44.789Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 0,
              "Title": "AlarmJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\AlarmJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\AlarmJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\AlarmJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\AlarmJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABkAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T05:42:32.876Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 5,
              "Title": "DeliveryOrderHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAAAmwBMAAAAIAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:49:07.988Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 8,
              "Title": "Dt_DeliveryOrderDetail.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "ViewState": "AgIAADAAAAAAAAAAAAAUwDIAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T07:27:40.28Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 7,
              "Title": "CabinOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ViewState": "AgIAAEMCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T07:42:01.283Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 13,
              "Title": "ServiceBase.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Core\\BaseServices\\ServiceBase.cs",
              "RelativeDocumentMoniker": "WIDESEA_Core\\BaseServices\\ServiceBase.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Core\\BaseServices\\ServiceBase.cs",
              "RelativeToolTip": "WIDESEA_Core\\BaseServices\\ServiceBase.cs",
              "ViewState": "AgIAAEQAAAAAAAAAAAAvwFwAAAAMAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:38:24.32Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 9,
              "Title": "Dt_DeliveryOrderDetail_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "ViewState": "AgIAABEAAAAAAAAAAAAuwB0AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:04:29.658Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 11,
              "Title": "Dt_DeliveryOrder_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "ViewState": "AgIAABAAAAAAAAAAAAAkwBkAAAAVAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:04:44.37Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 10,
              "Title": "Dt_DeliveryOrder.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "ViewState": "AgIAABcAAAAAAAAAAAAlwCMAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:06:51.239Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 15,
              "Title": "DeliveryOrderDetailServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T07:01:47.926Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 12,
              "Title": "appsettings.json",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\appsettings.json",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\appsettings.json",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\appsettings.json",
              "RelativeToolTip": "WIDESEA_WMSServer\\appsettings.json",
              "ViewState": "AgIAAAsAAAAAAAAAAAAAAB8AAAAXAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2025-10-23T13:17:26.309Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 16,
              "Title": "Program.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Program.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Program.cs",
              "ViewState": "AgIAAHQAAAAAAAAAAADwv4IAAAAoAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:17:20.286Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 14,
              "Title": "DeliveryOrderDetailHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAABUAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T07:01:50.768Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 17,
              "Title": "IDeliveryOrderHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:48:49.293Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 19,
              "Title": "Dt_CabinOrderDetail.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "ViewState": "AgIAACYAAAAAAAAAAAAuwAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:47:46.574Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 21,
              "Title": "EquipmentAlarmInforService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\EquipmentAlarmInforService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\EquipmentAlarmInforService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\EquipmentAlarmInforService.cs",
              "RelativeToolTip": "ClassLibrary2\\EquipmentAlarmInforService.cs",
              "ViewState": "AgIAAC8AAAAAAAAAAAAswEUAAAAeAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T16:55:17.709Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 18,
              "Title": "Dt_CabinOrderDetail_Hty .cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "ViewState": "AgIAAAwAAAAAAAAAAAAAACIAAAAwAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:34:53.943Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 22,
              "Title": "ContainerService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\ContainerService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\ContainerService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\ContainerService.cs",
              "RelativeToolTip": "ClassLibrary2\\ContainerService.cs",
              "ViewState": "AgIAABIAAAAAAAAAAADgvx4AAAAiAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T16:54:56.808Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 23,
              "Title": "IEquipmentAlarmInforService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IEquipmentAlarmInforService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IEquipmentAlarmInforService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IEquipmentAlarmInforService.cs",
              "RelativeToolTip": "ClassLibrary1\\IEquipmentAlarmInforService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxMAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T16:55:10.331Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 20,
              "Title": "Dt_InventoryInfo.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAIAAAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T15:37:17.2Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 24,
              "Title": "ICabinOrderDetailHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxAAAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:23:47.91Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 25,
              "Title": "TowcsDto.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ViewState": "AgIAAOwAAAAAAAAAAAAswJQBAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:35:22.155Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 27,
              "Title": "IDeliveryOrderDetailServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAABTAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:21:42.36Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 26,
              "Title": "AlarmDto.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\AlarmDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\AlarmDto.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\AlarmDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\AlarmDto.cs",
              "ViewState": "AgIAAB0AAAAAAAAAAAAIwEAAAAAgAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T04:59:47.642Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 28,
              "Title": "IDeliveryOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:21:40.719Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 29,
              "Title": "IInventoryServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T06:21:38.849Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 31,
              "Title": "IContainerService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IContainerService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IContainerService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IContainerService.cs",
              "RelativeToolTip": "ClassLibrary1\\IContainerService.cs",
              "ViewState": "AgIAAAUAAAAAAAAAAAAEwBUAAAAlAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T16:54:35.679Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 30,
              "Title": "ITacticsService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ITacticsService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\ITacticsService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ITacticsService.cs",
              "RelativeToolTip": "ClassLibrary1\\ITacticsService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxEAAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:15:34.426Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 32,
              "Title": "CabinOrderDetailServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T05:16:04.835Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 33,
              "Title": "OrderDto.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ViewState": "AgIAABoAAAAAAAAAAAAgwCEAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:52:19.146Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 34,
              "Title": "ApiResponse.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T04:57:04.792Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 35,
              "Title": "ICabinOrderHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T04:53:55.744Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 36,
              "Title": "MedicineGoodsServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ViewState": "AgIAADQAAAAAAAAAAAAhwCMAAAAiAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:51:47.039Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 37,
              "Title": "IInventoryInfoService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventoryInfoService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IInventoryInfoService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventoryInfoService.cs",
              "RelativeToolTip": "ClassLibrary1\\IInventoryInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAAA5AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:18:54.109Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 38,
              "Title": "IMaterielInfoService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IMaterielInfoService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IMaterielInfoService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IMaterielInfoService.cs",
              "RelativeToolTip": "ClassLibrary1\\IMaterielInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:18:53.415Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 39,
              "Title": "ISupplyTaskHtyService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskHtyService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\ISupplyTaskHtyService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskHtyService.cs",
              "RelativeToolTip": "ClassLibrary1\\ISupplyTaskHtyService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:18:52.667Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 40,
              "Title": "ISupplyTaskService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\ISupplyTaskService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskService.cs",
              "RelativeToolTip": "ClassLibrary1\\ISupplyTaskService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:14:10.923Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 41,
              "Title": "Inventory_BatchServices.cs.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "RelativeToolTip": "ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T04:49:07.005Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 42,
              "Title": "Sys_RoleService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_RoleService.cs",
              "RelativeDocumentMoniker": "WIDESEA_SystemService\\Sys_RoleService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_RoleService.cs",
              "RelativeToolTip": "WIDESEA_SystemService\\Sys_RoleService.cs",
              "ViewState": "AgIAABcAAAAAAAAAAAAAwCEAAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T03:43:21.196Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 49,
              "Title": "TacticsService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\TacticsService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\TacticsService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\TacticsService.cs",
              "RelativeToolTip": "ClassLibrary2\\TacticsService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABIAAAA4AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:15:56.074Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 45,
              "Title": "TacticsController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\TacticsController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\TacticsController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\TacticsController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\TacticsController.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAADwvwsAAABSAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:17:44.51Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 43,
              "Title": "Sys_RoleController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\System\\Sys_RoleController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\System\\Sys_RoleController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\System\\Sys_RoleController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\System\\Sys_RoleController.cs",
              "ViewState": "AgIAAD8AAAAAAAAAAAAqwEoAAAAuAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T03:43:43.049Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 47,
              "Title": "ContainerController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\ContainerController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\ContainerController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\ContainerController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\ContainerController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAABYAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:40:20.94Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 46,
              "Title": "SupplyTaskHtyController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T03:12:52.015Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 44,
              "Title": "Dt_Tactics.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_Tactics.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_Tactics.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_Tactics.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_Tactics.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAtAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T01:42:04.215Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 48,
              "Title": "Sys_DictionaryService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_DictionaryService.cs",
              "RelativeDocumentMoniker": "WIDESEA_SystemService\\Sys_DictionaryService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SystemService\\Sys_DictionaryService.cs",
              "RelativeToolTip": "WIDESEA_SystemService\\Sys_DictionaryService.cs",
              "ViewState": "AgIAANUAAAAAAAAAAAAqwOUAAAB5AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:39:13.749Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 50,
              "Title": "ICabinOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAADgvxMAAAAaAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:19:09.033Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 51,
              "Title": "IInventory_BatchServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventory_BatchServices.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IInventory_BatchServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventory_BatchServices.cs",
              "RelativeToolTip": "ClassLibrary1\\IInventory_BatchServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T02:18:54.829Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 54,
              "Title": "Dt_SupplyTask_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask_Hty.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxgAAABZAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T01:43:07.881Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 53,
              "Title": "Dt_MaterielInfo.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "ViewState": "AgIAAAEAAAAAAAAAAAAewBgAAAAIAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:35:04.04Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 52,
              "Title": "Dt_Container.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_Container.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_Container.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_Container.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_Container.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAswBEAAAAHAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:40:12.152Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 56,
              "Title": "Dt_SupplierInfo.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Basic\\Dt_SupplierInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Basic\\Dt_SupplierInfo.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Basic\\Dt_SupplierInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Basic\\Dt_SupplierInfo.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw0AAAAyAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T01:42:06.832Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 59,
              "Title": "PalletCodeInfoService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\PalletCodeInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\PalletCodeInfoService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\PalletCodeInfoService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\PalletCodeInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxEAAABlAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T01:23:40.868Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 58,
              "Title": "MaterielInfoService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\MaterielInfoService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielInfoService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\MaterielInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T01:24:17.734Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 57,
              "Title": "MaterielCodeInfoService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxAAAABKAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-24T01:24:19.08Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 55,
              "Title": "Dt_SupplyTask.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "ViewState": "AgIAAAEAAAAAAAAAAAAWwBEAAAAsAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T15:37:20.052Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 61,
              "Title": "EquipmentAlarmInforController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\EquipmentAlarmInforController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\EquipmentAlarmInforController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\EquipmentAlarmInforController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\EquipmentAlarmInforController.cs",
              "ViewState": "AgIAAAEAAAAAAAAAAAAqwAoAAAB2AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:40:19.291Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 60,
              "Title": "Dt_EquipmentAlarmInfor.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_EquipmentAlarmInfor.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_EquipmentAlarmInfor.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_EquipmentAlarmInfor.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_EquipmentAlarmInfor.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:40:12.693Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 63,
              "Title": "Check.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "ViewState": "AgIAACAAAAAAAAAAAAAAADIAAAAxAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T15:39:54.686Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 62,
              "Title": "Dt_Inventory_Batch.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_Inventory_Batch.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_Inventory_Batch.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_Inventory_Batch.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_Inventory_Batch.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAFMAAABAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:17:55.043Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 65,
              "Title": "Dt_CheckOrder.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Check\\Dt_CheckOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Check\\Dt_CheckOrder.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Check\\Dt_CheckOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Check\\Dt_CheckOrder.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T15:37:55.895Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 64,
              "Title": "CheckOrderResultService.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_CheckService\\CheckOrderResultService.cs",
              "RelativeDocumentMoniker": "WIDESEA_CheckService\\CheckOrderResultService.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_CheckService\\CheckOrderResultService.cs",
              "RelativeToolTip": "WIDESEA_CheckService\\CheckOrderResultService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAAABAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T15:38:30.574Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 67,
              "Title": "Dt_CabinOrder_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "ViewState": "AgIAAAkAAAAAAAAAAAAmwA8AAABQAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:34:47.112Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 68,
              "Title": "Dt_CabinOrder.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "ViewState": "AgIAAAkAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:12:47.369Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 66,
              "Title": "Dt_ErrorLog.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_ErrorLog.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T14:16:18.737Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 69,
              "Title": "InventoryServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:34:35.457Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 70,
              "Title": "InventoryController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ViewState": "AgIAAAkAAAAAAAAAAADwvx0AAABBAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:34:02.804Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 71,
              "Title": "SupplierController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:34:02.138Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 72,
              "Title": "CabinOrderController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ToolTip": "E:\\FangCangZhiNeng2025\\10\\23\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ViewState": "AgIAAAgAAAAAAAAAAAAlwBkAAAARAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-23T13:19:01.579Z"
            }
          ]
        },
        {
          "DockedWidth": 115,
          "SelectedChildIndex": -1,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}"
            }
          ]
        }
      ]
    }
  ]
}