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
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 托盘信息输出参数
    /// </summary>
    public class WmsContainerOutput
    {
        /// <summary>
        /// 编号
        /// </summary>
        public string Containercode { get; set; }
        
        /// <summary>
        /// 类型
        /// </summary>
        public iWare.Wms.Core.Enum.ContainerType Containertype { get; set; }
        
        /// <summary>
        /// 托盘状态
        /// </summary>
        public iWare.Wms.Core.Enum.ContainerStatus Containerstatus { get; set; }
        
        /// <summary>
        /// 长度
        /// </summary>
        public decimal Speclength { get; set; }
        
        /// <summary>
        /// 宽度
        /// </summary>
        public decimal Specwidth { get; set; }
        
        /// <summary>
        /// 高度
        /// </summary>
        public decimal Specheight { get; set; }
        
        /// <summary>
        /// 限长
        /// </summary>
        public decimal Limitlength { get; set; }
        
        /// <summary>
        /// 限宽
        /// </summary>
        public decimal Limitwidth { get; set; }
        
        /// <summary>
        /// 限高
        /// </summary>
        public decimal Limitheight { get; set; }
        
        /// <summary>
        /// 载重上限
        /// </summary>
        public decimal Maxweight { get; set; }
        
        /// <summary>
        /// 父托盘ID
        /// </summary>
        public long Parentcontainerid { get; set; }
        
        /// <summary>
        /// 是否空托
        /// </summary>
        public iWare.Wms.Core.YesOrNot Isemptycontainer { get; set; }
        
        /// <summary>
        /// 扩展字段1
        /// </summary>
        public string Extendedfields1 { get; set; }
        
        /// <summary>
        /// 扩展字段2
        /// </summary>
        public string Extendedfields2 { get; set; }
        
        /// <summary>
        /// 扩展字段3
        /// </summary>
        public string Extendedfields3 { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}