liuying
2025-09-24 16edbbe772e24eb71f6519558576d513e3cf2746
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
using iWare.Wms.Core;
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 组盘入库输出参数
    /// </summary>
    public class BindEntranceOutput
    {
        /// <summary>
        /// 托盘
        /// </summary>
        public String Containercode { get; set; }
 
        /// <summary>
        /// 阻盘单据
        /// </summary>
        public string OrderNo { get; set; }
        /// <summary>
        /// 容器信息
        /// </summary>
        public WmsContainerDto WmsContainer { get; set; }
 
        /// <summary>
        /// 物料信息
        /// </summary>
        public List<WmsMaterialContainerOutput> WmsMaterials { get; set; }
 
    }
 
    /// <summary>
    /// 组盘入库成功输出参数
    /// </summary>
    public class BindEntranceOkOutput
    {
        /// <summary>
        /// 托盘
        /// </summary>
        public string Containercode { get; set; }
 
        /// <summary>
        /// 组盘单据
        /// </summary>
        public string OrderNo { get; set; }
 
    }
}