src/main/java/com/zy/common/model/MatDto.java
@@ -27,10 +27,12 @@ // 物料数量 private Double count; private Double total; public MatDto() { } public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count) { public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) { this.matnr = matnr; this.maknx = maknx; this.batch = batch; @@ -38,5 +40,6 @@ this.manu = manu; this.memo = memo; this.count = count; this.total = total; } }