1
yangpeixing
3 天以前 48e2278d7ac330c7f05deda6f884acb6f01206b4
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static WIDESEA_Common.NewHouseInboundPassBack.Parame.Syncretism;
 
namespace WIDESEA_Common
{
    public class NewHouseInboundPassBack
    {
 
 
 
        public List<Parame> Parameters = new List<Parame>();
        public string ApiType { get; set; }
        public string Method { get; set; }
        public Dictionary<string, string> Context { get; set; }
        public class Parame
        {
            public Syncretism Value = new Syncretism();
 
            public class Syncretism
            {
 
                public string OrderNo { get; set; }
 
                public List<details> Details = new List<details>();
 
                public class details
                {
                    /// <summary>
                    /// 原始LPN
                    /// </summary>
                    public string Lpn { get; set; }
 
                    /// <summary>
                    /// 移库单类型
                    /// </summary>
                    public int MoveType { get; set; }
                    /// <summary>
                    /// 仓库 (发货仓库)
                    /// </summary>
                    public string WareHouseCode { get; set; }
 
                    /// <summary>
                    /// 物料编码
                    /// </summary>
                    public string ItemCode { get; set; }
                    /// <summary>
                    /// 移库数量
                    /// </summary>
                    public decimal MoveNumber { get; set; }
                    /// <summary>
                    /// 物料批次
                    /// </summary>
                    public string LotNo { get; set; }
                    /// <summary>
                    /// 生产批次
                    /// </summary>
 
                    public string WipBatch { get; set; }
 
 
                    /// <summary>
                    /// 来源库位
                    /// </summary>
                    public string LocationName { get; set; }
 
 
                    /// <summary>
                    /// 目标库位
                    /// </summary>
 
                    public string TargetLocName { get; set; }
 
                    /// <summary>
                    /// 目标LPN
                    /// </summary>
 
                    public string TargetLpn { get; set; }
                }
 
 
            }
        }
 
    }
}