自动化立体仓库 - WCS系统
#
yxFwq
2025-01-01 c1d30e0e96f9fc0d32a9a5007977ce305e0d22c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.entity;
 
import lombok.Data;
 
@Data
public class RgvNode {
 
    private Integer path;//路径值
 
    private Boolean lock = false;//路径锁定
 
    private Integer rgvNo = 0;//RGV号
 
    private Integer wrkNo = 0;//任务号
 
    public RgvNode(Integer path) {
        this.path = path;
    }
}