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
| package com.zy.asrs.entity;
|
| import lombok.Data;
|
| /**
| * @author pang.jiabao
| * @description 堆垛机状态及所属巷道统计信息
| * @createDate 2025/4/27 13:37
| */
| @Data
| public class CrnLaneWayInfoDto {
|
| /**
| * 堆垛机号
| */
| private Integer crnNo;
|
| /**
| * 堆垛机状态 -1.离线, 0.维修, 1.手动,2.半自动,3.自动,100.其他
| */
| private Integer crnSts;
|
| /**
| * 堆垛机是否异常 0.未异常,1.异常
| */
| private Integer crnErr;
|
| /**
| * 巷道库位总数
| */
| private Integer count;
|
| /**
| * 在库数
| */
| private Integer stockQty;
|
| /**
| * 空托盘数
| */
| private Integer emptyPalletQty;
|
| /**
| * 空库位数
| */
| private Integer emptySlotQty;
|
| /**
| * 其他状态库位数
| */
| private Integer otherQty;
|
| }
|
|