kazelee
2025-05-16 67f74c1d68ccbb69eb8436e70018357533ef9c0a
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.AnGang.Models {
    public class TN_Inbound_Order : BaseModel {
        /// <summary>
        /// 储位码
        /// </summary>
        public string S_LOCATION_CODE { get; set; }
 
        /// <summary>
        /// 库存明细交易号
        /// </summary>
        public string S_STOCK_TRANSACTION_ID { 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_MANAGER { get; set; }
    }
}