zwl
2025-09-12 effb0d215b52c5cc26a5e9383e279817a8a2f274
src/main/java/com/zy/common/model/MatDto.java
@@ -12,13 +12,19 @@
    private String matnr;
    // 物料名称
    private String maktx;
    private String maknx;
    // 库位规格
    private String specs;
    // 物料数量
    private Double count;
    // 物料数量
    private String specs;
    // 库位数量
    private Double total;
    //工序
    private String sku;
    // 图号
    private String model;
@@ -33,4 +39,13 @@
        this.specs = specs;
        this.model = model;
    }
    public MatDto(String matNo, String maktx, Double count,Double total,String specs,String sku) {
        this.specs = specs;
        this.matnr = matNo;
        this.maktx = maktx;
        this.maknx = maktx;
        this.count = count;
        this.total = total;
        this.sku = sku;
    }
}