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";
|
}
|