admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.yeshi.fanli.entity.bus.user.vip;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.yeshi.fanli.entity.bus.user.UserInfo;
 
/**
 * 用户VIP
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_vip_info")
public class UserVIPInfo {
    public final static int STATE_INVALID = 0;// 无效
    public final static int STATE_SUCCESS = 2;// 成功
    public final static int STATE_VERIFING = 1;// 正在审核
 
    @Column(name = "uvi_uid")
    private Long id;
    @Column(name = "uvi_state")
    private Integer state;
    @Column(name = "uvi_apply_time")
    private Date applyTime;
    @Column(name = "uvi_success_time")
    private Date successTime;
    @Column(name = "uvi_beizhu")
    private String beiZhu;
    @Column(name = "uvi_create_time")
    private Date createTime;
    @Column(name = "uvi_update_time")
    private Date updateTime;
 
    // 用户信息
    private UserInfo userInfo;
    
    
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public Date getApplyTime() {
        return applyTime;
    }
 
    public void setApplyTime(Date applyTime) {
        this.applyTime = applyTime;
    }
 
    public Date getSuccessTime() {
        return successTime;
    }
 
    public void setSuccessTime(Date successTime) {
        this.successTime = successTime;
    }
 
    public String getBeiZhu() {
        return beiZhu;
    }
 
    public void setBeiZhu(String beiZhu) {
        this.beiZhu = beiZhu;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public UserInfo getUserInfo() {
        return userInfo;
    }
 
    public void setUserInfo(UserInfo userInfo) {
        this.userInfo = userInfo;
    }
}