duyongjia
2024-12-29 9a0acba23c5b5095be2a89b8ca190fe5202c2ea6
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 WIDESEA_Model.Models.System.Reponse
{
    public class InventoryQueryResponse
    {
        public string MSGTY { get; set; }
        public List<StockItem> DATA { get; set; }
        public string MSGTX {  get; set; }
    }
 
    public class StockItem
    {
        public string BATCH { get; set; }
        public string LABEL_NO { get; set; }
        public string LGORT { get; set; }
        public string LIFNR { get; set; }
        public string LIKTX { get; set; }
 
        public string LK_BIN_CODE { get; set; }
        public string MAKTX { get; set; }
        public string MATNR { get; set; }
 
        public string MEINS { get; set; }
        public string QTY { get; set; }
        public string SOBKZ { get; set; }
        public string TPNUM { get; set; }
        public string WERKS { get; set; }
 
        public string WH_NUMBER { get; set; }
 
    }
 
    //public class ITEM
    //{
    //    public List<ITEMDATA> ITEMDATA { get; set; }
    //    public string REQUIREMENT_NO { get; set; }
    //    //仓库编号(系统标识)
    //    public string WH_NUMBER { get; set; }
    //    public string SENDNOD { get; set; }
    //    //工厂代码
    //    public string WERKS { get; set; }
    //}
    //public class ITEMDATA
    //{
    //    public string STATION { get; set; }
    //    public string BUSINESS_NAME { get; set; }
    //    /// <summary>
    //    /// 库存地点
    //    /// </summary>
    //    public string LGORT { get; set; }
    //    public string BUSINESS_CODE { get; set; }
    //    public string SPLIT { get; set; }
    //    public string CREAT_DATE { get; set; }
 
    //    public string REQUIREMENT_ITEM_NO { get; set; }
    //    //数量
    //    public string QTY { get; set; }
 
    //    public string RECEIVE_LGORT { get; set; }
    //    public string ORDERCODE_ITEM_NO { get; set; }
    //    public string SYSNOD { get; set; }
    //    public List<LABEL> LABEL { get; set; }
    //    //批次
    //    public string BATCH { get; set; }
    //    public string LIFNR { get; set; }
    //    public string ORDERCODE { get; set; }
    //    //物料号
    //    public string MATNR { get; set; }
    //}
    //public class LABEL
    //{
    //    public string LABEL_NO { get; set; }
    //}
}