yanjinhui
2025-10-18 d48e486d63ae2a0fc454c27c79b8f12115e4bcbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
{
  "Version": 1,
  "WorkspaceRootPath": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\",
  "Documents": [
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\extend\\allocat.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\extend\\allocat.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\extend\\check.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\extend\\check.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderservices.cs||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderservices.cs||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderdetailservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\deliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\deliveryorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_supplier.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_supplier.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\stock\\dt_stockinfodetail_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\\stock\\dt_stockinfodetail_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\stock\\dt_stockinfodetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\stock\\dt_stockinfodetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\stock\\dt_stockinfo_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\\stock\\dt_stockinfo_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\stock\\dt_stockinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\stock\\dt_stockinfo.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\index.html||{40D31677-CBC0-4297-A9EF-89D907823A98}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\index.html||{40D31677-CBC0-4297-A9EF-89D907823A98}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\supplierservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\supplierservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\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}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_dto\\squarecabin\\apiresponse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\apiresponse.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\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:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\iinventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\iinventoryservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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|e:\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_inventory.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_inventory.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\ideliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\ideliveryorderdetailhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\basic\\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\\basic\\materielinfocontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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|e:\\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|e:\\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|e:\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\warehousetypecontroller.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\\warehousetypecontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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|e:\\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|e:\\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|e:\\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|e:\\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|e:\\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:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_wmsserver\\controllers\\squarecabin\\customercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|solutionrelative:widesea_wmsserver\\controllers\\squarecabin\\customercontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{D81A65B5-47D1-40C1-8FDE-7D24FF003F51}|WIDESEA_WMSServer\\WIDESEA_WMSServer.csproj|e:\\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|e:\\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|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorderdetail_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorderdetail_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorderdetail_hty .cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorderdetail_hty .cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorderdetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_cabinorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_cabinorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_customer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_customer.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_isquarecabinservices\\icabinorderservices.cs||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{FC3D3619-FE28-4CF5-8471-CBBC55649B10}|WIDESEA_ISquareCabinServices\\WIDESEA_ISquareCabinServices.csproj|solutionrelative:widesea_isquarecabinservices\\icabinorderservices.cs||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_squarecabinservices\\cabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|solutionrelative:widesea_squarecabinservices\\cabinorderhtyservices.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{9D0451BD-FBB9-428A-9745-67334785D57A}|WIDESEA_SquareCabinServices\\WIDESEA_SquareCabinServices.csproj|e:\\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|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\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:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_model\\models\\squarecabin\\dt_deliveryorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{00CE9885-9F24-4B6C-A7E8-0DE8C9ED7128}|WIDESEA_Model\\WIDESEA_Model.csproj|solutionrelative:widesea_model\\models\\squarecabin\\dt_deliveryorder_hty.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|e:\\fangcangzhineng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\widesea_wmsserver\\widesea_dto\\squarecabin\\towcsdto.cs||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{929DF936-042C-4EEC-8722-A831FC2F0AEA}|WIDESEA_DTO\\WIDESEA_DTO.csproj|solutionrelative:widesea_dto\\squarecabin\\towcsdto.cs||{8B382828-6202-11D1-8870-0000F87579D2}"
    }
  ],
  "DocumentGroupContainers": [
    {
      "Orientation": 0,
      "VerticalTabListWidth": 256,
      "DocumentGroups": [
        {
          "DockedWidth": 200,
          "SelectedChildIndex": 6,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
            },
            {
              "$type": "Document",
              "DocumentIndex": 4,
              "Title": "DeliveryOrderDetailHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T05:10:18.116Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 6,
              "Title": "DeliveryOrderHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABMAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T12:22:34.955Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 3,
              "Title": "DeliveryOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderServices.cs",
              "ViewState": "AgIAAHADAAAAAAAAAAAAwLcCAAATAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:05:07.451Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 2,
              "Title": "IDeliveryOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderServices.cs",
              "ViewState": "AgIAACoAAAAAAAAAAAA6wD8AAAArAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:38:23.32Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 1,
              "Title": "Check.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\extend\\Check.cs",
              "ViewState": "AgIAABAAAAAAAAAAAAApwGoAAAAXAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T12:28:32.126Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 0,
              "Title": "Allocat.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\extend\\Allocat.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\extend\\Allocat.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\extend\\Allocat.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\extend\\Allocat.cs",
              "ViewState": "AgIAAAgAAAAAAAAAAAAswBAAAAAlAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T12:28:57.284Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 7,
              "Title": "InventoryServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\InventoryServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAFcAAAAqAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:44:36.647Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 8,
              "Title": "Dt_SupplyTask.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_SupplyTask.cs",
              "ViewState": "AgIAAHQAAAAAAAAAAAAqwJMAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:04:03.926Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 10,
              "Title": "Dt_MaterielInfo.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_MaterielInfo.cs",
              "ViewState": "AgIAABIAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T03:50:36.92Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 14,
              "Title": "Dt_StockInfo.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfo.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfo.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T03:45:51.363Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 5,
              "Title": "DeliveryOrderDetailServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\DeliveryOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxMAAABJAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T15:20:42.14Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 13,
              "Title": "Dt_StockInfo_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfo_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfo_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfo_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfo_Hty.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T03:45:52.954Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 12,
              "Title": "Dt_StockInfoDetail.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T03:50:24.551Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 11,
              "Title": "Dt_StockInfoDetail_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\Stock\\Dt_StockInfoDetail_Hty.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T03:50:28.809Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 9,
              "Title": "Dt_Supplier.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Supplier.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T03:51:52.498Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 15,
              "Title": "appsettings.json",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\appsettings.json",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\appsettings.json",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\appsettings.json",
              "RelativeToolTip": "WIDESEA_WMSServer\\appsettings.json",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAAB8AAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2025-10-17T01:31:59.534Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 17,
              "Title": "Program.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Program.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Program.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Program.cs",
              "ViewState": "AgIAAIQAAAAAAAAAAAAAAG0AAAArAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:48:00.111Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 21,
              "Title": "OrderDto.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\OrderDto.cs",
              "ViewState": "AgIAAE0AAAAAAAAAAIAwwF4AAAAfAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T07:06:25.333Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 20,
              "Title": "SupplierServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\SupplierServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABIAAABUAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:44:56.248Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 18,
              "Title": "InOrderJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\InOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\InOrderJob.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAABAAAAAwAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:47:53.476Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 16,
              "Title": "index.html",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\index.html",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\index.html",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\index.html",
              "RelativeToolTip": "WIDESEA_WMSServer\\index.html",
              "ViewState": "AgIAAAkAAAAAAAAAAADwvxUAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001512|",
              "WhenOpened": "2025-10-17T00:47:49.398Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 23,
              "Title": "Dt_InventoryInfo.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\WMSInfo\\Dt_InventoryInfo.cs",
              "ViewState": "AgIAAAoAAAAAAAAAAAAAAAwAAAARAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:03:09.9Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 19,
              "Title": "Dt_SupplyTask_Hty.cs",
              "DocumentMoniker": "E:\\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": "E:\\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": "AgIAAAsAAAAAAAAAAAAAABEAAAAyAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:04:13.067Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 22,
              "Title": "ApiResponse.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\ApiResponse.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T02:43:07.741Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 64,
              "Title": "TowcsDto.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeDocumentMoniker": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "RelativeToolTip": "WIDESEA_DTO\\SquareCabin\\TowcsDto.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-18T02:57:56.758Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 25,
              "Title": "InventoryController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\InventoryController.cs",
              "ViewState": "AgIAAAkAAAAAAAAAAAAAABcAAAAoAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:54.33Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 26,
              "Title": "SupplyTaskController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABbAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:18:04.258Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 24,
              "Title": "IInventoryServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IInventoryServices.cs",
              "ViewState": "AgIAAAwAAAAAAAAAAAApwBsAAAAtAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T11:49:40.043Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 27,
              "Title": "MedicineGoodsServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\MedicineGoodsServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAE4AAABOAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:44:46.904Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 28,
              "Title": "OutOrderJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\OutOrderJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\OutOrderJob.cs",
              "ViewState": "AgIAAAEAAAAAAAAAAAAMwBQAAAA6AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:47:56.746Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 29,
              "Title": "CabinOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderServices.cs",
              "ViewState": "AgIAABoBAAAAAAAAAAAMwEoBAAAvAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:13:46.81Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 30,
              "Title": "Dt_Inventory.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Inventory.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAswAsAAAARAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:39:29.09Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 31,
              "Title": "IDeliveryOrderDetailHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\IDeliveryOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwsAAABaAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T11:49:35.918Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 32,
              "Title": "CabinOrderController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderController.cs",
              "ViewState": "AgIAABMAAAAAAAAAAAAQwB0AAAAwAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:10.353Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 33,
              "Title": "MaterielInfoController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\Basic\\MaterielInfoController.cs",
              "ViewState": "AgIAAA8AAAAAAAAAAAAAAAUAAAAiAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:42:41.944Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 35,
              "Title": "Inventory_BatchController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\Inventory_BatchController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwgAAAAfAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:18:11.345Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 34,
              "Title": "GoodsJob.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\GoodsJob.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\GoodsJob.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAAAAABEAAAA4AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:47:31.837Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 39,
              "Title": "WarehouseTypeController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\WarehouseTypeController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\WarehouseTypeController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\WarehouseTypeController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\WarehouseTypeController.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:59.385Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 38,
              "Title": "SupplyTaskHtyController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\SupplyTaskHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:18:01.704Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 36,
              "Title": "InventoryInfoController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\InventoryInfoController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:18:10.191Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 40,
              "Title": "SupplierController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\SupplierController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:57.612Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 37,
              "Title": "MaterielInfoController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\WMSInfo\\MaterielInfoController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwoAAABYAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T06:07:18.721Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 42,
              "Title": "DeliveryOrderHtyController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:52.6Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 43,
              "Title": "DeliveryOrderDetailHtyController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:51.201Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 44,
              "Title": "DeliveryOrderDetailController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderDetailController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:49.446Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 41,
              "Title": "MedicineGoodsController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\MedicineGoodsController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwwAAABTAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T05:48:30.499Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 46,
              "Title": "CustomerController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CustomerController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:43.705Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 48,
              "Title": "CabinOrderDetailController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:39.034Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 47,
              "Title": "CabinOrderHtyControllers.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderHtyControllers.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAAgAAAAnAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:14.687Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 45,
              "Title": "DeliveryOrderController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\DeliveryOrderController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAAAAAEIAAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T03:30:07.195Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 49,
              "Title": "CabinOrderDetailHtyController.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "RelativeDocumentMoniker": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "RelativeToolTip": "WIDESEA_WMSServer\\Controllers\\SquareCabin\\CabinOrderDetailHtyController.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T08:17:21.134Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 50,
              "Title": "Dt_DeliveryOrderDetail_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail_Hty.cs",
              "ViewState": "AgIAACUAAAAAAAAAAAAwwDkAAAA6AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:01:54.245Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 51,
              "Title": "Dt_DeliveryOrderDetail.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrderDetail.cs",
              "ViewState": "AgIAACsAAAAAAAAAAAAAwDYAAAA6AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:01:47.972Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 52,
              "Title": "Dt_CabinOrderDetail_Hty .cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail_Hty .cs",
              "ViewState": "AgIAADEAAAAAAAAAAAAIwD4AAAA6AAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:59:09.764Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 53,
              "Title": "Dt_CabinOrderDetail.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrderDetail.cs",
              "ViewState": "AgIAAC4AAAAAAAAAAAAAwEAAAAAtAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:59:04.813Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 54,
              "Title": "Dt_CabinOrder_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder_Hty.cs",
              "ViewState": "AgIAADEAAAAAAAAAAAAIwEAAAAArAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:58:58.945Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 55,
              "Title": "Dt_CabinOrder.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_CabinOrder.cs",
              "ViewState": "AgIAACYAAAAAAAAAAAAuwDMAAAAVAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:58:45.799Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 56,
              "Title": "Dt_DeliveryOrder.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder.cs",
              "ViewState": "AgIAADEAAAAAAAAAAAAIwEQAAABBAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:59:19.059Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 57,
              "Title": "Dt_Customer.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_Customer.cs",
              "ViewState": "AgIAAAMAAAAAAAAAAADwvxEAAAAtAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T00:59:15.744Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 58,
              "Title": "ICabinOrderServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "RelativeToolTip": "WIDESEA_ISquareCabinServices\\ICabinOrderServices.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAWwBUAAAAbAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:02:20.383Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 59,
              "Title": "CabinOrderHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvxEAAAAFAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:45:06.914Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 60,
              "Title": "CabinOrderDetailServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:45:06.123Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 61,
              "Title": "CabinOrderDetailHtyServices.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "RelativeDocumentMoniker": "WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "RelativeToolTip": "WIDESEA_SquareCabinServices\\CabinOrderDetailHtyServices.cs",
              "ViewState": "AgIAAAAAAAAAAAAAAADwvwAAAAAAAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T02:45:05.12Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 62,
              "Title": "Dt_Inventory_Batch.cs",
              "DocumentMoniker": "E:\\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": "E:\\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": "AgIAAFwAAAAAAAAAAAAuwHMAAAAsAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:02:05.687Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 63,
              "Title": "Dt_DeliveryOrder_Hty.cs",
              "DocumentMoniker": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "RelativeDocumentMoniker": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "ToolTip": "E:\\FangCangZhiNeng\\\u65B0\u5EFA\u6587\u4EF6\u5939\\WIDESEA_WMSServer\\WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "RelativeToolTip": "WIDESEA_Model\\Models\\SquareCabin\\Dt_DeliveryOrder_Hty.cs",
              "ViewState": "AgIAAAYAAAAAAAAAAAAAADQAAAAWAAAAAAAAAA==",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-10-17T01:01:43.737Z"
            }
          ]
        },
        {
          "DockedWidth": 115,
          "SelectedChildIndex": -1,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}"
            }
          ]
        }
      ]
    }
  ]
}