chen.lin
3 天以前 bb4f5dc6bbf43616ca3482257b576c9c66c49ff5
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
package com.vincent.rsf.openApi.entity.params;
 
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 = "LocationAllocateParams", description = "申请入库任务参数")
public class LocationAllocateParams implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "料箱码", required = true)
    private String barcode;
 
    @ApiModelProperty(value = "入库站点", required = true)
    private String staNo;
 
    @ApiModelProperty(value = "入库类型", required = true)
    private Integer type;
}