#
18516761980
2022-11-19 65c3b45745c8f9c3240a71b4a69220dbda69adc6
src/main/java/com/zy/common/model/MatDto.java
@@ -16,16 +16,19 @@
    private String batch;
    private String specs;
    // 物料数量
    private Double count;
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, String batch, Double count) {
    public MatDto(String matnr, String maknx, String batch, String specs, Double count) {
        this.matnr = matnr;
        this.maknx = maknx;
        this.batch = batch;
        this.batch = specs;
        this.count = count;
    }
}