base_work_order_flameCut.cs
5.33 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
using System;
using System.Collections.Generic;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_work_order_flameCut")]
public partial class base_work_order_flameCut : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 条形码
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "条形码", IsNullable = false)]
public string barcode { get; set; }
/// <summary>
/// 管子件号
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "管子件号", IsNullable = false)]
public string childPartsNo { get; set; }
/// <summary>
/// 母管外径
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "母管外径", IsNullable = true)]
public string end1_D { get; set; }
/// <summary>
/// 搭接角度
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "搭接角度", IsNullable = true)]
public string end1_angle { get; set; }
/// <summary>
/// 偏心距
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "偏心距", IsNullable = true)]
public string end1_centeroffest { get; set; }
/// <summary>
/// 转角
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "转角", IsNullable = true)]
public string end1_twist { get; set; }
/// <summary>
/// 坡口
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "坡口", IsNullable = true)]
public string end1_beveAngle { get; set; }
/// <summary>
/// 坡口类型
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "坡口类型", IsNullable = true)]
public string end1_Type { get; set; }
/// <summary>
/// 母管外径2
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "母管外径2", IsNullable = true)]
public string end2_D { get; set; }
/// <summary>
/// 搭接角度2
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "搭接角度2", IsNullable = true)]
public string end2_angle { get; set; }
/// <summary>
/// 偏心距2
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "偏心距2", IsNullable = true)]
public string end2_centeroffest { get; set; }
/// <summary>
/// 转角2
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "转角2", IsNullable = true)]
public string end2_twist { get; set; }
/// <summary>
/// 坡口2
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "坡口2", IsNullable = true)]
public string end2_beveAngle { get; set; }
/// <summary>
/// 坡口类型2
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "坡口类型2", IsNullable = true)]
public string end2_Type { get; set; }
/// <summary>
/// 材质
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "材质", IsNullable = true)]
public string material { 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 = 50, ColumnDescription = "中心距", IsNullable = true)]
public string lenth { 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; }
[SugarColumn(IsNullable = true)]
public Guid headKeys { get; set; }
[SugarColumn(IsNullable = true)]
public Guid Keys { get; set; }
/// <summary>
/// 切割类型
/// </summary>
[SugarColumn(Length = 10, ColumnDescription = "切割类型", IsNullable = true)]
public string cut_Type { get; set; }
}
public class Work_Order_FlameCut : base_work_order_flameCut
{
/// <summary>
/// 开孔信息
/// </summary>
public List<base_work_order_flameCut_d> Cut_D { get; set; }
}
}