kazelee
3 天以前 2aa6ffae020b4dab66ac30ee4436346aa15ff3cb
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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
using SqlSugar;
 
namespace HH.WCS.Mobox3.AnGang.models {
    [SugarTable("TN_Inbound_DataRecord")]
    public class TN_Inbound_DataRecord : BaseModel {
        /// <summary>
        /// 储位码
        /// </summary>
        public string S_LOCATION_CODE { get; set; }
 
        /// <summary>
        /// 库存明细交易号
        /// </summary>
        public string S_STOCK_TRANS { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary>
        public string S_ITEM_CODE { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string S_ITEM_NAME { get; set; }
 
        /// <summary>
        /// 物料短描述
        /// </summary>
        public string S_ITEM_SHORT_DESC { get; set; }
 
        /// <summary>
        /// 库存数量
        /// </summary>
        public string S_STOCK_QUANTITY { get; set; }
 
        /// <summary>
        /// 入库数量
        /// </summary>
        public string S_IN_QUANTITY { get; set; }
 
        /// <summary>
        /// 库存总价
        /// </summary>
        public string S_TOTAL_PRICE { get; set; }
 
        /// <summary>
        /// 入库时间
        /// </summary>
        public string S_STOCK_IN_TIME { get; set; }
 
        /// <summary>
        /// 保管员
        /// </summary>
        public string S_STORE_KEEPER { get; set; }
 
        /// <summary>
        /// 产线部门代码
        /// </summary>
        public string S_LINE_CODE { get; set; }
 
        /// <summary>
        /// 送货单行号
        /// </summary>
        public string S_DELIVERY_ITEM_NO { get; set; }
 
        /// <summary>
        /// 供应商名称
        /// </summary>
        public string S_SUPPLIER_NAME { get; set; }
 
        /// <summary>
        /// 库存责任人姓名
        /// </summary>
        public string S_INVENTORY_MAN { get; set; }
    }
}