payne
2024-04-23 6097dd7e7d8a736729c4b8be66ea107eb740d9f1
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace Admin.NET.Core
{
    /// <summary>
    /// 库位表
    /// </summary>
    [Table("wms_place")]
    [Comment("库位表")]
    public class WmsPlace : DEntityBase
    {
        /// <summary>
        /// 库位编码
        /// </summary>
        [Comment("库位编码")]
        [Required]
        [MaxLength(50)]
        public string PlaceCode { get; set; }
 
        /// <summary>
        /// 库位对应AGV编码
        /// </summary>
        [Comment("库位对应AGV编码")]
        [MaxLength(50)]
        public string AgvCode { get; set; }
 
        /// <summary>
        /// 库位状态;数据字典
        /// </summary>
        [Comment("库位状态")]
        [Required]
        public PlaceStatus PlaceStatus { get; set; }
 
        /// <summary>
        /// 所在库区
        /// </summary>
        [Comment("所在库区")]
        [Required]
        public long AreaId { get; set; }
 
        /// <summary>
        /// 排
        /// </summary>
        [Comment("排")]
        [Required]
        public int RowNo { get; set; }
 
        /// <summary>
        /// 列
        /// </summary>
        [Comment("列")]
        [Required]
        public int ColumnNo { get; set; }
 
        /// <summary>
        /// 层
        /// </summary>
        [Comment("层")]
        [Required]
        public int LayerNo { get; set; }
 
        /// <summary>
        /// 进深号
        /// </summary>
        [Comment("进深号")]
        [Required]
        public int DeepcellNo { get; set; }
 
        /// <summary>
        /// 巷道
        /// </summary>
        [Comment("巷道")]
        [Required]
        public int Aisle { get; set; }
 
        /// <summary>
        /// 线号
        /// </summary>
        [Comment("线号")]
        [Required]
        public int Line { get; set; }
 
        /// <summary>
        /// 是否锁定;数据字典
        /// </summary>
        [Comment("是否锁定")]
        [Required]
        public YesOrNot Islock { get; set; }
 
        /// <summary>
        /// 是否空托;数据字典
        /// </summary>
        [Comment("是否空托")]
        public YesOrNot EmptyContainer { get; set; }
 
        /// <summary>
        /// 堆垛机内部的位置
        /// </summary>
        [Comment("堆垛机内部的位置")]
        [MaxLength(50)]
        public string PositionnoForSrm { get; set; }
 
        /// <summary>
        /// 库位X坐标
        /// </summary>
        [Comment("库位X坐标")]
        [MaxLength(50)]
        public string Xzb { get; set; }
 
        /// <summary>
        /// 库位Y坐标
        /// </summary>
        [Comment("库位Y坐标")]
        [MaxLength(50)]
        public string Yzb { get; set; }
 
        /// <summary>
        /// 库位Z坐标
        /// </summary>
        [Comment("库位Z坐标")]
        [MaxLength(50)]
        public string Zzb { get; set; }
 
        /// <summary>
        /// 库位长度
        /// </summary>
        [Comment("库位长度")]
        public decimal Length { get; set; }
 
        /// <summary>
        /// 库位宽度
        /// </summary>
        [Comment("库位宽度")]
        public decimal Width { get; set; }
 
        /// <summary>
        /// 库位高度
        /// </summary>
        [Comment("库位高度")]
        public decimal Height { get; set; }
 
        /// <summary>
        /// 最大承重
        /// </summary>
        [Comment("最大承重")]
        public decimal MaxWeight { get; set; }
 
        /// <summary>
        /// 库位高度属性;数据字典
        /// </summary>
        [Comment("库位高度属性")]
        public Heightlevel HeightLevel { get; set; }
 
        /// <summary>
        /// 优先级
        /// </summary>
        [Comment("优先级")]
        public int Priority { get; set; }
 
        /// <summary>
        /// 逻辑区域
        /// </summary>
        [Comment("逻辑区域")]
        public int LogicalName { get; set; }
 
        /// <summary>
        /// 库区表
        /// </summary>
        public WmsArea WmsArea { get; set; }
    }
}