zc
2 天以前 c19bd47fa2f5aa779f902d599b51824741bda6f0
src/main/java/com/zy/common/model/MatDto.java
@@ -27,19 +27,20 @@
    // 物料数量
    private Double count;
    private Double anfme;
    private Double total;
    private String sku;
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) {
    public MatDto(String matnr, String maknx, String batch, String specs, Double anfme, String unit) {
        this.matnr = matnr;
        this.maknx = maknx;
        this.batch = batch;
        this.specs = specs;
        this.manu = manu;
        this.memo = memo;
        this.count = count;
        this.total = total;
        this.anfme = anfme;
        this.sku = unit;
    }
    public MatDto(String matNo, String maknx, Double count) {