cy
2023-11-27 20c30d26f8bab22a4cb6b6459962fa92d6da490f
consum-model-pojo/src/main/java/com/consum/model/po/LGoodsUserRecord.java
@@ -20,17 +20,21 @@
    protected boolean isset_id = false;
    // 属性列表
    private Long goodsUserPhone = null;
    private Long whGoodsId = null;
    @JsonIgnore
    protected boolean isset_goodsUserPhone = false;
    protected boolean isset_whGoodsId = false;
    private Integer recordType = null;
    @JsonIgnore
    protected boolean isset_recordType = false;
    private Long lastRecordId = null;
    private Long transBusinessId = null;
    @JsonIgnore
    protected boolean isset_lastRecordId = false;
    protected boolean isset_transBusinessId = false;
    private Long procureModelUserRecordId = null;
    @JsonIgnore
    protected boolean isset_procureModelUserRecordId = false;
    private Long nowUserPhone = null;
    @JsonIgnore
@@ -51,6 +55,10 @@
    private Long dealTime = null;
    @JsonIgnore
    protected boolean isset_dealTime = false;
    private Integer lastRecord = null;
    @JsonIgnore
    protected boolean isset_lastRecord = false;
    /**
     * 默认构造函数
@@ -87,18 +95,18 @@
        return this.id == null;
    }
    public Long getGoodsUserPhone() {
        return this.goodsUserPhone;
    public Long getWhGoodsId() {
        return this.whGoodsId;
    }
    public void setGoodsUserPhone(Long goodsUserPhone) {
        this.goodsUserPhone = goodsUserPhone;
        this.isset_goodsUserPhone = true;
    public void setWhGoodsId(Long whGoodsId) {
        this.whGoodsId = whGoodsId;
        this.isset_whGoodsId = true;
    }
    @JsonIgnore
    public boolean isEmptyGoodsUserPhone() {
        return this.goodsUserPhone == null;
    public boolean isEmptyWhGoodsId() {
        return this.whGoodsId == null;
    }
    public Integer getRecordType() {
@@ -115,18 +123,32 @@
        return this.recordType == null;
    }
    public Long getLastRecordId() {
        return this.lastRecordId;
    public Long getTransBusinessId() {
        return this.transBusinessId;
    }
    public void setLastRecordId(Long lastRecordId) {
        this.lastRecordId = lastRecordId;
        this.isset_lastRecordId = true;
    public void setTransBusinessId(Long transBusinessId) {
        this.transBusinessId = transBusinessId;
        this.isset_transBusinessId = true;
    }
    @JsonIgnore
    public boolean isEmptyLastRecordId() {
        return this.lastRecordId == null;
    public boolean isEmptyTransBusinessId() {
        return this.transBusinessId == null;
    }
    public Long getProcureModelUserRecordId() {
        return this.procureModelUserRecordId;
    }
    public void setProcureModelUserRecordId(Long procureModelUserRecordId) {
        this.procureModelUserRecordId = procureModelUserRecordId;
        this.isset_procureModelUserRecordId = true;
    }
    @JsonIgnore
    public boolean isEmptyProcureModelUserRecordId() {
        return this.procureModelUserRecordId == null;
    }
    public Long getNowUserPhone() {
@@ -199,6 +221,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() 方法
     */
@@ -206,14 +242,16 @@
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("goodsUserPhone=").append(this.goodsUserPhone)
                .append("whGoodsId=").append(this.whGoodsId)
                .append("recordType=").append(this.recordType)
                .append("lastRecordId=").append(this.lastRecordId)
                .append("transBusinessId=").append(this.transBusinessId)
                .append("procureModelUserRecordId=").append(this.procureModelUserRecordId)
                .append("nowUserPhone=").append(this.nowUserPhone)
                .append("nowUserName=").append(this.nowUserName)
                .append("operatorId=").append(this.operatorId)
                .append("operatorName=").append(this.operatorName)
                .append("dealTime=").append(this.dealTime)
                .append("lastRecord=").append(this.lastRecord)
                .toString();
    }
@@ -231,14 +269,17 @@
            l_goods_user_record.setId(this.getId());
        }
        // 普通属性
        if (this.isset_goodsUserPhone) {
            l_goods_user_record.setGoodsUserPhone(this.getGoodsUserPhone());
        if (this.isset_whGoodsId) {
            l_goods_user_record.setWhGoodsId(this.getWhGoodsId());
        }
        if (this.isset_recordType) {
            l_goods_user_record.setRecordType(this.getRecordType());
        }
        if (this.isset_lastRecordId) {
            l_goods_user_record.setLastRecordId(this.getLastRecordId());
        if (this.isset_transBusinessId) {
            l_goods_user_record.setTransBusinessId(this.getTransBusinessId());
        }
        if (this.isset_procureModelUserRecordId) {
            l_goods_user_record.setProcureModelUserRecordId(this.getProcureModelUserRecordId());
        }
        if (this.isset_nowUserPhone) {
            l_goods_user_record.setNowUserPhone(this.getNowUserPhone());
@@ -255,6 +296,9 @@
        if (this.isset_dealTime) {
            l_goods_user_record.setDealTime(this.getDealTime());
        }
        if (this.isset_lastRecord) {
            l_goods_user_record.setLastRecord(this.getLastRecord());
        }
        return l_goods_user_record;
    }
}