1
huangxiaoqiang
2025-10-24 927ce822017ff8459be84b742d519970ca614096
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models.Order
{
    /// <summary>
    /// 生产领料出库单据明细表
    ///</summary>
    [SugarTable("Dt_ProductionOutboundOrderDetail")]
    public class Dt_ProductionOutboundOrderDetail : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 出库单据主键ID
        /// </summary>
        [SugarColumn(ColumnName = "OrderId", Length = 255)]
        public int OrderId { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        [SugarColumn(ColumnName = "MaterielCode", Length = 255)]
        public string MaterielCode { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        [SugarColumn(ColumnName = "MaterielName", Length = 255)]
        public string MaterielName { get; set; }
 
        /// <summary>
        /// 需求分类
        /// </summary>
 
        [SugarColumn(ColumnName = "DemandClassification", Length = 255)]
        public string DemandClassification { get; set; }
 
        /// <summary>
        /// 出库数量
        /// </summary>
        [SugarColumn(ColumnName = "OrderQuantity")]
        public decimal OrderQuantity { get; set; }
 
 
        /// <summary>
        /// 未出库数量
        /// </summary>
        [SugarColumn(ColumnName = "NotOutQuantity")]
        public decimal NotOutQuantity { get; set; }
 
        /// <summary>
        /// 已出库数量
        /// </summary>
        [SugarColumn(ColumnName = "OverOutQuantity")]
        public decimal OverOutQuantity { get; set; }
 
        /// <summary>
        /// 单据明细状态
        /// </summary>
        [SugarColumn(ColumnName = "OrderDetailStatus")]
        public int OrderDetailStatus { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnName = "Remark", Length = 255)]
        public string Remark { get; set; }
    }
}