#
Junjie
2025-06-16 f2ae2106f8b7906076a509692f298b19e6cf360b
src/main/java/com/zy/common/model/MatDto.java
@@ -28,6 +28,9 @@
    //辅数量
    private Double weight;
    // 辅库位数量
    private Double totalWeight;
    //托盘码
    private String barcode;
@@ -40,20 +43,25 @@
    //客户名称
    private String supp;
    //开票客户名称
    private String kpCstmrName;
    public MatDto() {
    }
    public MatDto(String matNo, String maktx, Double count, Double weight, Double total, String specs, String sku, String barcode, String model, String supp) {
    public MatDto(String matNo, String maktx, Double count, Double weight, Double total, Double totalWeight, String specs, String sku, String barcode, String model, String supp, String kpCstmrName) {
        this.matnr = matNo;
        this.maktx = maktx;
        this.maknx = maktx;
        this.specs = specs;
        this.count = count;
        this.total = total;
        this.weight = weight;
        this.total = total;
        this.totalWeight = totalWeight;
        this.sku = sku;
        this.barcode = barcode;
        this.model = model;
        this.supp = supp;
        this.kpCstmrName = kpCstmrName;
    }
}