consum-model-pojo/src/main/java/com/consum/model/po/DepFormScrappedModel.java
@@ -85,6 +85,10 @@
    @JsonIgnore
    protected boolean isset_beiz = false;
    private Integer totalAmount = null;
    @JsonIgnore
    protected boolean isset_totalAmount = false;
    /**
     * 默认构造函数
     */
@@ -344,6 +348,20 @@
        return this.beiz == null || this.beiz.length() == 0;
    }
    public Integer getTotalAmount() {
        return this.totalAmount;
    }
    public void setTotalAmount(Integer totalAmount) {
        this.totalAmount = totalAmount;
        this.isset_totalAmount = true;
    }
    @JsonIgnore
    public boolean isEmptyTotalAmount() {
        return this.totalAmount == null;
    }
    /**
     * 重写 toString() 方法
     */
@@ -367,6 +385,7 @@
                .append("counts=").append(this.counts)
                .append("goodsUserName=").append(this.goodsUserName)
                .append("beiz=").append(this.beiz)
                .append("totalAmount=").append(this.totalAmount)
                .toString();
    }
@@ -432,6 +451,9 @@
        if (this.isset_beiz) {
dep_form_scrapped_model.setBeiz(this.getBeiz());
        }
        if (this.isset_totalAmount) {
dep_form_scrapped_model.setTotalAmount(this.getTotalAmount());
        }
        return dep_form_scrapped_model;
    }
}