base_work_order_bends.cs
4.57 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_work_order_bends")]
public partial class base_work_order_bends : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 船号
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "船号", IsNullable = true)]
public string shipNo { get; set; }
/// <summary>
/// 首弯转角
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "首弯转角", IsNullable = true)]
public string cornerOne { get; set; }
/// <summary>
/// 装配转角
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "装配转角", IsNullable = true)]
public string mountingCorner { get; set; }
/// <summary>
/// 转角
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "转角", IsNullable = true)]
public string corner { get; set; }
/// <summary>
/// 弯角
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "弯角", IsNullable = true)]
public string curve { 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 = false)]
public string updateBy { get; set; }
[SugarColumn(IsNullable = true)]
public Guid headKeys { 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 pipePartsNo { 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 material { get; set; }
/// <summary>
/// 管材外径
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "管材外径", IsNullable = true)]
public string externalDiameter { get; set; }
/// <summary>
/// 弯管半径
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "弯管半径", IsNullable = true)]
public string radius { get; set; }
/// <summary>
/// 下料长度
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "下料长度", IsNullable = true)]
public string length { get; set; }
/// <summary>
/// 直段
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "直段", IsNullable = true)]
public string straightSegment { get; set; }
/// <summary>
/// 1端扣减量
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "1端扣减量", IsNullable = true)]
public string deduction1 { get; set; }
/// <summary>
/// 2端扣减量
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "2端扣减量", IsNullable = true)]
public string deduction2 { get; set; }
/// <summary>
/// 1端附件
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "1端附件", IsNullable = true)]
public string file1 { get; set; }
/// <summary>
/// 2端附件
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "2端附件", IsNullable = true)]
public string file2 { get; set; }
}
}