yanjinhui
2025-10-15 a2ac226eba37410a5f668c866fd45ce43c756394
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
{
  "Version": 1,
  "WorkspaceRootPath": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\",
  "Documents": [
    {
      "AbsoluteMoniker": "D:0:0:{5F260E03-095A-4870-8419-5B72CB62929E}|WIDESEA_IBasicService\\WIDESEA_IBasicService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_ibasicservice\\ibasicservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{5F260E03-095A-4870-8419-5B72CB62929E}|WIDESEA_IBasicService\\WIDESEA_IBasicService.csproj|solutionrelative:widesea_ibasicservice\\ibasicservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_basicservice\\basicservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\basicservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\inventory_batchcontroller.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\\inventory_batchcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\inventoryinfocontroller.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\\inventoryinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\wmsinfo\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\wmsinfo\\supplytaskcontroller.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\\supplytaskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\supplytaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\supplytaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\supplytaskhtyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\supplytaskhtyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\widesea_wmsinfoservices.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}|",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\widesea_wmsinfoservices.csproj||{FA3CD31E-987B-443A-9B81-186104E8DAC1}|"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{EB01C034-1D04-4E80-BF04-BD7F8A274340}|ClassLibrary1\\WIDESEA_IWMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\materielinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\materielinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\classlibrary2\\inventoryinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{320D3755-D629-409E-BB9B-99DC30B5A375}|ClassLibrary2\\WIDESEA_WMsInfoServices.csproj|solutionrelative:classlibrary2\\inventoryinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\taskinfo\\task_htycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\taskinfo\\task_htycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\taskinfo\\taskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\taskinfo\\taskcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\medicinegoodscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\medicinegoodscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\deliveryorderhtycontroller.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\\deliveryorderhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\cabinorderhtycontrollers.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\\cabinorderhtycontrollers.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\cabinorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\deliveryorderdetailhtycontroller.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\\deliveryorderdetailhtycontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\deliveryorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\deliveryorderdetailcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\deliveryordercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\deliveryordercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_taskinfoservice\\task_htyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\task_htyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{CE0DB91F-5A68-448E-A419-4C26B5039F51}|WIDESEA_ITaskInfoService\\WIDESEA_ITaskInfoService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_itaskinfoservice\\itask_htyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{CE0DB91F-5A68-448E-A419-4C26B5039F51}|WIDESEA_ITaskInfoService\\WIDESEA_ITaskInfoService.csproj|solutionrelative:widesea_itaskinfoservice\\itask_htyservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_taskinfoservice\\taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{7D7534D4-51D9-46DC-A6B7-6430042F4E12}|WIDESEA_TaskInfoService\\WIDESEA_TaskInfoService.csproj|solutionrelative:widesea_taskinfoservice\\taskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{CE0DB91F-5A68-448E-A419-4C26B5039F51}|WIDESEA_ITaskInfoService\\WIDESEA_ITaskInfoService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_itaskinfoservice\\itaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{CE0DB91F-5A68-448E-A419-4C26B5039F51}|WIDESEA_ITaskInfoService\\WIDESEA_ITaskInfoService.csproj|solutionrelative:widesea_itaskinfoservice\\itaskservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{5F260E03-095A-4870-8419-5B72CB62929E}|WIDESEA_IBasicService\\WIDESEA_IBasicService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_ibasicservice\\ipalletcodeinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{5F260E03-095A-4870-8419-5B72CB62929E}|WIDESEA_IBasicService\\WIDESEA_IBasicService.csproj|solutionrelative:widesea_ibasicservice\\ipalletcodeinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\customerservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\customerservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{5F260E03-095A-4870-8419-5B72CB62929E}|WIDESEA_IBasicService\\WIDESEA_IBasicService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_ibasicservice\\ilocationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{5F260E03-095A-4870-8419-5B72CB62929E}|WIDESEA_IBasicService\\WIDESEA_IBasicService.csproj|solutionrelative:widesea_ibasicservice\\ilocationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_basicservice\\locationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D11C804C-2FF4-4C18-A3EE-2F0574427BB3}|WIDESEA_BasicService\\WIDESEA_BasicService.csproj|solutionrelative:widesea_basicservice\\locationinfoservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_medicinegoods.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_medicinegoods.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|d:\\\u516C\u53F8\u9879\u76EE\\fangcangzhineng\\\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}"
    }
  ],
  "DocumentGroupContainers": [
    {
      "Orientation": 0,
      "VerticalTabListWidth": 256,
      "DocumentGroups": [
        {
          "DockedWidth": 200,
          "SelectedChildIndex": 4,
          "Children": [
            {
              "$type": "Document",
              "DocumentIndex": 4,
              "Title": "MaterielInfoController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw0AAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:20:23.701Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 3,
              "Title": "InventoryInfoController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwsAAABSAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:18:03.493Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 2,
              "Title": "Inventory_BatchController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABXAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:15:36.847Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 1,
              "Title": "BasicService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\BasicService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\BasicService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\BasicService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\BasicService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:43:24.437Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 0,
              "Title": "IBasicService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\IBasicService.cs",
              "RelativeDocumentMoniker": "WIDESEA_IBasicService\\IBasicService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\IBasicService.cs",
              "RelativeToolTip": "WIDESEA_IBasicService\\IBasicService.cs",
              "ViewState": "AgIAAAoAAAAAAAAAAAA2wBkAAAAzAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:58:48.51Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 5,
              "Title": "SupplyTaskController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAwAAAA8AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:23:36.5Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 6,
              "Title": "SupplyTaskHtyController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:21:43.731Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 7,
              "Title": "ISupplyTaskService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\ISupplyTaskService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskService.cs",
              "RelativeToolTip": "ClassLibrary1\\ISupplyTaskService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:12:05.332Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 8,
              "Title": "SupplyTaskService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\SupplyTaskService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\SupplyTaskService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\SupplyTaskService.cs",
              "RelativeToolTip": "ClassLibrary2\\SupplyTaskService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw8AAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:08:44.61Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 9,
              "Title": "ISupplyTaskHtyService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskHtyService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\ISupplyTaskHtyService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\ISupplyTaskHtyService.cs",
              "RelativeToolTip": "ClassLibrary1\\ISupplyTaskHtyService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:12:53.908Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 12,
              "Title": "CabinOrderController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAAAAAAwAAABNAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:30:57.566Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 10,
              "Title": "SupplyTaskHtyService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\SupplyTaskHtyService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\SupplyTaskHtyService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\SupplyTaskHtyService.cs",
              "RelativeToolTip": "ClassLibrary2\\SupplyTaskHtyService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwcAAAAfAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:13:20.129Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 14,
              "Title": "IInventory_BatchServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventory_BatchServices.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IInventory_BatchServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventory_BatchServices.cs",
              "RelativeToolTip": "ClassLibrary1\\IInventory_BatchServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:44:04.572Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 11,
              "Title": "Dt_MaterielInfo.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAARAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T00:47:11.122Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 15,
              "Title": "Dt_Inventory_Batch.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\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": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\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": "AgIAAAIAAAAAAAAAAAAAABYAAAAVAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T03:53:58.49Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 13,
              "Title": "Dt_InventoryInfo.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "ViewState": "AgIAAAUAAAAAAAAAAAAAABIAAAAsAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T04:05:20.843Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 16,
              "Title": "WIDESEA_WMsInfoServices",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\WIDESEA_WMsInfoServices.csproj",
              "RelativeDocumentMoniker": "ClassLibrary2\\WIDESEA_WMsInfoServices.csproj",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\WIDESEA_WMsInfoServices.csproj",
              "RelativeToolTip": "ClassLibrary2\\WIDESEA_WMsInfoServices.csproj",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000758|",
              "WhenOpened": "2025-10-15T05:51:03.644Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 17,
              "Title": "Dt_SupplyTask_Hty.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\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": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\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": "AgIAABEAAAAAAAAAAAAxwCAAAABSAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T03:53:57.222Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 18,
              "Title": "IInventoryInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventoryInfoService.cs",
              "RelativeDocumentMoniker": "ClassLibrary1\\IInventoryInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary1\\IInventoryInfoService.cs",
              "RelativeToolTip": "ClassLibrary1\\IInventoryInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:56:42.625Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 19,
              "Title": "Dt_SupplyTask.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "ViewState": "AgIAAAwAAAAAAAAAAAAAABoAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T04:05:15.738Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 20,
              "Title": "MaterielInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\MaterielInfoService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\MaterielInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\MaterielInfoService.cs",
              "RelativeToolTip": "ClassLibrary2\\MaterielInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAABYAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:04:18.071Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 22,
              "Title": "InventoryInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\InventoryInfoService.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\InventoryInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\InventoryInfoService.cs",
              "RelativeToolTip": "ClassLibrary2\\InventoryInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAswBMAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:56:53.018Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 21,
              "Title": "Inventory_BatchServices.cs.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "RelativeDocumentMoniker": "ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "RelativeToolTip": "ClassLibrary2\\Inventory_BatchServices.cs.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:44:43.789Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 23,
              "Title": "CabinOrderDetailHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxEAAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:50:53.697Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 24,
              "Title": "ICabinOrderDetailServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwkAAAAKAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:32:57.249Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 25,
              "Title": "CabinOrderDetailServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T06:02:20.574Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 26,
              "Title": "CabinOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ViewState": "AgIAAAQBAAAAAAAAAAAnwC0BAABBAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:43:37.251Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 28,
              "Title": "ICabinOrderDetailHtyServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:43:28.954Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 27,
              "Title": "DeliveryOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAABEAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T02:26:52.856Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 29,
              "Title": "ICabinOrderServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:43:27.023Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 30,
              "Title": "Task_HtyController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskInfo\\Task_HtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\Task_HtyController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskInfo\\Task_HtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\Task_HtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxQAAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:39:54.478Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 31,
              "Title": "TaskController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\TaskInfo\\TaskController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:39:55.656Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 32,
              "Title": "MedicineGoodsController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvw4AAABWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:39:16.841Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 33,
              "Title": "SupplierController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxMAAAA3AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:38:56.136Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 34,
              "Title": "InventoryController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxQAAAA4AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:38:17.331Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 37,
              "Title": "CabinOrderHtyControllers.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:38:02.072Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 35,
              "Title": "DeliveryOrderHtyController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAABvAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:37:23.616Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 38,
              "Title": "CabinOrderDetailController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxEAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:31:02.771Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 36,
              "Title": "CabinOrderDetailHtyController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:31:02.11Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 39,
              "Title": "DeliveryOrderDetailHtyController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA8AAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:34:51.158Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 40,
              "Title": "DeliveryOrderDetailController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAoAAAB3AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:35:11.469Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 41,
              "Title": "DeliveryOrderController.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:35:29.311Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 42,
              "Title": "Task_HtyService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\Task_HtyService.cs",
              "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\Task_HtyService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\Task_HtyService.cs",
              "RelativeToolTip": "WIDESEA_TaskInfoService\\Task_HtyService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwcAAABPAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:32:39.216Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 44,
              "Title": "TaskService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\TaskService.cs",
              "RelativeDocumentMoniker": "WIDESEA_TaskInfoService\\TaskService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_TaskInfoService\\TaskService.cs",
              "RelativeToolTip": "WIDESEA_TaskInfoService\\TaskService.cs",
              "ViewState": "AgIAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:32:40.207Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 45,
              "Title": "ITaskService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITaskService.cs",
              "RelativeDocumentMoniker": "WIDESEA_ITaskInfoService\\ITaskService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITaskService.cs",
              "RelativeToolTip": "WIDESEA_ITaskInfoService\\ITaskService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:32:36.801Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 43,
              "Title": "ITask_HtyService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITask_HtyService.cs",
              "RelativeDocumentMoniker": "WIDESEA_ITaskInfoService\\ITask_HtyService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ITaskInfoService\\ITask_HtyService.cs",
              "RelativeToolTip": "WIDESEA_ITaskInfoService\\ITask_HtyService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T05:32:35.174Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 49,
              "Title": "MedicineGoodsServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ViewState": "AgIAAB4AAAAAAAAAAAAYwCAAAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:45:57.747Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 48,
              "Title": "InOrderJob.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxYAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:43:33.795Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 47,
              "Title": "OutOrderJob.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxEAAAA2AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T02:26:46.032Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 46,
              "Title": "InventoryServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwv6oAAAAzAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T03:48:52.634Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 50,
              "Title": "TowcsDto.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ViewState": "AgIAADQBAAAAAAAAAAAvwEUBAAACAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T03:49:18.509Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 59,
              "Title": "OrderDto.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T03:22:49.636Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 51,
              "Title": "IPalletCodeInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\IPalletCodeInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_IBasicService\\IPalletCodeInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\IPalletCodeInfoService.cs",
              "RelativeToolTip": "WIDESEA_IBasicService\\IPalletCodeInfoService.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T02:25:54.192Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 52,
              "Title": "MaterielCodeInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\MaterielCodeInfoService.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAADwvxcAAABGAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T02:03:34.742Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 54,
              "Title": "CustomerServices.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CustomerServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxQAAABRAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T02:04:40.363Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 53,
              "Title": "MaterielInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\MaterielInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\MaterielInfoService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\MaterielInfoService.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T02:02:56.738Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 55,
              "Title": "ILocationInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\ILocationInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_IBasicService\\ILocationInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_IBasicService\\ILocationInfoService.cs",
              "RelativeToolTip": "WIDESEA_IBasicService\\ILocationInfoService.cs",
              "ViewState": "AgIAABMAAAAAAAAAAAAUwBIAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:58:38.721Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 56,
              "Title": "LocationInfoService.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\LocationInfoService.cs",
              "RelativeDocumentMoniker": "WIDESEA_BasicService\\LocationInfoService.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_BasicService\\LocationInfoService.cs",
              "RelativeToolTip": "WIDESEA_BasicService\\LocationInfoService.cs",
              "ViewState": "AgIAABUAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:58:33.714Z",
              "EditorCaption": ""
            },
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
            },
            {
              "$type": "Document",
              "DocumentIndex": 57,
              "Title": "GoodsJob.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABEAAAA4AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:42:31.164Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 58,
              "Title": "Dt_MedicineGoods.cs",
              "DocumentMoniker": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "ToolTip": "D:\\\u516C\u53F8\u9879\u76EE\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_MedicineGoods.cs",
              "ViewState": "AgIAAFoAAAAAAAAAAAAkwBcAAAAsAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-15T01:29:58.1Z",
              "EditorCaption": ""
            }
          ]
        },
        {
          "DockedWidth": 115,
          "SelectedChildIndex": -1,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}"
            }
          ]
        }
      ]
    }
  ]
}