package com.zy.asrs.entity.param;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/6/18
|
*/
|
public class LocDetlAdjustParam {
|
|
// 库位号
|
private String locNo;
|
|
// 调整库存明细集合
|
private List<LocDetlAdjust> list;
|
|
public static class LocDetlAdjust {
|
|
// 物料号
|
private String matNo;
|
|
// 变更数量
|
private Double count;
|
|
public String getMatNo() {
|
return matNo;
|
}
|
|
public void setMatNo(String matNo) {
|
this.matNo = matNo;
|
}
|
|
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;
|
}
|
|
}
|