ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 端拾器小车类型信息输出参数
    /// </summary>
    public class WmsContainerTypeOutput
    {
        /// <summary>
        /// 类型编码
        /// </summary>
        public string WareContainerTypeCode { get; set; }
        
        /// <summary>
        /// 类型名称
        /// </summary>
        public string WareContainerTypeName { get; set; }
        
        /// <summary>
        /// 长
        /// </summary>
        public decimal Length { get; set; }
        
        /// <summary>
        /// 高
        /// </summary>
        public decimal Height { get; set; }
        
        /// <summary>
        /// 宽
        /// </summary>
        public decimal Width { get; set; }
        
        /// <summary>
        /// 可入库位类型
        /// </summary>
        public string LocationType { get; set; }
        
        /// <summary>
        /// 备注
        /// </summary>
        public string Remarks { get; set; }
        
        /// <summary>
        /// 状态
        /// </summary>
        public iWare.Wms.Core.CommonStatus Status { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}