consum-model-pojo/src/main/java/com/consum/model/po/DepFormScrappedModel.java
@@ -29,7 +29,7 @@
    @JsonIgnore
    protected boolean isset_depFormScrappedGoodsId = false;
    private String scrappedCode = null;
    private Long scrappedCode = null;
    @JsonIgnore
    protected boolean isset_scrappedCode = false;
@@ -84,6 +84,10 @@
    private String beiz = null;
    @JsonIgnore
    protected boolean isset_beiz = false;
    private Integer totalAmount = null;
    @JsonIgnore
    protected boolean isset_totalAmount = false;
    /**
     * 默认构造函数
@@ -148,18 +152,18 @@
        return this.depFormScrappedGoodsId == null;
    }
    public String getScrappedCode() {
    public Long getScrappedCode() {
        return this.scrappedCode;
    }
    public void setScrappedCode(String scrappedCode) {
    public void setScrappedCode(Long scrappedCode) {
        this.scrappedCode = scrappedCode;
        this.isset_scrappedCode = true;
    }
    @JsonIgnore
    public boolean isEmptyScrappedCode() {
        return this.scrappedCode == null || this.scrappedCode.length() == 0;
        return this.scrappedCode == null;
    }
    public String getScrappedName() {
@@ -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();
    }
@@ -374,63 +393,66 @@
     * 克隆
     */
    public DepFormScrappedModel $clone() {
        DepFormScrappedModel dep_form_scrapped_model = new DepFormScrappedModel();
DepFormScrappedModel dep_form_scrapped_model = new DepFormScrappedModel();
        // 数据库名称
        //dep_form_scrapped_model.setDatabaseName_(this.getDatabaseName_());
        // 主键
        if (this.isset_id) {
            dep_form_scrapped_model.setId(this.getId());
dep_form_scrapped_model.setId(this.getId());
        }
        // 普通属性
        if (this.isset_depFormScrappedId) {
            dep_form_scrapped_model.setDepFormScrappedId(this.getDepFormScrappedId());
dep_form_scrapped_model.setDepFormScrappedId(this.getDepFormScrappedId());
        }
        if (this.isset_depFormScrappedGoodsId) {
            dep_form_scrapped_model.setDepFormScrappedGoodsId(this.getDepFormScrappedGoodsId());
dep_form_scrapped_model.setDepFormScrappedGoodsId(this.getDepFormScrappedGoodsId());
        }
        if (this.isset_scrappedCode) {
            dep_form_scrapped_model.setScrappedCode(this.getScrappedCode());
dep_form_scrapped_model.setScrappedCode(this.getScrappedCode());
        }
        if (this.isset_scrappedName) {
            dep_form_scrapped_model.setScrappedName(this.getScrappedName());
dep_form_scrapped_model.setScrappedName(this.getScrappedName());
        }
        if (this.isset_baseGoodsTemplateId) {
            dep_form_scrapped_model.setBaseGoodsTemplateId(this.getBaseGoodsTemplateId());
dep_form_scrapped_model.setBaseGoodsTemplateId(this.getBaseGoodsTemplateId());
        }
        if (this.isset_baseGoodsTemplateName) {
            dep_form_scrapped_model.setBaseGoodsTemplateName(this.getBaseGoodsTemplateName());
dep_form_scrapped_model.setBaseGoodsTemplateName(this.getBaseGoodsTemplateName());
        }
        if (this.isset_classification) {
            dep_form_scrapped_model.setClassification(this.getClassification());
dep_form_scrapped_model.setClassification(this.getClassification());
        }
        if (this.isset_unit) {
            dep_form_scrapped_model.setUnit(this.getUnit());
dep_form_scrapped_model.setUnit(this.getUnit());
        }
        if (this.isset_baseGoodsModelsId) {
            dep_form_scrapped_model.setBaseGoodsModelsId(this.getBaseGoodsModelsId());
dep_form_scrapped_model.setBaseGoodsModelsId(this.getBaseGoodsModelsId());
        }
        if (this.isset_baseGoodsModelsName) {
            dep_form_scrapped_model.setBaseGoodsModelsName(this.getBaseGoodsModelsName());
dep_form_scrapped_model.setBaseGoodsModelsName(this.getBaseGoodsModelsName());
        }
        if (this.isset_procureModelUserId) {
            dep_form_scrapped_model.setProcureModelUserId(this.getProcureModelUserId());
dep_form_scrapped_model.setProcureModelUserId(this.getProcureModelUserId());
        }
        if (this.isset_initialCount) {
            dep_form_scrapped_model.setInitialCount(this.getInitialCount());
dep_form_scrapped_model.setInitialCount(this.getInitialCount());
        }
        if (this.isset_useCount) {
            dep_form_scrapped_model.setUseCount(this.getUseCount());
dep_form_scrapped_model.setUseCount(this.getUseCount());
        }
        if (this.isset_counts) {
            dep_form_scrapped_model.setCounts(this.getCounts());
dep_form_scrapped_model.setCounts(this.getCounts());
        }
        if (this.isset_goodsUserName) {
            dep_form_scrapped_model.setGoodsUserName(this.getGoodsUserName());
dep_form_scrapped_model.setGoodsUserName(this.getGoodsUserName());
        }
        if (this.isset_beiz) {
            dep_form_scrapped_model.setBeiz(this.getBeiz());
dep_form_scrapped_model.setBeiz(this.getBeiz());
        }
        if (this.isset_totalAmount) {
dep_form_scrapped_model.setTotalAmount(this.getTotalAmount());
        }
        return dep_form_scrapped_model;
    }