package com.zy.common.web.param;
|
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/10/30
|
*/
|
@Data
|
public class SearchLocParam {
|
|
private Integer ioType;
|
|
private Integer sourceStaNo;
|
|
private String barcode;
|
|
// 库位规格( 0:未知, 1:低库位, 2:高库位)
|
private Short locType1;
|
|
// 入库桶编号/物料号
|
private int bucketType;
|
|
// 入库桶数量
|
private int bucketCount;
|
|
// 尾托标识
|
private boolean tailSupportFlag;
|
|
// 罐装线要桶 罐装线号-桶类型
|
private List<WantBucket> wantBucketFlag;
|
|
@Data
|
@AllArgsConstructor
|
public static class WantBucket{
|
private int site;
|
private int bucketType;
|
}
|
}
|