#
Junjie
7 天以前 5cef428c0019b6455e35807a617f648840e9c65d
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
package com.zy.asrs.wcs.core.model;
 
import com.zy.asrs.wcs.rcs.model.protocol.StaProtocol;
import lombok.Data;
 
/**
 * 地图数据节点
 */
@Data
public class MapNode implements Cloneable {
 
    /**
     * -1 禁用
     * 0 子轨道
     * 3 母轨道
     * 4 充电桩
     * 5 充电桩
     * 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 xBase;//x基准
 
    private Integer yBase;//y基准
    //**************兼容牛眼新协议**************//
 
    @Override
    public MapNode clone() {
        try {
            return (MapNode) super.clone();
        } catch (CloneNotSupportedException e) {
            e.printStackTrace();
        }
        return null;
    }
 
}