admin
2019-04-12 8eacbd15374d01296926e87be3125731521000ee
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
package com.yeshi.fanli.entity.bus.user;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 用户账户绑定记录
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_account_bind_history")
public class UserAccountBindingHistory {
    public final static int TYPE_WX = 1;
    public final static int TYPE_TB = 2;
    public final static int TYPE_PHONE = 3;
    @Column(name = "uabh_id")
    private Long id;
    @Column(name = "uabh_uid")
    private Long uid;
    @Column(name = "uabh_type")
    private Integer type;
    @Column(name = "uabh_content")
    private String content;
    @Column(name = "uabh_first")
    private Boolean first;
    @Column(name = "uabh_create_time")
    private Date createTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public Boolean getFirst() {
        return first;
    }
 
    public void setFirst(Boolean first) {
        this.first = first;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}