| | |
| | | @Table("yeshi_ec_user_info_extra")
|
| | | public class UserInfoExtra {
|
| | |
|
| | | public static int INVITE_CODE_SATTE_VALID_NO_UPDATE = 1;// 正常-未修改过
|
| | | public static int INVITE_CODE_SATTE_VALID_UPDATED = 2;// 不正常-未修改过
|
| | |
|
| | | @Column(name = "uie_id")
|
| | | private Long id;
|
| | |
|
| | |
| | | @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;
|
| | |
| | | @Column(name = "uie_active_time")
|
| | | private Date activeTime;
|
| | |
|
| | | // 邀请码状态
|
| | | @Column(name = "uie_invite_code_state")
|
| | | private Integer inviteCodeState;// 0-无效 1-未修改有效 2-修改有效
|
| | |
|
| | | // 二维码
|
| | | @Column(name = "uie_ercode")
|
| | | private String erCode;
|
| | | |
| | | // 创建时间
|
| | | @Column(name = "uie_create_time")
|
| | | private Date createTime;
|
| | |
| | | this.activeTime = activeTime;
|
| | | }
|
| | |
|
| | | public Integer getInviteCodeState() {
|
| | | return inviteCodeState;
|
| | | public String getInviteCodeVip() {
|
| | | return inviteCodeVip;
|
| | | }
|
| | |
|
| | | public void setInviteCodeState(Integer inviteCodeState) {
|
| | | this.inviteCodeState = inviteCodeState;
|
| | | public void setInviteCodeVip(String inviteCodeVip) {
|
| | | this.inviteCodeVip = inviteCodeVip;
|
| | | }
|
| | |
|
| | | public String getErCode() {
|
| | | return erCode;
|
| | | }
|
| | |
|
| | | public void setErCode(String erCode) {
|
| | | this.erCode = erCode;
|
| | | }
|
| | |
|
| | | }
|