自动化立体仓库 - WCS系统
1
zhangc
2025-04-12 123a17c9d50745ea609f91943adca64e5ed12355
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
package com.zy.core.model;
 
import com.zy.core.Slave;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.ArrayList;
import java.util.List;
 
@EqualsAndHashCode(callSuper = true)
@Data
public class LiftSlave extends Slave {
 
    //提升机站点
    private List<Sta> sta = new ArrayList<>();
 
    //排
    private Integer row;
 
    //列
    private Integer bay;
 
    //待机位排-in
    private Integer standByInRow;
 
    //待机位列-in
    private Integer standByInBay;
 
    //待机位排-out
    private Integer standByOutRow;
 
    //待机位列-out
    private Integer standByOutBay;
 
    //站点排
    private Integer staRow;
 
    //站点列
    private Integer staBay;
 
    @Data
    public static class Sta {
 
        // 提升机站点号
        private Integer staNo;
 
        // 层
        private Integer lev;
 
        // 提升机号
        private Integer liftNo;
 
    }
 
}