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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.MoveStock
{
    [Table("tn_wm_b_move_result")]
    public class TN_WM_B_MOVE_RESULTEntity
    {
        [Column("CN_S_OP_NO")]
        public string CN_S_OP_NO { get; set; }
 
        [Column("CN_S_OWNER")]
        public string CN_S_OWNER { 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_SERIAL_NO")]
        public string CN_S_SERIAL_NO { get; set; }
 
        [Column("CN_S_MEASURE_UNIT")]
        public string CN_S_MEASURE_UNIT { get; set; }
 
        [Column("CN_S_MODEL")]
        public string CN_S_MODEL { get; set; }
 
        [Column("CN_S_ITEM_STATE")]
        public string CN_S_ITEM_STATE { get; set; }
 
        [Column("CN_S_FIGURE_NO")]
        public string CN_S_FIGURE_NO { get; set; }
 
        [Column("CN_S_LOT_CODE")]
        public string CN_S_LOT_CODE { get; set; }
 
        [Column("CN_F_QUANTITY")]
        public decimal CN_F_QUANTITY { get; set; }
 
        [Column("CN_F_OUT_QUANTITY")]
        public decimal CN_F_OUT_QUANTITY { get; set; }
 
        [Column("CN_F_IN_QUANTITY")]
        public decimal CN_F_IN_QUANTITY { get; set; }
 
        [Column("CN_S_TRAY_CODE")]
        public string CN_S_TRAY_CODE { get; set; }
 
        [Column("CN_S_START_BIT")]
        public string CN_S_START_BIT { get; set; }
 
        [Column("CN_S_END_BIT")]
        public string CN_S_END_BIT { get; set; }
 
        [Column("CN_S_NOTE")]
        public string CN_S_NOTE { get; set; }
 
        [Column("CN_S_TRAY_GRID")]
        public string CN_S_TRAY_GRID { get; set; }
 
        /// <summary>
        /// 仓库编码
        /// </summary>
        public string CN_S_STOCK_CODE { get; set; }
 
        /// <summary>
        /// 移出库区
        /// </summary>
        public string CN_S_START_AREA { get; set; }
 
        /// <summary>
        /// 移入库区
        /// </summary>
        public string CN_S_END_AREA { get; set; }
 
        /// <summary>
        /// 生成批次号
        /// </summary>
        public string CN_S_PRODUCTION_BATCH { get; set; }
 
        [Column("CN_S_AREA_CODE")]
        /// <summary>
        /// 移出库区
        /// </summary>
        public string CN_S_AREA_CODE { get; set; }
 
        /// <summary>
        /// 托盘明细集合
        /// </summary>
        public List<ItemDtl> DtlList { get; set; }
 
        /// <summary>
        /// 移入托盘
        /// </summary>
        public string CN_S_END_TRAY_CODE { get; set; }
        /// <summary>
        /// 移入GUID
        /// </summary>
        public string CN_S_END_TRAY_GUID { get; set; }
 
        /// <summary>
        /// 仓库数量
        /// </summary>
        public decimal CN_F_QUANTITY_STOCK { get; set; }
    }
}
 
public class ItemDtl
{
    public string CN_S_PACK_CODE { get; set; }
    public string CN_S_LOT_NO { get; set; }
    public string CN_S_PACKING_UNIT { get; set; }
    public decimal CN_F_PACKING_QTY { get; set; }
    public string CN_S_PRODUCTION_BATCH { get; set; }
    public decimal CN_F_QUANTITY { get; set; }
}