33
schangxiang@126.com
2024-12-07 9597b1df912c1ca4401a74970d9472e268b3a9c2
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareSda
{
    /// <summary>
    /// 每个站点的写数据
    /// </summary>
    public class StationDBForWriteComm
    {
        /// <summary>
        /// 站点编号
        /// </summary>
        [Description("站点编号")]
        public string StationCode { get; set; }
 
        /// <summary>
        /// 补板工位允许进板
        /// </summary>
        [Description("补板工位允许进板")]
        public string W_AllowIn { get; set; }
 
        /// <summary>
        /// 读码数据解析完成
        /// </summary>
        [Description("读码数据解析完成")]
        public string W_DataFinish { get; set; }
 
        /// <summary>
        /// 码垛末板标志
        /// </summary>
        [Description("码垛末板标志")]
        public string W_EndMark { get; set; }
        /// <summary>
        /// 码垛首板标志
        /// </summary>
        [Description("码垛首板标志")]
        public string W_FirstMark { get; set; }
        /// <summary>
        /// 码垛任务号
        /// </summary>
        [Description("码垛任务号")]
        public string W_PalletizingTaskID { get; set; }
        /// <summary>
        /// 码垛是否旋转
        /// </summary>
        [Description("码垛是否旋转")]
        public string W_Rotate { get; set; }
        /// <summary>
        /// 码垛目标工位
        /// </summary>
        [Description("码垛目标工位")]
        public string W_PalletizingStation { get; set; }
        /// <summary>
        /// 码垛位置坐标X
        /// </summary>
        [Description("码垛位置坐标X")]
        public string W_PalletizingPlaceX { get; set; }
        /// <summary>
        /// 码垛位置坐标Y
        /// </summary>
        [Description("码垛位置坐标Y")]
        public string W_PalletizingPlaceY { get; set; }
        /// <summary>
        /// 码垛位置坐标Z
        /// </summary>
        [Description("码垛位置坐标Z")]
        public string W_PalletizingPlaceZ { get; set; }
        /// <summary>
        /// 码垛任务完成确认
        /// </summary>
        [Description("码垛任务完成确认")]
        public string W_PalletizingTaskFinish { get; set; }
        /// <summary>
        /// 码垛首末板
        /// </summary>
        [Description("码垛首末板")]
        public string W_PalletizingBucketType { get; set; }
        /// <summary>
        /// 齐套信息(998齐套,999异常出库)
        /// </summary>
        [Description("齐套信息(998齐套,999异常出库)")]
        public string W_KittingInfo { get; set; }
 
        /// <summary>
        /// 分配放料库位号
        /// </summary>
        [Description("分配放料库位号")]
        public string W_Destination_In { get; set; }
 
        /// <summary>
        /// 入库任务号
        /// </summary>
        [Description("入库任务号")]
        public string W_Inbound_TaskID { get; set; }
 
 
 
 
 
        /// <summary>
        /// 来料长度
        /// </summary>
        [Description("来料长度")]
        public string W_Length { get; set; }
 
        /// <summary>
        /// 来料宽度
        /// </summary>
        [Description("来料宽度")]
        public string W_Width { get; set; }
 
 
        /// <summary>
        /// 来料高度
        /// </summary>
        [Description("来料高度")]
        public string W_Height { get; set; }
 
        /// <summary>
        /// 模式(1:入库, 2:出库   3:强制出库)
        /// </summary>
        [Description("模式(1:入库, 2:出库   3:强制出库)")]
        public string W_Mode { get; set; }
 
        /// <summary>
        /// 是否旋转
        /// </summary>
        [Description("是否旋转")]
        public string W_IsRotate { get; set; }
 
 
 
        /// <summary>
        /// 包件长
        /// </summary>
        [Description("包件长")]
        public string W_PackageLength { get; set; }
 
        /// <summary>
        /// 包件宽
        /// </summary>
        [Description("包件宽")]
        public string W_PackageWidth { get; set; }
 
 
        /// <summary>
        /// 纸箱高
        /// </summary>
        [Description("纸箱高")]
        public string W_CartonHeight { get; set; }
 
        /// <summary>
        /// 纸箱宽
        /// </summary>
        [Description("纸箱宽")]
        public string W_CartonWidth { get; set; }
 
        /// <summary>
        /// 放料X偏移
        /// </summary>
        [Description("放料X偏移")]
        public string W_X_Offset { get; set; }
 
        /// <summary>
        /// 放料Y偏移
        /// </summary>
        [Description("放料Y偏移")]
        public string W_Y_Offset { get; set; }
 
 
 
 
        /// <summary>
        /// 入库完成已确认
        /// </summary>
        [Description("入库完成已确认")]
        public string W_InboundFinishConfirm { get; set; }
 
        /// <summary>
        /// 合包任务完成确认
        /// </summary>
        [Description("合包任务完成确认")]
        public string W_SurroundTaskFinish { get; set; }
        /// <summary>
        /// 合包任务号
        /// </summary>
        [Description("合包任务号")]
        public string W_SurroundTaskNo { get; set; }
        #region 出库相关
 
        /// <summary>
        /// 出库任务号
        /// </summary>
        [Description("出库任务号")]
        public string W_Outbound_TaskID { get; set; }
 
        /// <summary>
        /// 请求出库
        /// </summary>
        [Description("请求出库")]
        public string W_ReqOut { get; set; }
 
        /// <summary>
        /// 分配出库库位号
        /// </summary>
        [Description("分配出库库位号")]
        public string W_Destination_Out { get; set; }
 
        /// <summary>
        /// 出库完成已确认
        /// </summary>
        [Description("出库完成已确认")]
        public string W_OutboundFinishConfirm { get; set; }
 
        #endregion
 
    }
}