| | |
| | | private Integer outSite; |
| | | |
| | | // 物料编号集合 |
| | | private List<String> matNos; |
| | | private List<LocDetl> locDetls; |
| | | |
| | | public Integer getOutSite() { |
| | | return outSite; |
| | |
| | | this.outSite = outSite; |
| | | } |
| | | |
| | | public List<String> getMatNos() { |
| | | return matNos; |
| | | public List<LocDetl> getLocDetls() { |
| | | return locDetls; |
| | | } |
| | | |
| | | public void setMatNos(List<String> matNos) { |
| | | this.matNos = matNos; |
| | | 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; |
| | | } |
| | | } |
| | | } |