自动化立体仓库 - WMS系统
skyouc
12 小时以前 42206b6e31138d5be6d22bb4bba22e03ffe107aa
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
package com.zy.asrs.entity.param;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "ContainerParams",description = "容器初始化参数")
public class ContainerParams implements Serializable {
 
    @ApiModelProperty("起点")
    private Integer start;
 
    @ApiModelProperty("终点")
    private Integer end;
 
    @ApiModelProperty("类型")
    private Long type;
 
    @ApiModelProperty("是否初始化")
    private Integer flagInit;
 
    @ApiModelProperty("长度")
    private Integer length;
 
}