自动化立体仓库 - WCS系统
1
zhangc
2025-04-12 4ec87f4d9d873487adda85686a1bfd7fa620f857
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
package com.zy.common.model;
 
import lombok.Data;
 
/**
 * 地图数据节点
 */
@Data
public class MapNode implements Cloneable {
 
    /**
     * -1 禁用
     * 0 子轨道
     * 3 母轨道
     * 4 输送站点
     * 5 充电桩
     * 6 小车可走输送站点
     * 66 穿梭车坐标
     * 67 提升机坐标
     * -999 锁定节点
     */
    private Integer value;
 
    private String data;
 
    private Integer top;
 
    private Integer bottom;
 
    private Integer left;
 
    private Integer right;
 
    private String no;
 
    private Integer row;
 
    private Integer bay;
 
    //节点被锁定时所属设备号
    private Integer lockDeviceNo;
 
    //**************兼容牛眼新协议**************//
    private Integer xBase;//x基准
 
    private Integer yBase;//y基准
    //**************兼容牛眼新协议**************//
 
    @Override
    public MapNode clone() {
        try {
            return (MapNode) super.clone();
        } catch (CloneNotSupportedException e) {
            e.printStackTrace();
        }
        return null;
    }
 
}