src/main/java/com/zy/common/model/MatDto.java
@@ -8,10 +8,34 @@ @Data public class MatDto { // 物料编号 private String matNo; private String matnr; // 物料名称 private String maktx; // 库位规格 private String specs; // 物料数量 private Double count; // 库位数量 private Double total; //工序 private String sku; public MatDto() { } public MatDto(String matnr, String maktx, String specs, Double count, Double total, String sku) { this.matnr = matnr; this.maktx = maktx; this.specs = specs; this.count = count; this.total = total; this.sku = sku; } }