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 WmsLocationTypeOutput
    {
        /// <summary>
        /// 库位类型编码
        /// </summary>
        public string WareLocationTypeCode { get; set; }
 
        /// <summary>
        /// 库位类型名称
        /// </summary>
        public string WareLocationTypeName { get; set; }
 
        ///// <summary>
        ///// 状态
        ///// </summary>
        //public iWare.Wms.Core.CommonStatus Status { get; set; }
 
        ///// <summary>
        ///// 备注
        ///// </summary>
        //public string Remark { get; set; }
 
        /// <summary>
        /// 库位长度
        /// </summary>
        public decimal Length { get; set; }
 
        /// <summary>
        /// 库位宽度
        /// </summary>
        public decimal Width { get; set; }
 
        /// <summary>
        /// 库位高度
        /// </summary>
        public decimal Height { get; set; }
 
        ///// <summary>
        ///// 最大承重
        ///// </summary>
        //public decimal MaxWeight { get; set; }
 
        ///// <summary>
        ///// Id主键
        ///// </summary>
        //public long Id { get; set; }
 
    }
}