jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.ERP
{
    /// <summary>
    /// 原材料出库 明细表
    /// </summary>
    [Table("TN_SYS_MATERIAL_STOCKOUT_DTL")]
    public class TN_ER_MATERIAL_STOCKOUT_DTLEntity
    {
        [Column("CN_GUID")]
        public string CN_GUID { get; set; }
 
        /// <summary>
        /// 领料单号
        /// </summary>
        [Column("CN_S_BOM_NO")]
        public string CN_S_BOM_NO { get; set; }
 
        [Column("CN_N_BOM_ID")]
        public int CN_N_BOM_ID { get; set; }
 
        /// <summary>
        /// 业务号
        /// </summary>
        [Column("CN_S_OP_NO")]
        public string CN_S_OP_NO { get; set; }
 
        /// <summary>
        /// 仓库编码
        /// </summary>
        [Column("CN_S_STOCK_CODE")]
        public string CN_S_STOCK_CODE { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        [Column("CN_S_ITEM_CODE")]
        public string CN_S_ITEM_CODE { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        [Column("CN_S_ITEM_NAME")]
        public string CN_S_ITEM_NAME { get; set; }
 
        /// <summary>
        /// 规格型号
        /// </summary>
        [Column("CN_S_ITEM_SPEC")]
        public string CN_S_ITEM_SPEC { get; set; }
 
        /// <summary>
        /// 条形码
        /// </summary>
        [Column("CN_S_LOT_NO")]
        public string CN_S_LOT_NO { get; set; }
 
        /// <summary>
        /// 仓储笼号
        /// </summary>
        [Column("CN_S_TRAY_CODE")]
        public string CN_S_TRAY_CODE { get; set; }
 
        /// <summary>
        /// 仓储笼重量
        /// </summary>
        [Column("CN_S_TRAY_WEIGHT")]
        public decimal CN_S_TRAY_WEIGHT { get; set; }
 
        /// <summary>
        /// 重量
        /// </summary>
        [Column("CN_F_WEIGHT")]
        public decimal CN_F_WEIGHT { get; set; }
 
        /// <summary>
        /// 数量
        /// </summary>
        [Column("CN_F_QTY")]
        public decimal CN_F_QTY { get; set; }
 
        /// <summary>
        /// 创建日期
        /// </summary>
        [Column("CN_DT_CREATE")]
        public DateTime CN_DT_CREATE { get; set; }
 
        /// <summary>
        /// 创建人
        /// </summary>
        [Column("CN_S_CREATOR")]
        public string CN_S_CREATOR { get; set; }
 
        /// <summary>
        /// 同步标记
        /// </summary>
        [Column("SynchroFlag")]
        public int SynchroFlag { get; set; }
 
        /// <summary>
        /// 任务号
        /// </summary>
        [Column("CN_S_TASK_NO")]
        public string CN_S_TASK_NO { get; set; }
 
        /// <summary>
        /// 生产线
        /// </summary>
        [Column("CN_S_LINE")]
        public string CN_S_LINE { get; set; }
 
        /// <summary>
        /// 出库日期
        /// </summary>
        [Column("CN_DT_OPERATION")]
        public DateTime CN_DT_OPERATION { get; set; }
    }
}