| | |
| | | private String specs; |
| | | |
| | | // 物料数量 |
| | | private Double count; |
| | | private Double anfme; |
| | | |
| | | // 库位数量 |
| | | private Double total; |
| | |
| | | //开票客户名称 |
| | | private String kpCstmrName; |
| | | |
| | | //单号 |
| | | private String orderNo; |
| | | |
| | | //批号 |
| | | private String batch; |
| | | |
| | | // 库位编号 |
| | | private String locNo; |
| | | |
| | | public MatDto() { |
| | | } |
| | | |
| | | public MatDto(String matNo, String maktx, Double count, Double weight, Double total, Double totalWeight, String specs, String sku, String barcode, String model, String supp, String kpCstmrName) { |
| | | public MatDto(String matNo, String maktx, Double anfme, Double weight, Double total, Double totalWeight, String specs, String sku, String barcode, String model, String supp, String kpCstmrName, String orderNo, String batch, String locNo) { |
| | | this.matnr = matNo; |
| | | this.maktx = maktx; |
| | | this.maknx = maktx; |
| | | this.specs = specs; |
| | | this.count = count; |
| | | this.anfme = anfme; |
| | | this.weight = weight; |
| | | this.total = total; |
| | | this.totalWeight = totalWeight; |
| | |
| | | this.model = model; |
| | | this.supp = supp; |
| | | this.kpCstmrName = kpCstmrName; |
| | | this.orderNo = orderNo; |
| | | this.batch = batch; |
| | | this.locNo = locNo; |
| | | } |
| | | } |