|
1
|
using System;
|
|
2
3
|
using SqlSugar;
|
|
4
|
namespace Hh.Mes.POJO.Entity
|
|
5
|
{
|
|
6
7
|
[SugarTable("api_workOrder_detail")]
public partial class api_workOrder_detail
|
|
8
9
|
{
/// <summary>
|
|
10
|
/// 主键
|
|
11
|
/// </summary>
|
|
12
13
14
15
16
17
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = true)]
public Guid headKeys { get; set; }
|
|
18
|
/// <summary>
|
|
19
|
/// 工序code
|
|
20
|
/// </summary>
|
|
21
22
23
|
[SugarColumn(Length = 40, ColumnDescription = "工序code", IsNullable = true)]
public string oprSequenceCode { get; set; }
|
|
24
|
|
|
25
|
/// <summary>
|
|
26
|
/// 计划开始时间
|
|
27
|
/// </summary>
|
|
28
29
30
|
[SugarColumn(ColumnDescription = "计划开始时间", IsNullable = true)]
public DateTime planStartTime { get; set; }
|
|
31
|
/// <summary>
|
|
32
|
/// 计划结束时间
|
|
33
|
/// </summary>
|
|
34
35
36
|
[SugarColumn(ColumnDescription = "计划结束时间", IsNullable = true)]
public DateTime planEndTime { get; set; }
|
|
37
|
/// <summary>
|
|
38
|
/// 管段物料编码 切割工序
|
|
39
|
/// </summary>
|
|
40
41
42
|
[SugarColumn(Length = 40, ColumnDescription = "管段物料编码 切割工序", IsNullable = true)]
public string cutMaterCode { get; set; }
|
|
43
|
/// <summary>
|
|
44
|
/// 管段切割长度 切割工序
|
|
45
|
/// </summary>
|
|
46
47
48
|
[SugarColumn(ColumnDescription = "管段切割长度 切割工序", IsNullable = true)]
public double cuttingLength { get; set; }
|
|
49
|
/// <summary>
|
|
50
|
/// 焊口形式对焊BW/插焊SW/支架角焊缝FW 焊接工序
|
|
51
|
/// </summary>
|
|
52
53
54
|
[SugarColumn(Length = 40, ColumnDescription = "焊口形式对焊BW/插焊SW/支架角焊缝FW 焊接工序", IsNullable = true)]
public string weldType { get; set; }
|
|
55
|
/// <summary>
|
|
56
|
/// 焊口号 焊接工序
|
|
57
|
/// </summary>
|
|
58
59
60
|
[SugarColumn(Length = 40, ColumnDescription = "焊口号 焊接工序", IsNullable = true)]
public string weldNo { get; set; }
|
|
61
|
/// <summary>
|
|
62
|
/// 焊口物料 焊接工序
|
|
63
|
/// </summary>
|
|
64
65
66
67
68
69
70
71
72
|
[SugarColumn(Length = 40, ColumnDescription = "焊口物料 焊接工序", IsNullable = true)]
public string weldMaterCode { get; set; }
/// <summary>
/// 是否成品管0:否,1:是
/// </summary>
[SugarColumn(ColumnDescription = "是否成品管0:否,1:是", IsNullable = true)]
public int isEndProduct { get; set; }
|
|
73
|
|
|
74
75
76
|
/// <summary>
/// 扩展字段1
/// </summary>
|
|
77
78
|
[SugarColumn(Length = 40, ColumnDescription = "扩展字段3", IsNullable = true)]
public string extend1 { get; set; }
|
|
79
80
81
82
|
/// <summary>
/// 扩展字段2
/// </summary>
|
|
83
84
85
|
[SugarColumn(Length = 40, ColumnDescription = "扩展字段4", IsNullable = true)]
public string extend2 { get; set; }
|
|
86
87
|
/// <summary>
|
|
88
|
/// extendComp1
|
|
89
|
/// </summary>
|
|
90
91
|
[SugarColumn(Length = 40, ColumnDescription = "扩展字段1", IsNullable = true)]
public string extendComp1 { get; set; }
|
|
92
93
|
/// <summary>
|
|
94
|
/// extendComp2
|
|
95
|
/// </summary>
|
|
96
97
98
|
[SugarColumn(Length = 40, ColumnDescription = "扩展字段2", IsNullable = true)]
public string extendComp2 { get; set; }
|
|
99
100
|
/// <summary>
|
|
101
|
/// extendComp3
|
|
102
103
|
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "扩展字段3", IsNullable = true)]
|
|
104
|
public string extendComp3 { get; set; }
|
|
105
106
|
/// <summary>
|
|
107
|
/// extendComp4
|
|
108
109
|
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "扩展字段4", IsNullable = true)]
|
|
110
|
public string extendComp4 { get; set; }
|
|
111
112
113
114
115
116
117
118
119
120
121
|
/// <summary>
/// 建立时间
/// </summary>
[SugarColumn(ColumnDescription = "建立时间", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// 建立者
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "建立者", IsNullable = true)]
|
|
122
|
public string createBy { get; set; }
|
|
123
|
|
|
124
|
}
|
|
125
|
}
|