package com.zy.asrs.entity.param;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/6/18
|
*/
|
public class LocDetlAdjustParam {
|
|
//托盘号
|
private String zpallet;
|
|
|
// 库位号
|
private String locNo;
|
|
// 调整库存明细集合
|
private List<LocDetlAdjust> list;
|
|
|
|
public String getZpallet() {
|
return zpallet;
|
}
|
|
public void setZpallet(String zpallet) {
|
this.zpallet = zpallet;
|
}
|
|
public static class LocDetlAdjust {
|
|
// 产品号
|
private String matNo;
|
|
private String supplier;
|
// 变更数量
|
private Double count;
|
//变更供应商
|
private String vendor;
|
//变更来源
|
private String source;
|
|
public String getSource() {
|
return source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public String getVendor() {
|
return vendor;
|
}
|
|
public void setVendor(String vendor) {
|
this.vendor = vendor;
|
}
|
|
public String getMatNo() {
|
return matNo;
|
}
|
|
public void setMatNo(String matNo) {
|
this.matNo = matNo;
|
}
|
|
public String getSupplier() {
|
return supplier;
|
}
|
|
public void setSupplier(String supplier) {
|
this.supplier = supplier;
|
}
|
|
public Double getCount() {
|
return count;
|
}
|
|
public void setCount(Double count) {
|
this.count = count;
|
}
|
}
|
|
public String getLocNo() {
|
return locNo;
|
}
|
|
public void setLocNo(String locNo) {
|
this.locNo = locNo;
|
}
|
|
public List<LocDetlAdjust> getList() {
|
return list;
|
}
|
|
public void setList(List<LocDetlAdjust> list) {
|
this.list = list;
|
}
|
|
}
|