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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using HH.WMS.Entitys.Common;
using HH.WMS.Entitys.Basic;
 
namespace HH.WMS.Entitys
{
    [Table("TN_WM_TASK")]
    public class TN_WM_TASKEntity : BaseEntity
    {
        [Column("CN_S_TASK_NO")]
        public string CN_S_TASK_NO { get; set; }
 
        [Column("CN_S_TASK_TYPE")]
        public string CN_S_TASK_TYPE { get; set; }
 
        [Column("CN_S_FROM_OP")]
        public string CN_S_FROM_OP { get; set; }
 
        [Column("CN_S_FROM_NO")]
        public string CN_S_FROM_NO { get; set; }
 
        [Column("CN_S_TRAY_CODE")]
        public string CN_S_TRAY_CODE { get; set; }
 
        [Column("CN_S_STOCK_CODE")]
        public string CN_S_STOCK_CODE { get; set; }
 
        [Column("CN_S_START_AREA")]
        public string CN_S_START_AREA { get; set; }
 
        [Column("CN_S_START_BIT")]
        public string CN_S_START_BIT { get; set; }
 
        [Column("CN_S_END_AREA")]
        public string CN_S_END_AREA { get; set; }
 
        [Column("CN_S_END_BIT")]
        public string CN_S_END_BIT { get; set; }
 
        [Column("CN_S_STATE")]
        public string CN_S_STATE { get; set; }
 
        [Column("CN_T_START")]
        public DateTime? CN_T_START { get; set; }
 
        [Column("CN_T_END")]
        public DateTime? CN_T_END { get; set; }
 
        [Column("CN_S_BF_TASK_NO")]
        public string CN_S_BF_TASK_NO { get; set; }
 
        [Column("CN_S_AF_TASK_NO")]
        public string CN_S_AF_TASK_NO { get; set; }
 
        [Column("CN_N_PRIORITY")]
        public int? CN_N_PRIORITY { get; set; }
 
        [Column("CN_S_REMARK")]
        public string CN_S_REMARK { get; set; }
 
        [Column("CN_S_CREATOR")]
        public string CN_S_CREATOR { get; set; }
 
        [Column("CN_S_CREATOR_BY")]
        public string CN_S_CREATOR_BY { get; set; }
 
        [Column("CN_T_CREATE")]
        public DateTime? CN_T_CREATE { get; set; }
 
        [Column("CN_S_MODIFY")]
        public string CN_S_MODIFY { get; set; }
 
        [Column("CN_S_MODIFY_BY")]
        public string CN_S_MODIFY_BY { get; set; }
 
        [Column("CN_T_MODIFY")]
        public DateTime? CN_T_MODIFY { get; set; }
 
        [Column("CN_B_SENDAMS")]
        public bool CN_B_SENDAMS { get; set; }
 
        [Column("CN_S_PROJECT_CODE")]
        public string CN_S_PROJECT_CODE { get; set; }
        /// <summary>
        /// 起始库区是否管控数量
        /// </summary>
        [Column("CN_C_START_IS_CONTROL_QTY")]
        public string CN_C_START_IS_CONTROL_QTY { get; set; }
        /// <summary>
        /// 结束库区是否控制数量
        /// </summary>
        [Column("CN_C_END_IS_CONTROL_QTY")]
        public string CN_C_END_IS_CONTROL_QTY { get; set; }
        /// <summary>
        /// 起始库区是否管控库存
        /// </summary>
        [Column("CN_S_START_CONTROL_INV")]
        public string CN_S_START_CONTROL_INV { get; set; }
        /// <summary>
        /// 结束库区是否控制库存
        /// </summary>
        [Column("CN_S_END_CONTROL_INV")]
        public string CN_S_END_CONTROL_INV { get; set; }
        /// <summary>
        /// 开始货位所在库区类型
        /// </summary>
        [Column("CN_S_START_AREA_TYPE")]
        public string CN_S_START_AREA_TYPE { get; set; }
        /// <summary>
        /// 结束货位所在库区类型
        /// </summary>
        [Column("CN_S_END_AREA_TYPE")]
        public string CN_S_END_AREA_TYPE { get; set; }
        /// <summary>
        /// 扩展字段1
        /// </summary>
        [Column("CN_S_EXT1")]
        public string CN_S_EXT1 { get; set; }
        /// <summary>
        /// 扩展字段2
        /// </summary>
        [Column("CN_S_EXT2")]
        public string CN_S_EXT2 { get; set; }
 
        /// <summary>
        /// 扩展字段3
        /// </summary>
        [Column("CN_S_EXT3")]
        public string CN_S_EXT3 { get; set; }
 
        public AutoBomStockAreaEntity EndAreaEntity { get; set; }
 
 
        public List<string> END_AREAS = new List<string>();
        public string mesInfo { get; set; }
    }
}