base_work_order_mounting.cs
5.18 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_work_order_mounting")]
public partial class base_work_order_mounting : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 工单code 生产订单号
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "工单code 生产订单号", IsNullable = false)]
public string workOrderCode { get; set; }
/// <summary>
/// 产线 小经:line1 中1:line2 中2:line3 大经:line4
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "产线 小经:line1 中1:line2 中2:line3 大经:line4", IsNullable = false)]
public string lineCode { get; set; }
/// <summary>
/// 工件编码
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "工件编码", IsNullable = false)]
public string workPieceNo { get; set; }
/// <summary>
/// 项目号
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "项目号", IsNullable = false)]
public string projectNo { get; set; }
/// <summary>
/// 管件号
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "管件号", IsNullable = false)]
public string pipePartsNo { get; set; }
/// <summary>
/// 组立信息
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "组立信息", IsNullable = true)]
public string assemblageInfo { get; set; }
/// <summary>
/// 系列
/// </summary>
[SugarColumn(Length = 20, ColumnDescription = "系列", IsNullable = true)]
public string range { get; set; }
/// <summary>
/// 直径
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "直径", IsNullable = true)]
public string diameter { get; set; }
/// <summary>
/// 壁厚
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "壁厚", IsNullable = true)]
public string thickness { get; set; }
/// <summary>
/// 等级
/// </summary>
[SugarColumn(Length = 10, ColumnDescription = "等级", IsNullable = true)]
public string level { get; set; }
/// <summary>
/// 流向1
/// </summary>
[SugarColumn(Length = 10, ColumnDescription = "流向1 ", IsNullable = true)]
public string flowOrientation1 { get; set; }
/// <summary>
/// 流向2
/// </summary>
[SugarColumn(Length = 10, ColumnDescription = "流向2 ", IsNullable = true)]
public string flowOrientation2 { get; set; }
/// <summary>
/// 组件1
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "组件1", IsNullable = true)]
public string assembly1 { get; set; }
/// <summary>
/// 组件2
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "组件2", IsNullable = true)]
public string assembly2 { get; set; }
/// <summary>
/// 组件3
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "组件3", IsNullable = true)]
public string assembly3 { get; set; }
/// <summary>
/// 备用1
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "备用1", IsNullable = true)]
public string extend1 { get; set; }
/// <summary>
/// 备用2
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "备用2", IsNullable = true)]
public string extend2 { get; set; }
/// <summary>
/// 备用3
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "备用3", IsNullable = true)]
public string extend3 { get; set; }
/// <summary>
/// 备用4
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "备用4", IsNullable = true)]
public string extend4 { get; set; }
/// <summary>
/// 操作人员
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "操作人员", IsNullable = false)]
public string createBy { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[SugarColumn(ColumnDescription = "操作时间", IsNullable = false)]
public DateTime createTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
public DateTime updateTime { get; set; }
/// <summary>
/// 更新人员
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "更新人员", IsNullable = true)]
public string updateby { get; set; }
/// <summary>
/// 主表关联字段
/// </summary>
[SugarColumn(ColumnDescription = "主表关联字段", IsNullable = true)]
public Guid headKeys { get; set; }
}
}