bus_workOrder_detail_sequence.cs
3.16 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
using SqlSugar;
using System;
namespace Hh.Mes.POJO.WebEntity.bus
{
[SugarTable("bus_workOrder_detail_sequence")]
public partial class bus_workOrder_detail_sequence
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 本身的Key
/// </summary>
[SugarColumn(ColumnDescription = "本身的Key", IsNullable = true)]
public Guid bodyKeys { get; set; }
/// <summary>
/// 工单头Key
/// </summary>
[SugarColumn(ColumnDescription = "工单头Key", IsNullable = true)]
public Guid headKeys { get; set; }
/// <summary>
/// 工单明细的Key
/// </summary>
[SugarColumn(ColumnDescription = "工单明细的Key", IsNullable = true)]
public Guid detailKeys { get; set; }
/// <summary>
/// 工单号
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "工单号", IsNullable = true)]
public string workOrderCode { get; set; }
/// <summary>
/// 工单流水号 传给plc的唯一工件任务号
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "工单流水号 传给plc的唯一工件任务号", IsNullable = true)]
public string workOrderSequence { get; set; }
/// <summary>
/// 线体Code
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "线体Code", IsNullable = true)]
public string lineCode { get; set; }
/// <summary>
/// 工位Code
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "工位Code", IsNullable = true)]
public string stationCode { get; set; }
/// <summary>
/// 设备Code
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "设备Code", IsNullable = true)]
public string equipmentCode { get; set; }
[SugarColumn(IsNullable = true)]
public int isDelete { get; set; }
/// <summary>
/// 建立时间
/// </summary>
[SugarColumn(ColumnDescription = "建立时间", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// 建立者
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "建立者", IsNullable = true)]
public string createBy { 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(Length = 50, IsNullable = true)]
public string nextstationCode { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string nextWorkOrderSequence { get; set; }
[SugarColumn(IsNullable = true)]
public int state { get; set; }
}
}