baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
using iWare.Wms.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 物料托盘组盘输入参数
    /// </summary>
    public class WmsMaterialContainerDto
    {
        /// <summary>
        /// 托盘ID  外键表
        /// </summary>
        public long Containerid { get; set; }
 
        /// <summary>
        /// 托盘编码
        /// </summary>
        public string Containercode { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string Materialname { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        public string Materialno { get; set; }
 
        /// <summary>
        /// 物料规格
        /// </summary>
        public string Materialspec { get; set; }
 
        /// <summary>
        /// 物料ID 
        /// </summary>
        public long? Materialid { get; set; }
 
        /// <summary>
        /// 组盘数量
        /// </summary>
        public decimal Bindquantity { get; set; }
 
    }
    /// <summary>
    /// 组盘物料信息
    /// </summary>
    public class WmsMaterialContainerOutput
    {
        /// <summary>
        /// 托盘ID
        /// </summary>
        public long Containerid { get; set; }
 
        /// <summary>
        /// 托盘编码
        /// </summary>
        public string Containercode { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string Materialname { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        public string Materialno { get; set; }
 
        /// <summary>
        /// 物料批次
        /// </summary>
        public string Materialbatch { get; set; }
 
        /// <summary>
        /// 物料规格
        /// </summary>
        public string Materialspec { get; set; }
 
        /// <summary>
        /// 物料ID
        /// </summary>
        public long Materialid { get; set; }
 
        /// <summary>
        /// 组盘数量
        /// </summary>
        public decimal Bindquantity { get; set; }
 
        /// <summary>
        /// 组盘状态;数据字典
        /// </summary>
        public CommonStatus Bindstatus { get; set; }
 
        /// <summary>
        /// 抽检数量
        /// </summary>
        public decimal Sampleqty { get; set; }
 
        /// <summary>
        /// 单号
        /// </summary>
        public string Orderno { get; set; }
 
 
    }
}