lss
2025-07-07 ba528c7a15058967ee3af7364035209aa0048025
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
using HH.WCS.DaYang.models;
using SqlSugar;
 
namespace HH.WCS.DaYang.LISTA.models
{
    /// <summary>
    /// 配盘单
    /// </summary>
    [SugarTable("TN_Distribution_CNTR")]
    public class TN_Distribution_CNTR : BaseModel
    {
        public string S_STATE_PRE { get; set; }
        public int N_REVIEW_RESULT { get; set; }
        public string S_REVIEW_COMMENT { get; set; }
 
        public string S_DEPART_ID { get; set; }
        public string S_DEPART_NAME { get; set; }
        public string S_MODIFIER_ID { get; set; }
        public string S_MODIFIER_NAME { get; set; }
 
 
        public int N_CREATEMETHOD { get; set; }
 
        public string G_SOURCE_OBJ { get; set; }
 
 
        /// <summary>
        ///  配盘单号
        /// </summary>
        public string S_DC_NO { get; set; }
 
        public string S_WH_CODE { get; set; }
 
        public string S_AREA_CODE { get; set; }
        public string S_LOC_CODE { get; set; }
 
        /// <summary>
        ///  业务状态
        /// </summary>
        public int N_B_STATE { get; set; }
 
        /// <summary>
        ///  容器编码
        /// </summary>
        public string S_CNTR_CODE { get; set; }
        /// <summary>
        ///  出库区域编码
        /// </summary>
        public string S_EXIT_AREA_CODE { get; set; }
        /// <summary>
        ///  出库货位编码
        /// </summary>
        public string S_EXIT_LOC_CODE { get; set; }
 
        /// <summary>
        /// 楼层
        /// </summary>
        // public int N_LAYER { get; set; }
 
        public int N_PRIORITY { get; set; }
 
        public string S_OP_CODE { get; set; }
 
        public string S_BS_TYPE { get; set; }
 
        // 来源单号  发货单号
        public string S_BS_NO { get; set; }
 
        public string C_AUTO_OP { get; set; }
 
        public string S_OP_TYPE { get; set; }
 
        public string C_WHOLE_OUT { get; set; }
 
        public int N_PRE_B_STATE { get; set; }
        public string S_ERR { get; set; }
 
        public string S_B_STATE { get; set; }
 
       
    }
}