package com.yeshi.fanli.entity.bus.user;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
/**
|
* 用户删除、封禁记录
|
*
|
*/
|
@Table("yeshi_ec_user_delete_record")
|
public class UserInfoDeleteRecord {
|
|
@Column(name = "udr_id")
|
private Long id;
|
// 用户id
|
@Column(name = "udr_uid")
|
private UserInfo userInfo;
|
// 状态
|
@Column(name = "udr_state")
|
private Integer state;
|
// 原因
|
@Column(name = "udr_reason")
|
private String reason;
|
// 创建时间
|
@Column(name = "udr_create_time")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public UserInfo getUserInfo() {
|
return userInfo;
|
}
|
|
public void setUserInfo(UserInfo userInfo) {
|
this.userInfo = userInfo;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|