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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Model
{
    public class PutAwayReturnRequest
    {
 
        /// <summary>
        /// 仓库编号(系统标识)
        /// </summary>
        public string WH_NUMBER { get; set; }
        /// <summary>
        /// 业务类型名称
        /// </summary>
        public string BUSINESS_NAME { get; set; }
        /// <summary>
        /// 工厂代码
        /// </summary>
        public string WERKS { get; set; }
        /// <summary>
        /// 目标库存地点
        /// </summary>
        public string LGORT { get; set; }
        public string TOTAL_RETURN_QTY { get; set; }
        /// <summary>
        /// 业务类型代码
        /// </summary>
        public string BUSINESS_CODE { get; set; }
        /// <summary>
        /// 退货单号
        /// </summary>
        public string RETURN_NO { get; set; }
        /// <summary>
        /// 退货单行项目
        /// </summary>
        public string RETURN_ITEM_NO { get; set; }
        /// <summary>
        /// 托盘号
        /// </summary>
        public string TPNUM { get; set; }
        public string YLZD5 { get; set; }
        public List<PutAwayReturn> DATA { get; set; }
        /// <summary>
        /// 入库指令
        /// </summary>
        public string IZLID { get; set; }
        public string MO_NO { get; set; }
        public string YLZD3 { get; set; }
        public string YLZD4 { get; set; }
        public string YLZD1 { get; set; }
        public string YLZD2 { get; set; }
        public string SYSNOD { get; set; }
 
    }
 
    public class PutAwayReturn
    {
        public string LABEL_NO { get; set; }
        public string UNIT { get; set; }
        public string SOBKZ { get; set; }
        public string LGORT { get; set; }
        public string QTY { get; set; }
 
        public string F_LGORT { get; set; }
        public string LIFNR { get; set; }
        public string MO_NO { get; set; }
       
        public string MATNR { get; set; }
    }
}