package com.yeshi.fanli.entity.bus.user;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.yeshi.fanli.entity.system.ChannelEnum;
|
|
/**
|
* 首次注册信息
|
*
|
* @author Administrator
|
*
|
*/
|
@Table("yeshi_ec_user_info_register")
|
public class UserInfoRegister {
|
// 用户id
|
@Column(name = "regt_id")
|
private Long id;
|
// 渠道
|
@Column(name = "regt_channel")
|
private ChannelEnum channel;
|
// ip : 端口
|
@Column(name = "regt_ip")
|
private String ip;
|
// 设备
|
@Column(name = "regt_device")
|
private String device;
|
// 时间
|
@Column(name = "regt_create_time")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public ChannelEnum getChannel() {
|
return channel;
|
}
|
|
public void setChannel(ChannelEnum channel) {
|
this.channel = channel;
|
}
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|