bus_cutplan_detail.cs
4.59 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("bus_cutplan_detail")]
public partial class bus_cutplan_detail
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// headkey
/// </summary>
[SugarColumn(ColumnDescription = "headkey", IsNullable = true)]
public Guid headKeys { get; set; }
/// <summary>
/// 工单号
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "工单号", IsNullable = true)]
public string iwpNo { get; set; }
/// <summary>
/// 追踪码
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "追踪码", IsNullable = true)]
public string barCode { get; set; }
/// <summary>
/// 切割长度
/// </summary>
[SugarColumn(ColumnDescription = "切割长度", IsNullable = true)]
public decimal cuttingLength { get; set; }
/// <summary>
/// 切割余量
/// </summary>
[SugarColumn(ColumnDescription = "切割余量", IsNullable = true)]
public decimal cutFlanConfig { get; set; }
/// <summary>
/// 状态(0:初始,10:激光打标,20:开始切割,30:切割完成)
/// </summary>
[SugarColumn(ColumnDescription = "状态(0:初始,10:激光打标,20:开始切割,30:切割完成)", IsNullable = true)]
public int cutState { get; set; }
/// <summary>
/// 切割开始时间
/// </summary>
[SugarColumn(ColumnDescription = "切割开始时间", IsNullable = true)]
public string cutStartTime { get; set; }
/// <summary>
/// 切割完成时间
/// </summary>
[SugarColumn(ColumnDescription = "切割完成时间", IsNullable = true)]
public string cutEndTime { get; set; }
/// <summary>
/// 切割优先级
/// </summary>
[SugarColumn(ColumnDescription = "切割优先级", IsNullable = true)]
public int cutLevel { 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>
/// createTime
/// </summary>
[SugarColumn(ColumnDescription = "createTime", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// createBy
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "createBy", IsNullable = true)]
public string createBy { get; set; }
/// <summary>
/// updateTime
/// </summary>
[SugarColumn(ColumnDescription = "updateTime", IsNullable = true)]
public string updateTime { get; set; }
/// <summary>
/// updateBy
/// </summary>
[SugarColumn(Length = 255, ColumnDescription = "updateBy", IsNullable = true)]
public string updateBy { get; set; }
/// <summary>
/// 是否成品管 0:否 1:是
/// </summary>
[SugarColumn(ColumnDescription = "是否成品管 0:否 1:是", IsNullable = true)]
public int isendproduct { get; set; }
/// <summary>
/// 工单头表key
/// </summary>
[SugarColumn(ColumnDescription = "工单头表key", IsNullable = true)]
public Guid workOrderHeadKeys { get; set; }
/// <summary>
/// 工单明细key
/// </summary>
[SugarColumn(ColumnDescription = "工单明细key", IsNullable = true)]
public Guid workOrderDetailKeys { get; set; }
/// <summary>
/// key
/// </summary>
[SugarColumn(ColumnDescription = "key", IsNullable = true)]
public Guid bodyKeys { get; set; }
}
}