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<String> matNos;
|
|
public Integer getOutSite() {
|
return outSite;
|
}
|
|
public void setOutSite(Integer outSite) {
|
this.outSite = outSite;
|
}
|
|
public List<String> getMatNos() {
|
return matNos;
|
}
|
|
public void setMatNos(List<String> matNos) {
|
this.matNos = matNos;
|
}
|
}
|