自动化立体仓库 - WMS系统
skyouc
1 天以前 b0e463fbc3acbbe84ca0efaf924a99e53d2ab380
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.api.controller.params;
 
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "AgvCarriesParam", description = "AGV搬运参数")
public class AgvCarriesParam implements Serializable {
 
    private Integer autoStart = 1;
 
    private String code;
 
    private Integer seq;
 
    private String type = "SITE";
}