杨前锦
2025-06-04 d44e3abf0d51cfea1ed7df510974d69458cf516d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
{
  "Version": 1,
  "WorkspaceRootPath": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\",
  "Documents": [
    {
      "AbsoluteMoniker": "D:0:0:{E98DD345-9B0E-46C8-B0AB-20B99B5ACAEA}|..\\HH.WCS.Mobox3.FJJT\\HH.WCS.Mobox3.FJJT.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.fjjt\\api\\debugcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\moboxcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{E98DD345-9B0E-46C8-B0AB-20B99B5ACAEA}|..\\HH.WCS.Mobox3.FJJT\\HH.WCS.Mobox3.FJJT.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.fjjt\\util\\sqlhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{E98DD345-9B0E-46C8-B0AB-20B99B5ACAEA}|..\\HH.WCS.Mobox3.FJJT\\HH.WCS.Mobox3.FJJT.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.fjjt\\util\\settings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{E98DD345-9B0E-46C8-B0AB-20B99B5ACAEA}|..\\HH.WCS.Mobox3.FJJT\\HH.WCS.Mobox3.FJJT.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.fjjt\\config\\config.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\config\\config.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\dispatch\\shopfloorcontrol.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\agvcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\core\\wcscore.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\wmscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{E98DD345-9B0E-46C8-B0AB-20B99B5ACAEA}|..\\HH.WCS.Mobox3.FJJT\\HH.WCS.Mobox3.FJJT.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.fjjt\\util\\loghelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{E98DD345-9B0E-46C8-B0AB-20B99B5ACAEA}|..\\HH.WCS.Mobox3.FJJT\\HH.WCS.Mobox3.FJJT.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.fjjt\\api\\agvcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\wms\\mouldhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\models\\locmouldcntr.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\models\\location.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\models\\loccntrrel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\apihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\moboxcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:api\\moboxcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\core\\monitor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:core\\monitor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\wmscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:api\\wmscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\process\\taskprocess.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\device\\tcpclient.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\device\\tcpserver.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\dispatch\\ndc.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\core\\wcscore.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\api\\agvcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\api\\apimodel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\util\\loghelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\dispatch\\hosttoagv.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\models\\mouldcntr.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\device\\s7helper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\util\\loghelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\core\\monitor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\debugcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\dispatch\\gzrobot.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\wms\\locationhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\wms\\containerhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\util\\settings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\process\\taskprocess.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FFBB13EB-B1BC-45EC-922E-1B3AA642622A}|..\\HH.WCS.Mobox3.ZS7412\\HH.WCS.Mobox3.ZS7412.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.zs7412\\api\\agvcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\wms\\wmshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\wms\\wcshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\digitcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FFBB13EB-B1BC-45EC-922E-1B3AA642622A}|..\\HH.WCS.Mobox3.ZS7412\\HH.WCS.Mobox3.ZS7412.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.zs7412\\core\\monitor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FFBB13EB-B1BC-45EC-922E-1B3AA642622A}|..\\HH.WCS.Mobox3.ZS7412\\HH.WCS.Mobox3.ZS7412.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.zs7412\\api\\wmscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\util\\httphelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\process\\deviceprocess.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\swagger.js||{14D17961-FE51-464D-9111-C4AF11D7D99A}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\util\\strhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\device\\plchelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\dispatch\\ndc.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\models\\arearelevance.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\readme.txt||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\readme.txt||{8B382828-6202-11D1-8870-0000F87579D2}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:readme.txt||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{FFBB13EB-B1BC-45EC-922E-1B3AA642622A}|..\\HH.WCS.Mobox3.ZS7412\\HH.WCS.Mobox3.ZS7412.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.zs7412\\readme.txt||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\readme.txt||{8B382828-6202-11D1-8870-0000F87579D2}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\api\\moboxcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\apihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:api\\apihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\containerhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:wms\\containerhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\agvcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:api\\agvcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\process\\taskprocess.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:process\\taskprocess.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\wmshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:wms\\wmshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\core\\wcscore.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:core\\wcscore.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\spotchecklist.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:models\\spotchecklist.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\wcshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:wms\\wcshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\device\\s7helper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:device\\s7helper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\util\\loghelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:util\\loghelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\locationhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:wms\\locationhelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\config\\config.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:config\\config.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\api\\apihelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\device\\plchelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\device\\modbushelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\config\\config.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\util\\settings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\wms\\wcshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\loccntrrel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:models\\loccntrrel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\util\\settings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:util\\settings.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\debugcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:api\\debugcontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\wms\\wmshelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\models\\tn_yikudetail.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\models\\tn_yikuorder.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\core\\monitor.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\api\\digithelper.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\models\\wcstask.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\core\\wmscore.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\api\\wmscontroller.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{44207EA0-2B75-4387-8A15-5C3D70A73C20}|..\\HH.WCS.Mobox3.HD\\HH.WCS.Mobox3.HD.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.hd\\core\\mqttcore.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{8ACEE926-6897-4380-BF9D-9A443FEE6A6F}|..\\HH.WCS.Mobox3.TSSG\\HH.WCS.Mobox3.TSSG.csproj|f:\\hanhe\\storage\\hh.wcs.mobox3\\hh.wcs.mobox3.tssg\\models\\tn_wms_const.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\cntritemrel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:models\\cntritemrel.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    },
    {
      "AbsoluteMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\dispatch\\gzrobot.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
      "RelativeMoniker": "D:0:0:{F6E51E0D-CCFD-44AD-AF62-B741F33C0E28}|HH.WCS.Mobox3.SXJK.csproj|solutionrelative:dispatch\\gzrobot.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
    }
  ],
  "DocumentGroupContainers": [
    {
      "Orientation": 0,
      "VerticalTabListWidth": 256,
      "DocumentGroups": [
        {
          "DockedWidth": 200,
          "SelectedChildIndex": 0,
          "Children": [
            {
              "$type": "Document",
              "DocumentIndex": 0,
              "Title": "DebugController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\api\\DebugController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.FJJT\\api\\DebugController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\api\\DebugController.cs*",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.FJJT\\api\\DebugController.cs*",
              "ViewState": "AQIAACMAAAAAAAAAAAAAADIAAABYAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-25T02:53:22.308Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 2,
              "Title": "SqlHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\util\\SqlHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.FJJT\\util\\SqlHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\util\\SqlHelper.cs*",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.FJJT\\util\\SqlHelper.cs*",
              "ViewState": "AQIAAHMAAAAAAAAAAAAAwIkAAAAIAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-25T02:51:48.586Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 3,
              "Title": "Settings.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\util\\Settings.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.FJJT\\util\\Settings.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\util\\Settings.cs*",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.FJJT\\util\\Settings.cs*",
              "ViewState": "AQIAACAAAAAAAAAAAAAqwC4AAABJAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-25T02:50:01.728Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 4,
              "Title": "config.json",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\config\\config.json",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.FJJT\\config\\config.json",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\config\\config.json*",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.FJJT\\config\\config.json*",
              "ViewState": "AQIAAAAAAAAAAAAAAADwvwUAAAAPAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2025-02-24T08:59:32.704Z",
              "EditorCaption": ""
            },
            {
              "$type": "Bookmark",
              "Name": "ST:1:0:{e8b06f53-6d01-11d2-aa7d-00c04f990343}"
            },
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{b1e99781-ab81-11d0-b683-00aa00a3ee26}"
            },
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}"
            },
            {
              "$type": "Bookmark",
              "Name": "ST:956098225:0:{83107a3e-496a-485e-b455-16ddb978e55e}"
            },
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
            },
            {
              "$type": "Document",
              "DocumentIndex": 1,
              "Title": "MoboxController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\MoboxController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\MoboxController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\MoboxController.cs*",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\MoboxController.cs*",
              "ViewState": "AQIAAAwBAAAAAAAAAAAgwCcBAAAJAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T05:18:51.991Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 7,
              "Title": "AgvController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\AgvController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\AgvController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\AgvController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\AgvController.cs",
              "ViewState": "AQIAAAsAAAAAAAAAAAAQwB0AAAAnAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T01:58:29.055Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 8,
              "Title": "WCSCore.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\core\\WCSCore.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\core\\WCSCore.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\core\\WCSCore.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\core\\WCSCore.cs",
              "ViewState": "AQIAAD8AAAAAAAAAAAAkwE8AAAAbAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-28T08:04:37.064Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 9,
              "Title": "WmsController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\WmsController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\WmsController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\WmsController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\WmsController.cs",
              "ViewState": "AQIAAIMCAAAAAAAAAAAgwJ0CAAAhAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T05:14:11.623Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 6,
              "Title": "ShopFloorControl.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\dispatch\\ShopFloorControl.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\dispatch\\ShopFloorControl.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\dispatch\\ShopFloorControl.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\dispatch\\ShopFloorControl.cs",
              "ViewState": "AQIAACsAAAAAAAAAAAAkwDsAAAA0AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T08:19:43.422Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 5,
              "Title": "config.json",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\config\\config.json",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\config\\config.json",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\config\\config.json",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\config\\config.json",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAAYAAADTAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2024-12-23T05:51:52.548Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 10,
              "Title": "LogHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\util\\LogHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.FJJT\\util\\LogHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\util\\LogHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.FJJT\\util\\LogHelper.cs",
              "ViewState": "AQIAAAYAAAAAAAAAAAAAABQAAAAnAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-24T08:55:11.652Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 11,
              "Title": "AgvController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\api\\AgvController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.FJJT\\api\\AgvController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.FJJT\\api\\AgvController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.FJJT\\api\\AgvController.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAABcAAAAlAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-24T08:52:28.607Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 13,
              "Title": "LocMouldCntr.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\LocMouldCntr.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\models\\LocMouldCntr.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\LocMouldCntr.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\models\\LocMouldCntr.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAA0AAAAvAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-24T06:11:38.656Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 14,
              "Title": "Location.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\Location.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\models\\Location.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\Location.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\models\\Location.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAADwvw0AAAAqAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-24T06:12:36.117Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 15,
              "Title": "LocCntrRel.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\LocCntrRel.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\models\\LocCntrRel.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\LocCntrRel.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\models\\LocCntrRel.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAADwvw8AAAAvAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-24T06:11:41.876Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 20,
              "Title": "TaskProcess.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\process\\TaskProcess.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\process\\TaskProcess.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\process\\TaskProcess.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\process\\TaskProcess.cs",
              "ViewState": "AQIAAFQBAAAAAAAAAAAMwIQBAAAlAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-28T05:54:37.287Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 19,
              "Title": "WmsController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\WmsController.cs",
              "RelativeDocumentMoniker": "api\\WmsController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\WmsController.cs",
              "RelativeToolTip": "api\\WmsController.cs",
              "ViewState": "AQIAAGIAAAAAAAAAAAAAAI8AAAA7AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T00:57:30.349Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 12,
              "Title": "MouldHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\MouldHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\wms\\MouldHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\MouldHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\wms\\MouldHelper.cs",
              "ViewState": "AQIAACQAAAAAAAAAAAAiwDUAAABEAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-17T06:18:53.639Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 21,
              "Title": "TcpClient.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\TcpClient.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\device\\TcpClient.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\TcpClient.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\device\\TcpClient.cs",
              "ViewState": "AQIAABgAAAAAAAAAAADgvycAAAANAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-23T11:28:48.285Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 22,
              "Title": "TcpServer.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\TcpServer.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\device\\TcpServer.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\TcpServer.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\device\\TcpServer.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAswAoAAAARAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T03:20:01.523Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 18,
              "Title": "Monitor.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\core\\Monitor.cs",
              "RelativeDocumentMoniker": "core\\Monitor.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\core\\Monitor.cs",
              "RelativeToolTip": "core\\Monitor.cs",
              "ViewState": "AQIAAI4AAAAAAAAAAAAgwKYAAAAhAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T01:58:42.217Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 17,
              "Title": "MoboxController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\MoboxController.cs",
              "RelativeDocumentMoniker": "api\\MoboxController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\MoboxController.cs",
              "RelativeToolTip": "api\\MoboxController.cs",
              "ViewState": "AQIAADsAAAAAAAAAAAAkwBkAAAAwAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T05:01:19.739Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 16,
              "Title": "ApiHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\ApiHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\ApiHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\ApiHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\ApiHelper.cs",
              "ViewState": "AQIAAEEEAAAAAAAAAAAmwFQEAAAnAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T06:11:25.011Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 23,
              "Title": "NDC.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\dispatch\\NDC.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\dispatch\\NDC.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\dispatch\\NDC.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\dispatch\\NDC.cs",
              "ViewState": "AQIAAC4AAAAAAAAAAAArwCcAAAAgAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-18T02:25:54.829Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 24,
              "Title": "WCSCore.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\core\\WCSCore.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\core\\WCSCore.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\core\\WCSCore.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\core\\WCSCore.cs",
              "ViewState": "AQIAAAMAAAAAAAAAAAASwBUAAABQAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T05:38:25.32Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 25,
              "Title": "AgvController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\AgvController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\api\\AgvController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\AgvController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\api\\AgvController.cs",
              "ViewState": "AQIAABAAAAAAAAAAAAASwBwAAAAoAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T02:06:19.214Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 26,
              "Title": "ApiModel.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\ApiModel.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\api\\ApiModel.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\ApiModel.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\api\\ApiModel.cs",
              "ViewState": "AQIAABEAAAAAAAAAAAApwBcAAAAVAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T01:52:24.703Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 27,
              "Title": "LogHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\util\\LogHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\util\\LogHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\util\\LogHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\util\\LogHelper.cs",
              "ViewState": "AQIAAEoAAAAAAAAAAAAiwFcAAABRAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-23T10:13:48.618Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 28,
              "Title": "HostToAGV.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\dispatch\\HostToAGV.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\dispatch\\HostToAGV.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\dispatch\\HostToAGV.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\dispatch\\HostToAGV.cs",
              "ViewState": "AQIAAKEBAAAAAAAAAAAcwAAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-23T10:12:41.514Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 29,
              "Title": "MouldCntr.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\MouldCntr.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\models\\MouldCntr.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\MouldCntr.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\models\\MouldCntr.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAswBAAAAA2AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-17T07:13:18.836Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 30,
              "Title": "S7Helper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\device\\S7Helper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\device\\S7Helper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\device\\S7Helper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\device\\S7Helper.cs",
              "ViewState": "AQIAACwAAAAAAAAAAAAjwDwAAAA/AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-30T06:53:04.001Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 31,
              "Title": "LogHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\LogHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\util\\LogHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\LogHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\util\\LogHelper.cs",
              "ViewState": "AQIAAEcAAAAAAAAAAAAiwFUAAAB3AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-20T01:58:35.326Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 33,
              "Title": "Program.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\Program.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\Program.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\Program.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\Program.cs",
              "ViewState": "AQIAAE0AAAAAAAAAAAAtwFwAAAA2AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T01:33:01.178Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 34,
              "Title": "DebugController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\DebugController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\DebugController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\DebugController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\DebugController.cs",
              "ViewState": "AQIAAJQAAAAAAAAAAAAowKQAAAAJAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-09T06:39:39.984Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 32,
              "Title": "Monitor.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\core\\Monitor.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\core\\Monitor.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\core\\Monitor.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\core\\Monitor.cs",
              "ViewState": "AQIAACMAAAAAAAAAAAAewDIAAAAdAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T03:24:24.807Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 35,
              "Title": "GZRobot.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\dispatch\\GZRobot.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\dispatch\\GZRobot.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\dispatch\\GZRobot.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\dispatch\\GZRobot.cs",
              "ViewState": "AQIAAFcAAAAAAAAAAAAowGYAAAD5AgAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-26T06:05:27.665Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 36,
              "Title": "LocationHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\LocationHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\wms\\LocationHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\LocationHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\wms\\LocationHelper.cs",
              "ViewState": "AQIAAH8AAAAAAAAAAAAjwNgAAAAyAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-24T08:16:03.466Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 37,
              "Title": "ContainerHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\ContainerHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\wms\\ContainerHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\ContainerHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\wms\\ContainerHelper.cs",
              "ViewState": "AQIAAD0BAAAAAAAAAAAjwEkBAAArAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-16T02:28:31.972Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 38,
              "Title": "Settings.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\Settings.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\util\\Settings.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\Settings.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\util\\Settings.cs",
              "ViewState": "AQIAAGUAAAAAAAAAAAAUwHAAAAA0AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-18T05:30:05.96Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 39,
              "Title": "TaskProcess.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\process\\TaskProcess.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\process\\TaskProcess.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\process\\TaskProcess.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\process\\TaskProcess.cs",
              "ViewState": "AQIAAOsAAAAAAAAAAAAjwPcAAAAzAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T05:13:55.387Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 40,
              "Title": "AgvController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\api\\AgvController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.ZS7412\\api\\AgvController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\api\\AgvController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.ZS7412\\api\\AgvController.cs",
              "ViewState": "AQIAAEgAAAAAAAAAAAD4v1UAAAA+AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-09T02:56:09.821Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 41,
              "Title": "WMSHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\WMSHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\wms\\WMSHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\WMSHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\wms\\WMSHelper.cs",
              "ViewState": "AQIAABwBAAAAAAAAAAAqwCoBAABRAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-27T08:30:52.99Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 42,
              "Title": "WCSHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\WCSHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\wms\\WCSHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\wms\\WCSHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\wms\\WCSHelper.cs",
              "ViewState": "AQIAAFkBAAAAAAAAAAAUwF8BAABRAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-16T01:05:23.452Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 43,
              "Title": "DigitController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\DigitController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\DigitController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\DigitController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\DigitController.cs",
              "ViewState": "AQIAAFIBAAAAAAAAAAAswJcBAAAYAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T01:35:07.779Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 44,
              "Title": "Monitor.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\core\\Monitor.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.ZS7412\\core\\Monitor.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\core\\Monitor.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.ZS7412\\core\\Monitor.cs",
              "ViewState": "AQIAACQAAAAAAAAAAAAcwAAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-09T02:56:05.558Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 45,
              "Title": "WmsController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\api\\WmsController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.ZS7412\\api\\WmsController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\api\\WmsController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.ZS7412\\api\\WmsController.cs",
              "ViewState": "AQIAAO8AAAAAAAAAAAA7wAAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-02-09T02:55:27.55Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 46,
              "Title": "HttpHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\HttpHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\util\\HttpHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\HttpHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\util\\HttpHelper.cs",
              "ViewState": "AQIAAHAAAAAAAAAAAAAnwHoAAAA9AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-26T12:06:11.378Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 47,
              "Title": "DeviceProcess.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\process\\DeviceProcess.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\process\\DeviceProcess.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\process\\DeviceProcess.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\process\\DeviceProcess.cs",
              "ViewState": "AQIAABEAAAAAAAAAAAAowBMAAAAoAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-26T05:13:11.79Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 48,
              "Title": "swagger.js",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\swagger.js",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\swagger.js",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\swagger.js",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\swagger.js",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAAwAAAALAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001646|",
              "WhenOpened": "2025-01-26T06:07:51.669Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 49,
              "Title": "StrHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\StrHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\util\\StrHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\util\\StrHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\util\\StrHelper.cs",
              "ViewState": "AQIAAA8AAAAAAAAAAAAswBgAAAAqAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-26T06:07:48.343Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 50,
              "Title": "PlcHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\device\\PlcHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\device\\PlcHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\device\\PlcHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\device\\PlcHelper.cs",
              "ViewState": "AQIAACkAAAAAAAAAAABQwCwAAAAIAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-26T06:07:43.667Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 51,
              "Title": "NDC.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\dispatch\\NDC.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\dispatch\\NDC.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\dispatch\\NDC.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\dispatch\\NDC.cs",
              "ViewState": "AQIAAHgAAAAAAAAAAAAYwIIAAAAsAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-26T06:05:30.002Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 52,
              "Title": "AreaRelevance.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\AreaRelevance.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\models\\AreaRelevance.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\models\\AreaRelevance.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\models\\AreaRelevance.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAswAwAAAAhAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-24T08:17:33.638Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 53,
              "Title": "readme.txt",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\readme.txt",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\readme.txt",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\readme.txt",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\readme.txt",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAHAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003109|",
              "WhenOpened": "2025-01-23T01:47:48.091Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 57,
              "Title": "MoboxController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\MoboxController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\api\\MoboxController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\MoboxController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\api\\MoboxController.cs",
              "ViewState": "AQIAABsAAAAAAAAAAADgv7gAAAApAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T02:01:36.725Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 54,
              "Title": "readme.txt",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\readme.txt",
              "RelativeDocumentMoniker": "readme.txt",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\readme.txt",
              "RelativeToolTip": "readme.txt",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAAEAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003109|",
              "WhenOpened": "2025-01-23T01:47:55.972Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 56,
              "Title": "readme.txt",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\readme.txt",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\readme.txt",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\readme.txt",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\readme.txt",
              "ViewState": "AQIAAAAAAAAAAAAAAADwvwAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003109|",
              "WhenOpened": "2025-01-23T01:48:16.779Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 55,
              "Title": "readme.txt",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\readme.txt",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.ZS7412\\readme.txt",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.ZS7412\\readme.txt",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.ZS7412\\readme.txt",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAAIAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003109|",
              "WhenOpened": "2025-01-23T01:48:24.508Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 60,
              "Title": "AgvController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\AgvController.cs",
              "RelativeDocumentMoniker": "api\\AgvController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\AgvController.cs",
              "RelativeToolTip": "api\\AgvController.cs",
              "ViewState": "AQIAABEAAAAAAAAAAAAEwBsAAABkAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-24T01:28:33.746Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 58,
              "Title": "ApiHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\ApiHelper.cs",
              "RelativeDocumentMoniker": "api\\ApiHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\ApiHelper.cs",
              "RelativeToolTip": "api\\ApiHelper.cs",
              "ViewState": "AQIAAMsAAAAAAAAAAAAAANYAAAANAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T00:57:49.895Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 59,
              "Title": "ContainerHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\ContainerHelper.cs",
              "RelativeDocumentMoniker": "wms\\ContainerHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\ContainerHelper.cs",
              "RelativeToolTip": "wms\\ContainerHelper.cs",
              "ViewState": "AQIAAJMAAAAAAAAAAAAEwJ8AAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-20T01:26:46.063Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 61,
              "Title": "TaskProcess.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\process\\TaskProcess.cs",
              "RelativeDocumentMoniker": "process\\TaskProcess.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\process\\TaskProcess.cs",
              "RelativeToolTip": "process\\TaskProcess.cs",
              "ViewState": "AQIAADsBAAAAAAAAAAAAAAkBAAApAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T05:08:37.766Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 62,
              "Title": "WMSHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\WMSHelper.cs",
              "RelativeDocumentMoniker": "wms\\WMSHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\WMSHelper.cs",
              "RelativeToolTip": "wms\\WMSHelper.cs",
              "ViewState": "AQIAAL8DAAAAAAAAAAAowNQDAAAiAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T01:23:14.175Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 63,
              "Title": "WCSCore.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\core\\WCSCore.cs",
              "RelativeDocumentMoniker": "core\\WCSCore.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\core\\WCSCore.cs",
              "RelativeToolTip": "core\\WCSCore.cs",
              "ViewState": "AQIAAPoBAAAAAAAAAAAUwBwCAAAkAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T01:02:23.502Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 64,
              "Title": "SpotCheckList.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\SpotCheckList.cs",
              "RelativeDocumentMoniker": "models\\SpotCheckList.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\SpotCheckList.cs",
              "RelativeToolTip": "models\\SpotCheckList.cs",
              "ViewState": "AQIAAAUAAAAAAAAAAADgvw8AAAATAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T01:14:58.347Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 65,
              "Title": "WCSHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\WCSHelper.cs",
              "RelativeDocumentMoniker": "wms\\WCSHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\WCSHelper.cs",
              "RelativeToolTip": "wms\\WCSHelper.cs",
              "ViewState": "AQIAAAcAAAAAAAAAAAAvwBcAAABUAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-02T05:49:03.551Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 66,
              "Title": "S7Helper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\device\\S7Helper.cs",
              "RelativeDocumentMoniker": "device\\S7Helper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\device\\S7Helper.cs",
              "RelativeToolTip": "device\\S7Helper.cs",
              "ViewState": "AQIAABIAAAAAAAAAAAD4vyEAAAAVAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-02T02:08:03.13Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 67,
              "Title": "LogHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\util\\LogHelper.cs",
              "RelativeDocumentMoniker": "util\\LogHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\util\\LogHelper.cs",
              "RelativeToolTip": "util\\LogHelper.cs",
              "ViewState": "AQIAAEcAAAAAAAAAAAAiwF4AAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-02T05:09:20.941Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 68,
              "Title": "LocationHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\LocationHelper.cs",
              "RelativeDocumentMoniker": "wms\\LocationHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\wms\\LocationHelper.cs",
              "RelativeToolTip": "wms\\LocationHelper.cs",
              "ViewState": "AQIAAKMAAAAAAAAAAAAhwLAAAAAkAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-17T05:11:09.267Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 69,
              "Title": "config.json",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\config\\config.json",
              "RelativeDocumentMoniker": "config\\config.json",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\config\\config.json",
              "RelativeToolTip": "config\\config.json",
              "ViewState": "AQIAAAAAAAAAAAAAAAAAAEAAAAAEAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2024-12-23T02:05:10.411Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 71,
              "Title": "PlcHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\PlcHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\device\\PlcHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\PlcHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\device\\PlcHelper.cs",
              "ViewState": "AQIAAAUAAAAAAAAAAAAQwBAAAAAcAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T04:12:16.752Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 70,
              "Title": "ApiHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\ApiHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\api\\ApiHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\ApiHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\api\\ApiHelper.cs",
              "ViewState": "AQIAABABAAAAAAAAAAAlwCMBAABPAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T02:02:59.606Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 72,
              "Title": "ModbusHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\ModbusHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\device\\ModbusHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\device\\ModbusHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\device\\ModbusHelper.cs",
              "ViewState": "AQIAABEAAAAAAAAAAAAIwAAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T04:14:15.274Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 74,
              "Title": "config.json",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\config\\config.json",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\config\\config.json",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\config\\config.json",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\config\\config.json",
              "ViewState": "AQIAAA8AAAAAAAAAAAAAABoAAAAQAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
              "WhenOpened": "2024-12-31T04:20:35.502Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 76,
              "Title": "WCSHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\wms\\WCSHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\wms\\WCSHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\wms\\WCSHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\wms\\WCSHelper.cs",
              "ViewState": "AQIAAH4AAAAAAAAAAAAIwIYAAAAdAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T05:38:44.79Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 73,
              "Title": "Program.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\Program.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\Program.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\Program.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\Program.cs",
              "ViewState": "AQIAADYAAAAAAAAAAAAcwD4AAAAZAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T05:14:25Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 75,
              "Title": "Settings.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\util\\Settings.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\util\\Settings.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\util\\Settings.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\util\\Settings.cs",
              "ViewState": "AQIAABAAAAAAAAAAAAAmwBUAAAAdAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T01:50:01.392Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 77,
              "Title": "LocCntrRel.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\LocCntrRel.cs",
              "RelativeDocumentMoniker": "models\\LocCntrRel.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\LocCntrRel.cs",
              "RelativeToolTip": "models\\LocCntrRel.cs",
              "ViewState": "AQIAAAkAAAAAAAAAAAAhwBcAAAA2AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2025-01-15T01:21:21.977Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 79,
              "Title": "DebugController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\DebugController.cs",
              "RelativeDocumentMoniker": "api\\DebugController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\api\\DebugController.cs",
              "RelativeToolTip": "api\\DebugController.cs",
              "ViewState": "AQIAACsAAAAAAAAAAAAcwCMAAAAbAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T01:00:13.604Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 78,
              "Title": "Settings.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\util\\Settings.cs",
              "RelativeDocumentMoniker": "util\\Settings.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\util\\Settings.cs",
              "RelativeToolTip": "util\\Settings.cs",
              "ViewState": "AQIAAFgAAAAAAAAAAIA4wHAAAAA8AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T02:06:34.089Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 83,
              "Title": "TN_YiKuOrder.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuOrder.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuOrder.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuOrder.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuOrder.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAswA8AAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T09:03:40.517Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 80,
              "Title": "Program.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\Program.cs",
              "RelativeDocumentMoniker": "Program.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\Program.cs",
              "RelativeToolTip": "Program.cs",
              "ViewState": "AQIAABUAAAAAAAAAAIA5wB4AAAAXAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T01:30:47.323Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 82,
              "Title": "TN_YiKuDetail.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuDetail.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuDetail.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuDetail.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\models\\TN_YiKuDetail.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAAAswAgAAAAgAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T09:05:26.913Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 81,
              "Title": "WMSHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\wms\\WMSHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\wms\\WMSHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\wms\\WMSHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\wms\\WMSHelper.cs",
              "ViewState": "AQIAANkCAAAAAAAAAAAiwOkCAABsAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T02:01:58.2Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 84,
              "Title": "Monitor.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\core\\Monitor.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\core\\Monitor.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\core\\Monitor.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\core\\Monitor.cs",
              "ViewState": "AQIAAKkAAAAAAAAAAAAqwLAAAAAVAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T09:07:38.861Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 85,
              "Title": "DigitHelper.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\DigitHelper.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\api\\DigitHelper.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\api\\DigitHelper.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\api\\DigitHelper.cs",
              "ViewState": "AQIAAPwCAAAAAAAAAAAiwAsDAAA7AAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-27T01:50:08.762Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 86,
              "Title": "WCSTask.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\WCSTask.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\models\\WCSTask.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\WCSTask.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\models\\WCSTask.cs",
              "ViewState": "AQIAACwAAAAAAAAAAAAawDUAAAATAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T08:23:43.982Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 87,
              "Title": "WMSCore.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\core\\WMSCore.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\core\\WMSCore.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\core\\WMSCore.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\core\\WMSCore.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAADwvwAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-30T00:55:31.526Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 89,
              "Title": "MQTTCore.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\core\\MQTTCore.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.HD\\core\\MQTTCore.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.HD\\core\\MQTTCore.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.HD\\core\\MQTTCore.cs",
              "ViewState": "AQIAAK8AAAAAAAAAAAAiwLgAAAAVAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-27T01:56:46.665Z",
              "EditorCaption": ""
            },
            {
              "$type": "Document",
              "DocumentIndex": 88,
              "Title": "WmsController.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\WmsController.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\api\\WmsController.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\api\\WmsController.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\api\\WmsController.cs",
              "ViewState": "AQIAAAwAAAAAAAAAAAAAAAAAAAAAAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T03:09:14.195Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 90,
              "Title": "TN_WMS_Const.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\TN_WMS_Const.cs",
              "RelativeDocumentMoniker": "..\\HH.WCS.Mobox3.TSSG\\models\\TN_WMS_Const.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.TSSG\\models\\TN_WMS_Const.cs",
              "RelativeToolTip": "..\\HH.WCS.Mobox3.TSSG\\models\\TN_WMS_Const.cs",
              "ViewState": "AQIAAAAAAAAAAAAAAADwvwkAAAAqAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-26T09:04:11.314Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 91,
              "Title": "CntrItemRel.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\CntrItemRel.cs",
              "RelativeDocumentMoniker": "models\\CntrItemRel.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\models\\CntrItemRel.cs",
              "RelativeToolTip": "models\\CntrItemRel.cs",
              "ViewState": "AQIAAEIAAAAAAAAAAAAAwEkAAABKAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-25T05:09:21.691Z"
            },
            {
              "$type": "Document",
              "DocumentIndex": 92,
              "Title": "GZRobot.cs",
              "DocumentMoniker": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\dispatch\\GZRobot.cs",
              "RelativeDocumentMoniker": "dispatch\\GZRobot.cs",
              "ToolTip": "F:\\hanhe\\storage\\HH.WCS.Mobox3\\HH.WCS.Mobox3.SXJK\\dispatch\\GZRobot.cs",
              "RelativeToolTip": "dispatch\\GZRobot.cs",
              "ViewState": "AQIAAAYAAAAAAAAAAADwvw0AAABEAAAA",
              "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
              "WhenOpened": "2024-12-23T02:05:21.841Z"
            }
          ]
        },
        {
          "DockedWidth": 113,
          "SelectedChildIndex": -1,
          "Children": [
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{34e76e81-ee4a-11d0-ae2e-00a0c90fffc3}"
            },
            {
              "$type": "Bookmark",
              "Name": "ST:0:0:{d78612c7-9962-4b83-95d9-268046dad23a}"
            }
          ]
        }
      ]
    }
  ]
}