schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
using Admin.NET.Core.Util.LowCode.Dto;
using System;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 托盘信息输出参数
    /// </summary>
    public class WmsContainerOutput
    {
        /// <summary>
        /// 编号
        /// </summary>
        public string ContainerCode { get; set; }
        
        /// <summary>
        /// 类型
        /// </summary>
        public Admin.NET.Core.ContainerType ContainerType { get; set; }
        
        /// <summary>
        /// 托盘状态
        /// </summary>
        public Admin.NET.Core.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 string AssetNo { get; set; }
        
        /// <summary>
        /// 托盘分类
        /// </summary>
        public Admin.NET.Core.ContainerCategory ContainerCategory { get; set; }
        
        /// <summary>
        /// Erp单号
        /// </summary>
        public string ErpNo { get; set; }
        
        /// <summary>
        /// 是否虚拟
        /// </summary>
        public Admin.NET.Core.YesOrNot IsVirtually { get; set; }
        
        /// <summary>
        /// 所属车间
        /// </summary>
        public Admin.NET.Core.LesWorkShopType WorkShopType { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
        /// <summary>
        /// 签核状态
        /// </summary>
        public Admin.NET.Core.IssueState IssueState { get; set; }
        
    }
}