lty
2025-05-22 797a3f2714e06c389cbbc1e900d48f435c261905
src/main/java/com/zy/common/model/MatDto.java
@@ -32,7 +32,7 @@
    // 备注
    private String memo;
    private String proType;
    // 物料数量
    private Double count;
@@ -40,7 +40,7 @@
    public MatDto() {
    }
    public MatDto(String matnr, String maknx, String batch, String specs,String OrderNo,String outOrderNo,String unit,Double weight,String objectName,Double length,String temp1,Double count, Double total){
    public MatDto(String matnr, String maknx, String batch, String specs,String OrderNo,String outOrderNo,String unit,Double weight,String objectName,Double length,String temp1,String proType,Double count, Double total){
        this.matnr = matnr;
        this.maknx = maknx;
        this.batch = batch;
@@ -52,6 +52,7 @@
        this.objectName = objectName;
        this.length = length;
        this.temp1 = temp1;
        this.proType = proType;
        this.count = count;
        this.total = total;
    }