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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 库位信息输出参数
    /// </summary>
    public class WmsPlaceDto
    {
        /// <summary>
        /// 所在库区
        /// </summary>
        public string WmsAreaAreaname { get; set; }
        
        /// <summary>
        /// 编码
        /// </summary>
        public string Placecode { get; set; }
        
        /// <summary>
        /// 库位状态
        /// </summary>
        public iWare.Wms.Core.Enum.PlaceStatus Placestatus { get; set; }
        
        /// <summary>
        /// 所在库区
        /// </summary>
        public long Areaid { get; set; }
        
        /// <summary>
        /// 排
        /// </summary>
        public int Rowno { get; set; }
        
        /// <summary>
        /// 列
        /// </summary>
        public int Columnno { get; set; }
        
        /// <summary>
        /// 层
        /// </summary>
        public int Layerno { get; set; }
        
        /// <summary>
        /// 进深号
        /// </summary>
        public int Deepcellno { get; set; }
        
        /// <summary>
        /// 巷道
        /// </summary>
        public int Aisle { get; set; }
        
        /// <summary>
        /// 线号
        /// </summary>
        public int Line { get; set; }
        
        /// <summary>
        /// 巷道左右
        /// </summary>
        public string Aisleside { get; set; }
        
        /// <summary>
        /// 是否锁定
        /// </summary>
        public iWare.Wms.Core.YesOrNot Islock { get; set; }
        
        /// <summary>
        /// 
        /// </summary>
        public iWare.Wms.Core.YesOrNot Isfull { get; set; }
        
        /// <summary>
        /// 否正在操作
        /// </summary>
        public iWare.Wms.Core.YesOrNot Hastaskdoing { get; set; }
        
        /// <summary>
        /// 堆垛机内部的位置
        /// </summary>
        public string PositionnoForSrm { get; set; }
        
        /// <summary>
        /// 库位X坐标
        /// </summary>
        public string Xzb { get; set; }
        
        /// <summary>
        /// 库位Y坐标
        /// </summary>
        public string Yzb { get; set; }
        
        /// <summary>
        /// 库位Z坐标
        /// </summary>
        public string Zzb { 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>
        /// 库位高度
        /// </summary>
        public iWare.Wms.Core.Enum.Heightlevel Heightlevel { get; set; }
        
        /// <summary>
        /// 优先级
        /// </summary>
        public int Priority { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}