chen.lin
21 小时以前 8f8b6a47ce277cad0b640c328ab3962419e1c024
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;
}