consum-model-pojo/src/main/java/com/consum/model/po/LGoodsWhRecord.java
@@ -20,25 +20,29 @@
    protected boolean isset_id = false;
    // 属性列表
    private Long lWarehouseFlowId = null;
    private Long warehouseFlowId = null;
    @JsonIgnore
    protected boolean isset_lWarehouseFlowId = false;
    protected boolean isset_warehouseFlowId = false;
    private Long lWhGoodsId = null;
    private Long whGoodsId = null;
    @JsonIgnore
    protected boolean isset_lWhGoodsId = false;
    protected boolean isset_whGoodsId = false;
    private Integer warehouseType = null;
    @JsonIgnore
    protected boolean isset_warehouseType = false;
    private Long warehouseId = null;
    @JsonIgnore
    protected boolean isset_warehouseId = false;
    private Integer parentId = null;
    @JsonIgnore
    protected boolean isset_parentId = false;
    private Long dealTime = null;
    @JsonIgnore
    protected boolean isset_dealTime = false;
    private Integer lastRecord = null;
    @JsonIgnore
    protected boolean isset_lastRecord = false;
    /**
     * 默认构造函数
@@ -75,32 +79,46 @@
        return this.id == null;
    }
    public Long getLWarehouseFlowId() {
        return this.lWarehouseFlowId;
    public Long getWarehouseFlowId() {
        return this.warehouseFlowId;
    }
    public void setLWarehouseFlowId(Long lWarehouseFlowId) {
        this.lWarehouseFlowId = lWarehouseFlowId;
        this.isset_lWarehouseFlowId = true;
    public void setWarehouseFlowId(Long warehouseFlowId) {
        this.warehouseFlowId = warehouseFlowId;
        this.isset_warehouseFlowId = true;
    }
    @JsonIgnore
    public boolean isEmptyLWarehouseFlowId() {
        return this.lWarehouseFlowId == null;
    public boolean isEmptyWarehouseFlowId() {
        return this.warehouseFlowId == null;
    }
    public Long getLWhGoodsId() {
        return this.lWhGoodsId;
    public Long getWhGoodsId() {
        return this.whGoodsId;
    }
    public void setLWhGoodsId(Long lWhGoodsId) {
        this.lWhGoodsId = lWhGoodsId;
        this.isset_lWhGoodsId = true;
    public void setWhGoodsId(Long whGoodsId) {
        this.whGoodsId = whGoodsId;
        this.isset_whGoodsId = true;
    }
    @JsonIgnore
    public boolean isEmptyLWhGoodsId() {
        return this.lWhGoodsId == null;
    public boolean isEmptyWhGoodsId() {
        return this.whGoodsId == null;
    }
    public Integer getWarehouseType() {
        return this.warehouseType;
    }
    public void setWarehouseType(Integer warehouseType) {
        this.warehouseType = warehouseType;
        this.isset_warehouseType = true;
    }
    @JsonIgnore
    public boolean isEmptyWarehouseType() {
        return this.warehouseType == null;
    }
    public Long getWarehouseId() {
@@ -117,20 +135,6 @@
        return this.warehouseId == null;
    }
    public Integer getParentId() {
        return this.parentId;
    }
    public void setParentId(Integer parentId) {
        this.parentId = parentId;
        this.isset_parentId = true;
    }
    @JsonIgnore
    public boolean isEmptyParentId() {
        return this.parentId == null;
    }
    public Long getDealTime() {
        return this.dealTime;
    }
@@ -145,6 +149,20 @@
        return this.dealTime == null;
    }
    public Integer getLastRecord() {
        return this.lastRecord;
    }
    public void setLastRecord(Integer lastRecord) {
        this.lastRecord = lastRecord;
        this.isset_lastRecord = true;
    }
    @JsonIgnore
    public boolean isEmptyLastRecord() {
        return this.lastRecord == null;
    }
    /**
     * 重写 toString() 方法
     */
@@ -152,11 +170,12 @@
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("lWarehouseFlowId=").append(this.lWarehouseFlowId)
                .append("lWhGoodsId=").append(this.lWhGoodsId)
                .append("warehouseFlowId=").append(this.warehouseFlowId)
                .append("whGoodsId=").append(this.whGoodsId)
                .append("warehouseType=").append(this.warehouseType)
                .append("warehouseId=").append(this.warehouseId)
                .append("parentId=").append(this.parentId)
                .append("dealTime=").append(this.dealTime)
                .append("lastRecord=").append(this.lastRecord)
                .toString();
    }
@@ -174,21 +193,24 @@
            l_goods_wh_record.setId(this.getId());
        }
        // 普通属性
        if (this.isset_lWarehouseFlowId) {
            l_goods_wh_record.setLWarehouseFlowId(this.getLWarehouseFlowId());
        if (this.isset_warehouseFlowId) {
            l_goods_wh_record.setWarehouseFlowId(this.getWarehouseFlowId());
        }
        if (this.isset_lWhGoodsId) {
            l_goods_wh_record.setLWhGoodsId(this.getLWhGoodsId());
        if (this.isset_whGoodsId) {
            l_goods_wh_record.setWhGoodsId(this.getWhGoodsId());
        }
        if (this.isset_warehouseType) {
            l_goods_wh_record.setWarehouseType(this.getWarehouseType());
        }
        if (this.isset_warehouseId) {
            l_goods_wh_record.setWarehouseId(this.getWarehouseId());
        }
        if (this.isset_parentId) {
            l_goods_wh_record.setParentId(this.getParentId());
        }
        if (this.isset_dealTime) {
            l_goods_wh_record.setDealTime(this.getDealTime());
        }
        if (this.isset_lastRecord) {
            l_goods_wh_record.setLastRecord(this.getLastRecord());
        }
        return l_goods_wh_record;
    }
}