zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
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
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")]
    public class TN_SYS_MATERIAL_STOCKOUTEntity
    {
        /// <summary>
        /// 标识
        /// </summary>
        [Column("CN_ID")]
        public int CN_ID { 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_DT_REQUIRE")]
        public string CN_DT_REQUIRE { get; set; }
 
        /// <summary>
        /// 生产线
        /// </summary>
        [Column("CN_S_LINE")]
        public string CN_S_LINE { 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_STATE")]
        public string CN_S_STATE { 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; }
    }
}