BaseWorkOrderHead.cs
6.61 KB
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace HHECS.Model.Entities
{
/// <summary>
/// 接口工单主表
/// </summary>
[Table("base_work_order_head")]
[Serializable]
public class BaseWorkOrderHead : BaseEntityCU<int>
{
/// <summary>
/// 主键
/// </summary>
[Column("iD")]
public int iD { get; set; }
/// <summary>
/// 工单code 生产订单号
/// </summary>
[Column("workOrderCode")]
public string workOrderCode { get; set; }
/// <summary>
/// 产线 小经:line3 中1:line3 中2:line3 大经:line4
/// </summary>
[Column("lineCode")]
public string lineCode { get; set; }
/// <summary>
/// 工件编码
/// </summary>
[Column("workPieceNo")]
public string workPieceNo { get; set; }
/// <summary>
/// 项目号
/// </summary>
[Column("projectNo")]
public string projectNo { get; set; }
/// <summary>
/// 管件号
/// </summary>
[Column("pipePartsNo")]
public string pipePartsNo { get; set; }
/// <summary>
/// 管件9位码
/// </summary>
[Column("pipePartsCode")]
public string pipePartsCode { get; set; }
/// <summary>
/// 涂装代码
/// </summary>
[Column("paintCode")]
public string paintCode { get; set; }
/// <summary>
/// 开工日期
/// </summary>
[Column("startWorkDate")]
public DateTime startWorkDate { get; set; }
/// <summary>
/// 组立信息
/// </summary>
[Column("assemblageInfo")]
public string assemblageInfo { get; set; }
/// <summary>
/// 系列
/// </summary>
[Column("range")]
public string range { get; set; }
/// <summary>
/// 直径
/// </summary>
[Column("diameter")]
public string diameter { get; set; }
/// <summary>
/// 壁厚
/// </summary>
[Column("thickness")]
public string thickness { get; set; }
/// <summary>
/// 等级
/// </summary>
[Column("level")]
public string level { get; set; }
/// <summary>
/// 物资编码 管材物资编码
/// </summary>
[Column("materielCode")]
public string materielCode { get; set; }
/// <summary>
/// 切断长
/// </summary>
[Column("cutLength")]
public int cutLength { get; set; }
/// <summary>
/// 流向1 切断管材的流向
/// </summary>
[Column("flowOrientation1")]
public string flowOrientation1 { get; set; }
/// <summary>
/// 流向2 管部件在产线完工后的流向,如果为空则代表完工
/// </summary>
[Column("flowOrientation2")]
public string flowOrientation2 { get; set; }
/// <summary>
/// 附件1 物资编码(如果是套管,传管材物资编码)
/// </summary>
[Column("attachment1")]
public string attachment1 { get; set; }
/// <summary>
/// 说明1 S搭焊/B对焊
/// </summary>
[Column("instructions1")]
public string instructions1 { get; set; }
/// <summary>
/// 坡口 无坡口信息为空/有坡口显示角度
/// </summary>
[Column("bevels1")]
public string bevels1 { get; set; }
/// <summary>
/// 附件2 物资编码
/// </summary>
[Column("attachment2")]
public string attachment2 { get; set; }
/// <summary>
/// 说明2 S搭焊/B对焊
/// </summary>
[Column("instructions2")]
public string instructions2 { get; set; }
/// <summary>
/// 坡口2
/// </summary>
[Column("bevels2")]
public string bevels2 { get; set; }
/// <summary>
/// 扭转角度 有法兰转角时,存在数据
/// </summary>
[Column("turningAngle")]
public string turningAngle { get; set; }
/// <summary>
/// 备用1
/// </summary>
[Column("extend1")]
public string extend1 { get; set; }
/// <summary>
/// 备用2
/// </summary>
[Column("extend2")]
public string extend2 { get; set; }
/// <summary>
/// 备用3
/// </summary>
[Column("extend3")]
public string extend3 { get; set; }
/// <summary>
/// 备用4
/// </summary>
[Column("extend4")]
public string extend4 { get; set; }
/// <summary>
/// 操作人员
/// </summary>
[Column("createBy")]
public string createBy { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[Column("createTime")]
public DateTime createTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Column("updateTime")]
public DateTime updateTime { get; set; }
/// <summary>
/// 更新人员
/// </summary>
[Column("updateby")]
public string updateby { get; set; }
[Column("keys")]
public Guid keys { get; set; }
/// <summary>
/// 处理状态
/// </summary>
[Column("processStatus")]
public string processStatus { get; set; } = "0";
/// <summary>
/// 处理结果信息
/// </summary>
[Column("processMsg")]
public string processMsg { get; set; }
[Column("cancelTime")]
public DateTime cancelTime { get; set; }
/// <summary>
/// 条码 九位码-涂装号
/// </summary>
[Column("barCode")]
public string barCode { get; set; }
/// <summary>
/// 喷码 : 附件1+转角/坡口+九位码+系列+组立+坡口/附件2+转角
/// </summary>
[Column("paintPrintCode")]
public string paintPrintCode { get; set; }
/// <summary>
/// 附件1打印信息
/// </summary>
[Column("attachment1PrintInfo")]
public string attachment1PrintInfo { get; set; }
/// <summary>
///附件2打印信息
/// </summary>
[Column("attachment2PrintInfo")]
public string attachment2PrintInfo { get; set; }
[Column("planCode")]
public string planCode { get; set; }
}
}