src/main/java/com/zy/common/model/MatDto.java
@@ -9,9 +9,24 @@ public class MatDto { // 物料编号 private String matNo; private String matnr; // 物料名称 private String maknx; // 物料数量 private Double count; // 物料数量 private String specs; public MatDto() { } public MatDto(String matnr, String maknx, Double count, String specs) { this.matnr = matnr; this.maknx = maknx; this.count = count; this.specs = specs; } }