#
lsh
2024-01-25 6efee0aeb0bada6e10af55e13d469ff52572fdfb
src/main/java/com/zy/common/model/MatDto.java
@@ -24,6 +24,9 @@
    //批次
    private String model;
    //卷号
    private String juanNo;
    // 物料数量
    private Double count;
@@ -40,12 +43,14 @@
        this.matNo = matNo;
        this.maknx = maknx;
        this.count = count;
        this.specs = specs;
    }
    public MatDto(WrkDetl wrkDetl) {
        this.matNo = wrkDetl.getMatnr();
        this.maknx = wrkDetl.getMaktx();
        this.specs = wrkDetl.getMatnr();
        this.batch = wrkDetl.getBatch();
        this.juanNo = wrkDetl.getSku();
        this.count = wrkDetl.getAnfme();
    }
}