chengsc
2025-04-29 9a7c4fea85f85824dddeac9e6ce6ebb75ccee679
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WCS.Application;
 
/// <summary>
/// AGV位置枚举
/// </summary>
[Description("AGV位置枚举")]
public enum AGVStaionEnum
{
    /// <summary>
    /// 提升机(放)
    /// </summary>
    [Description("提升机(放)")]
    A1,
    /// <summary>
    /// 提升机(取)
    /// </summary>
    [Description("提升机(取)")]
    A2,
    /// <summary>
    /// 成品工位南
    /// </summary>
    [Description("成品工位南")]
    B1,
    /// <summary>
    /// 成品工位北
    /// </summary>
    [Description("成品工位北")]
    B2,
    /// <summary>
    /// 缓存工位南
    /// </summary>
    [Description("缓存工位南")]
    C1,
    /// <summary>
    /// 缓存工位北
    /// </summary>
    [Description("缓存工位北")]
    C2,
    /// <summary>
    /// 拆托机
    /// </summary>
    [Description("拆托机")]
    D1,
    ///// <summary>
    ///// 成品缓存区域
    ///// </summary>
    //[Description("成品缓存区域")]
    //E1,
    ///// <summary>
    ///// 托盘缓存区域
    ///// </summary>
    //[Description("托盘缓存区域")]
    //E2,
    /// <summary>
    /// 原材料仓
    /// </summary>
    [Description("原材料仓")]
    F1,
    /// <summary>
    /// 原材料仓测试
    /// </summary>
    [Description("原材料仓测试")]
    F2,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z11,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z12,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z13,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z21,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z22,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z23,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z31,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z32,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z33,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z41,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z42,
    /// <summary>
    /// 成品缓存区域
    /// </summary>
    [Description("成品缓存区域")]
    Z43,
    /// <summary>
    /// 托盘缓存区域
    /// </summary>
    [Description("托盘缓存区域")]
    Z51,
    /// <summary>
    /// 托盘缓存区域
    /// </summary>
    [Description("托盘缓存区域")]
    Z52,
    /// <summary>
    /// 托盘缓存区域
    /// </summary>
    [Description("托盘缓存区域")]
    Z53,
}