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