package com.zy.asrs.entity.param;
|
|
import java.util.List;
|
|
/**
|
* Created by vincent on 2020/6/13
|
*/
|
public class StockOutParam {
|
|
// 出站口
|
private Integer outSite;
|
|
// 物料编号集合
|
private List<LocDetl> locDetls;
|
|
public Integer getOutSite() {
|
return outSite;
|
}
|
|
public void setOutSite(Integer outSite) {
|
this.outSite = outSite;
|
}
|
|
public List<LocDetl> getLocDetls() {
|
return locDetls;
|
}
|
|
public void setLocDetls(List<LocDetl> locDetls) {
|
this.locDetls = locDetls;
|
}
|
|
public static class LocDetl {
|
|
// 库位号
|
private String locNo;
|
|
// 物料号
|
private String matnr;
|
|
// 数量
|
private Integer count;
|
|
public String getLocNo() {
|
return locNo;
|
}
|
|
public void setLocNo(String locNo) {
|
this.locNo = locNo;
|
}
|
|
public String getMatnr() {
|
return matnr;
|
}
|
|
public void setMatnr(String matnr) {
|
this.matnr = matnr;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
}
|
}
|