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