package com.zy.common.web.param;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/10/30
|
*/
|
@Data
|
public class SearchLocParam {
|
private String barcode;
|
private Integer sourceStaNo;
|
private List<Integer> row;
|
|
// 库位规格(0:未知, 1:低库位, 2:高库位)
|
private Short locType1;
|
|
private Integer ioType;
|
private Integer outArea;
|
private BigDecimal weight;
|
}
|