自动化立体仓库 - WCS系统
#
Junjie
2023-08-02 88a1fbd68cfb38c921fbf83c92d17b38a4a5975a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.common.model;
 
import lombok.Data;
 
/**
 * 地图数据节点
 */
@Data
public class MapNode {
 
    private Integer value;
 
    private String data;
 
    private Integer top;
 
    private Integer bottom;
 
    private Integer left;
 
    private Integer right;
 
}