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