自动化立体仓库 - WMS系统
skyouc
4 天以前 19674bf7bc725aabc28f9cf14cad0bf8a789ff23
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
package com.zy.asrs.entity.param;
 
import java.io.Serializable;
 
import lombok.Data;
import lombok.experimental.Accessors;
import io.swagger.annotations.ApiModel;
 
@Data
@ApiModel(value = "InitDeviceLocParams", description = "初始化台机库位参数")
@Accessors(chain = true)
public class InitDeviceLocParams implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    // 台机号
    private String devNo;
 
    // 起始排
    private Integer startRow;
 
    // 终止排
    private Integer endRow;
 
    // 起始列
    private Integer startBay;
 
    // 终止列
    private Integer endBay;
 
    // 起始层
    private Integer startLev;
 
    // 终止层
    private Integer endLev;
}