自动化立体仓库 - WCS系统
#
yxFwq
2024-07-20 e95cc36944a886ccf63f90ccdf883aaf6ab81f90
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
package com.zy.common.model;
 
import lombok.Data;
 
/**
 * Created by vincent on 2020/6/11
 */
@Data
public class StartupDto {
 
    /**
     * 源站
     */
    private Integer sourceStaNo;
 
    /**
     * 目标站
     */
    private Integer staNo;
 
    /**
     * 堆垛机号
     */
    private Integer crnNo;
 
    /**
     * 库位号
     */
    private String locNo;
 
    /**
     * 工作号
     */
    private Integer workNo;
 
    /**
     * RGV编号
     */
    private Integer rgvNo;
 
    /**
     * RGV源站
     */
    private Integer rgvSstaNo;
 
    /**
     * RGV目标站
     */
    private Integer rgvDstaNo;
}