schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
using Admin.NET.Application;
using Admin.NET.Core;
 
/*
 * @author : 刘文奇
 * @date : 2024/5/16上午9:07:01
 * @desc : 采购订单明细
 */
namespace Admin.NET.Application.Entity
{
    /// <summary>
    /// 采购订单明细
    /// </summary>
    [SugarTable("wms_order_purchase_details", "采购订单明细")]
    public class WmsOrderPurchaseDetails : EntityBase
    {
 
 
        /// <summary>
        /// PO单ID
        /// </summary>
        [Required]
 
        [SugarColumn(ColumnName = "PoId", ColumnDescription = "PO单ID")]
        public long PoId { get; set; }
 
 
        /// <summary>
        /// PO单号
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "PoNo", ColumnDescription = "PO单号", Length = 50)]
 
        public string PoNo { get; set; }
 
 
        /// <summary>
        /// 行号
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "PoLineNumber", ColumnDescription = "行号", Length = 50)]
 
        public string PoLineNumber { get; set; }
 
 
        /// <summary>
        /// 物料编号
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
 
        public string MaterialCode { get; set; }
 
 
        /// <summary>
        /// 物料名称
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
 
        public string MaterialName { get; set; }
 
 
        /// <summary>
        /// 单位
        /// </summary>
        [SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 50, IsNullable = true)]
 
        public string? Unit { get; set; }
 
 
        /// <summary>
        /// 数量
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量", Length = 10, DecimalDigits = 3)]
        public decimal Quantity { get; set; }
 
 
        /// <summary>
        /// 已收数量
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "GoodsQuantity", ColumnDescription = "已收数量", Length = 10, DecimalDigits = 3)]
        public decimal GoodsQuantity { get; set; }
 
        /// <summary>
        /// 标准包装
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "SNP", ColumnDescription = "标准包装", Length = 10, DecimalDigits = 3)]
        public decimal SNP { get; set; }
 
        /// <summary>
        /// 已创建ASN数量
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "CreateASNQuantity", ColumnDescription = "已创建ASN数量", Length = 10, DecimalDigits = 3)]
        public decimal CreateASNQuantity { get; set; }
 
 
        /// <summary>
        /// 条码打印数量
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "PrintQuantity", ColumnDescription = "条码打印数量", Length = 10, DecimalDigits = 3)]
        public decimal PrintQuantity { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        [Required]
 
        [SugarColumn(ColumnName = "PoDetailStatus", ColumnDescription = "状态")]
        public OrderStatusEnum PoDetailStatus { get; set; }
 
 
        /// <summary>
        /// 状态名称
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "PoDetailStatusName", ColumnDescription = "状态名称", Length = 255)]
 
        public string PoDetailStatusName { get; set; }
 
 
        /// <summary>
        /// 供应商编号
        /// </summary>
        //[SugarColumn(ColumnName = "SupplierCode", ColumnDescription = "供应商编号", Length = 50)]
 
        public string SupplierCode { get; set; }
 
 
        /// <summary>
        /// 供应商名称
        /// </summary>
        //[SugarColumn(ColumnName = "SupplierName", ColumnDescription = "供应商名称", Length = 50)]
 
        public string SupplierName { get; set; }
 
 
        /// <summary>
        /// ERP单号
        /// </summary>
        [SugarColumn(ColumnName = "ErpOrderNo", ColumnDescription = "ERP单号", Length = 50)]
 
        public string? ErpOrderNo { get; set; }
 
 
        /// <summary>
        /// ERP库存地
        /// </summary>
        [SugarColumn(ColumnName = "ErpCode", ColumnDescription = "ERP库存地", Length = 50)]
 
        public string? ErpCode { get; set; }
 
 
        /// <summary>
        /// 计划开始时间
        /// </summary>
        [SugarColumn(ColumnName = "PlannedStartTime", ColumnDescription = "计划开始时间")]
 
        public DateTime? PlannedStartTime { get; set; }
 
 
        /// <summary>
        /// 计划结束时间
        /// </summary>
 
        [SugarColumn(ColumnName = "PlannedEndTime", ColumnDescription = "计划结束时间")]
        public DateTime? PlannedEndTime { get; set; }
 
 
 
 
 
 
 
 
 
        /// <summary>
        /// 工厂ID
        /// </summary>
 
        [SugarColumn(ColumnName = "FactoryId", ColumnDescription = "工厂ID")]
        public long? FactoryId { get; set; }
 
 
        /// <summary>
        /// 工厂名称
        /// </summary>
        [SugarColumn(ColumnName = "FactoryName", ColumnDescription = "工厂名称", Length = 255)]
 
        public string? FactoryName { get; set; }
 
 
        /// <summary>
        /// 工厂编号
        /// </summary>
        [SugarColumn(ColumnName = "FactoryCode", ColumnDescription = "工厂编号", Length = 50)]
 
        public string? FactoryCode { get; set; }
 
        /// <summary>
        /// 供应商批次
        /// </summary>
        [SugarColumn(ColumnName = "SupplierBatch", ColumnDescription = "批次", Length = 50)]
 
        public string? SupplierBatch { get; set; }
 
 
        /// <summary>
        /// 批次
        /// </summary>
        [SugarColumn(ColumnName = "Batch", ColumnDescription = "供应商批次", Length = 50)]
 
        public string? Batch { get; set; }
 
        /// <summary>
        /// 收货道口 ly0702-asn关联用
        /// </summary>
        [SugarColumn(ColumnName = "Dock", ColumnDescription = "收货道口", Length = 50)]
 
        public string? Dock { get; set; }
 
        /// <summary>
        /// 项目号 ly0702-asn关联用
        /// </summary>
        [SugarColumn(ColumnName = "ProjectNo", ColumnDescription = "项目号", Length = 50)]
 
        public string? ProjectNo { get; set; }
    }
}