src/main/java/com/zy/common/model/MatDto.java
@@ -17,12 +17,19 @@ // 物料数量 private Double count; // 批号 private String batch; private String specs; public MatDto() { } public MatDto(String matnr, String maknx, Double count) { public MatDto(String matnr, String maknx, Double count, String batch, String specs) { this.matnr = matnr; this.maknx = maknx; this.count = count; this.batch = batch; this.specs = specs; } }