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;
|
}
|
}
|