新框架PDA后端(祈禧6月初版本)
南骏 池
3 天以前 fca0719af6948fe8fa1e4f094f8e7dba339c7428
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
using SqlSugar;
 
namespace NewPdaSqlServer.entity;
 
/// <summary>
/// </summary>
[SugarTable("MES_ITEM_BL_DETAIL")]
public class MesItemBlDetail
{
    /// <summary>
    ///     ID
    /// </summary>
    [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
    public Guid Id { get; set; }
 
    /// <summary>
    ///     MID
    /// </summary>
    [SugarColumn(ColumnName = "mid")]
    public Guid? Mid { get; set; }
 
    /// <summary>
    ///     工单号
    /// </summary>
    [SugarColumn(ColumnName = "bld001")]
    public string Bld001 { get; set; }
 
    /// <summary>
    ///     物料编号
    /// </summary>
    [SugarColumn(ColumnName = "bld002")]
    public string Bld002 { get; set; }
 
    /// <summary>
    ///     物料名称
    /// </summary>
    [SugarColumn(ColumnName = "bld003")]
    public string Bld003 { get; set; }
 
    /// <summary>
    ///     规格型号
    /// </summary>
    [SugarColumn(ColumnName = "bld004")]
    public string Bld004 { get; set; }
 
    /// <summary>
    ///     颜色
    /// </summary>
    [SugarColumn(ColumnName = "bld005")]
    public string Bld005 { get; set; }
 
    /// <summary>
    ///     计划数量
    /// </summary>
    [SugarColumn(ColumnName = "bld006")]
    public decimal? Bld006 { get; set; }
 
    /// <summary>
    ///     申请数量
    /// </summary>
    [SugarColumn(ColumnName = "bld007")]
    public decimal? Bld007 { get; set; }
 
    /// <summary>
    ///     已领数量
    ///     默认值: ((0))
    /// </summary>
    [SugarColumn(ColumnName = "bld008")]
    public decimal? Bld008 { get; set; }
 
    /// <summary>
    ///     单位
    /// </summary>
    [SugarColumn(ColumnName = "bld009")]
    public string Bld009 { get; set; }
 
    /// <summary>
    ///     备注
    /// </summary>
    [SugarColumn(ColumnName = "bld010")]
    public string Bld010 { get; set; }
 
    /// <summary>
    ///     完结标识
    ///     默认值: ((0))
    /// </summary>
    [SugarColumn(ColumnName = "bld011")]
    public int? Bld011 { get; set; }
 
    /// <summary>
    ///     物料id
    /// </summary>
    [SugarColumn(ColumnName = "bld012")]
    public int? Bld012 { get; set; }
 
    /// <summary>
    ///     项次
    /// </summary>
    [SugarColumn(ColumnName = "bld013")]
    public int? Bld013 { get; set; }
 
    /// <summary>
    ///     ERP投料单行id
    /// </summary>
    [SugarColumn(ColumnName = "bld014")]
    public int? Bld014 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "bld015")]
    public string Bld015 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "bld016")]
    public string Bld016 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "bld017")]
    public string Bld017 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "bld018")]
    public string Bld018 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "bld019")]
    public string Bld019 { get; set; }
 
    /// <summary>
    /// </summary>
    [SugarColumn(ColumnName = "bld020")]
    public string Bld020 { get; set; }
 
    /// <summary>
    ///     关联的dab表主键
    /// </summary>
    [SugarColumn(ColumnName = "dabGuid")]
    public Guid? DabGuid { get; set; }
}