From f4a0f2acc63d7785eab108419a4e16f5f688cb95 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 18 一月 2020 12:06:27 +0800 Subject: [PATCH] 用户注册信息 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java | 93 +++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 83 insertions(+), 10 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java index 3058659..1ee036c 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserInfoExtra.java @@ -9,6 +9,7 @@ /** * 鐢ㄦ埛闄勫姞淇℃伅 + * * @author Administrator * */ @@ -22,7 +23,7 @@ @Expose @Column(name = "uie_uid") private UserInfo userInfo; - + // 绛夌骇id @Expose @Column(name = "uie_rank_id") @@ -31,20 +32,24 @@ // 绛夌骇鏉ユ簮锛氳繑鍒┿�佸垎浜�侀個璇� @Column(name = "uie_rank_source") private Integer rankSource; - + // 绛夌骇鍒ゆ柇璁㈠崟鏁伴噺 @Column(name = "uie_rank_order_num") private Integer rankOrderNum; - + // 绛夌骇鏇存柊鏃堕棿 @Expose @Column(name = "uie_rank_update_time") private Date rankUpdateTime; - + // 閭�璇风爜 @Column(name = "uie_invite_code") private String inviteCode; + // 閭�璇风爜-浼氬憳 + @Column(name = "uie_invite_code_vip") + private String inviteCodeVip; + // 鏂颁汉鎶藉娆℃暟 @Column(name = "uie_lottery_newbies") private Integer lotteryNewbies; @@ -56,15 +61,15 @@ // 鏄惁鍚屾瀵艰埅鏍� @Column(name = "uie_synch_navbar") private Boolean synchNavbar; - + // 棣栨鐧诲綍鏃堕棿 @Column(name = "uie_first_login_time") private Date firstLoginTime; - - // 鎬у埆: 1-濂� 2-鐢� + + // 鎬у埆: 1-濂� 2-鐢� @Column(name = "uie_sex") private Integer sex; - + // 寰俊鍙� @Column(name = "uie_weixin") private String weiXin; @@ -72,7 +77,27 @@ // 閲戝竵鏁伴噺 @Column(name = "uie_gold_coin") private Integer goldCoin; - + + // 鏄惁寰俊鑷嫊鎻愮従 + @Column(name = "uie_auto_extract") + private Boolean autoExtract; + + // 寰俊鑷姩鎻愮幇鍏抽棴鏃ユ湡 + @Column(name = "uie_close_time_extract") + private Date closeTimeExtract; + + // 鐢ㄦ埛鏍囪瘑 + @Column(name = "uie_mark") + private String mark; + + // 鐢ㄦ埛鏈�杩戞椿璺冩椂闂� + @Column(name = "uie_active_time") + private Date activeTime; + + // 浜岀淮鐮� + @Column(name = "uie_ercode") + private String erCode; + // 鍒涘缓鏃堕棿 @Column(name = "uie_create_time") private Date createTime; @@ -80,7 +105,6 @@ // 鏇存柊鏃堕棿 @Column(name = "uie_update_time") private Date updateTime; - public Long getId() { return id; @@ -209,4 +233,53 @@ public void setGoldCoin(Integer goldCoin) { this.goldCoin = goldCoin; } + + public Boolean getAutoExtract() { + return autoExtract; + } + + public void setAutoExtract(Boolean autoExtract) { + this.autoExtract = autoExtract; + } + + public Date getCloseTimeExtract() { + return closeTimeExtract; + } + + public void setCloseTimeExtract(Date closeTimeExtract) { + this.closeTimeExtract = closeTimeExtract; + } + + public String getMark() { + return mark; + } + + public void setMark(String mark) { + this.mark = mark; + } + + public Date getActiveTime() { + return activeTime; + } + + public void setActiveTime(Date activeTime) { + this.activeTime = activeTime; + } + + public String getInviteCodeVip() { + return inviteCodeVip; + } + + public void setInviteCodeVip(String inviteCodeVip) { + this.inviteCodeVip = inviteCodeVip; + } + + public String getErCode() { + return erCode; + } + + public void setErCode(String erCode) { + this.erCode = erCode; + } + } -- Gitblit v1.8.0