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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Check
{
    [Table("tn_wm_check_dtl")]
   public class TN_WM_CHECK_DTLEntity
    {
        [Column("CN_S_OP_NO")]
        public string CN_S_OP_NO { get; set; }
 
        [Column("CN_N_ROW_NO")]
        public int CN_N_ROW_NO { get; set; }
 
        [Column("CN_S_STOCK_AREA")]
        public string CN_S_STOCK_AREA { get; set; }
 
        [Column("CN_S_LOCATION_CODE")]
        public string CN_S_LOCATION_CODE { get; set; }
 
        [Column("CN_S_TRAY_CODE")]
        public string CN_S_TRAY_CODE { get; set; }
 
        [Column("CN_S_ITEM_CODE")]
        public string CN_S_ITEM_CODE { get; set; }
 
        [Column("CN_S_ITEM_NAME")]
        public string CN_S_ITEM_NAME { get; set; }
 
        [Column("CN_S_ITEM_STATE")]
        public string CN_S_ITEM_STATE { get; set; }
 
        [Column("CN_S_OWNER")]
        public string CN_S_OWNER { get; set; }
 
        [Column("CN_S_LOT_NO")]
        public string CN_S_LOT_NO { get; set; }
 
        [Column("CN_S_MODEL")]
        public string CN_S_MODEL { get; set; }
 
        [Column("CN_S_FIGURE_NO")]
        public string CN_S_FIGURE_NO { get; set; }
 
        [Column("CN_S_MEASURE_UNIT")]
        public string CN_S_MEASURE_UNIT { get; set; }
 
        [Column("CN_F_QUANTITY")]
        public decimal CN_F_QUANTITY { get; set; }
 
        [Column("CN_F_WEIGHT")]
        public decimal CN_F_WEIGHT { get; set; }
 
        [Column("CN_F_PACKING_QTY")]
        public decimal CN_F_PACKING_QTY { get; set; }
 
        /// <summary>
        /// 装箱码
        /// </summary>
        [Column("CN_S_PACK_CODE")]
        public string CN_S_PACK_CODE { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        [Column("CN_S_TYPE")]
        public string CN_S_TYPE { get; set; }
 
        /// <summary>
        /// 盘点结果 A 增加 E 修改 Y 正确 D 删除
        /// </summary>
        [Column("CN_S_CHECK_RESULT")]
        public string CN_S_CHECK_RESULT { get; set; }
 
        /// <summary>
        /// 库区名称
        /// </summary>
        public string CN_S_AREA_NAME { get; set; }
 
        //public List<TN_WM_CHECK_DTLEntity> rows { get; set; }
 
        //public string type { get; set; }
 
        //public string CN_S_AREA_NAME { get; set; }
 
        public string sqlWhere { get; set; }
 
        //public string TrayItemMstGuid { get; set; }
 
        /// <summary>
        /// 主表
        /// </summary>
        public TN_WM_B_TRAY_ITEM_MSTEntity trayItemMst { get; set; }
 
    }
}