| | |
| | | */ |
| | | public class FullStoreParam { |
| | | |
| | | // 托盘条码 |
| | | private String barcode; |
| | | |
| | | // 站点编号 |
| | | private Integer devpNo; |
| | | |
| | | // 物料列表数据 |
| | | private List<MatCodeStore> list; |
| | | |
| | | static class MatCodeStore { |
| | | public static class MatCodeStore { |
| | | |
| | | // 物料编号 |
| | | private String matNo; |
| | | |
| | | // 物料数量 |
| | | private Integer count; |
| | | private Double count; |
| | | |
| | | public String getMatNo() { |
| | | return matNo; |
| | |
| | | this.matNo = matNo; |
| | | } |
| | | |
| | | public Integer getCount() { |
| | | public Double getCount() { |
| | | return count; |
| | | } |
| | | |
| | | public void setCount(Integer count) { |
| | | public void setCount(Double count) { |
| | | this.count = count; |
| | | } |
| | | } |
| | | |
| | | public String getBarcode() { |
| | | return barcode; |
| | | } |
| | | |
| | | public void setBarcode(String barcode) { |
| | | this.barcode = barcode; |
| | | } |
| | | |
| | | public Integer getDevpNo() { |
| | | return devpNo; |
| | | } |