自动化立体仓库 - WMS系统
skyouc
2 天以前 707d414c0e6a8baff3ce7affec820f0fc1a13c19
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";
}