package com.newvideo.domain;
|
|
import javax.persistence.Entity;
|
import javax.persistence.ManyToOne;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 用户信息
|
*
|
* @author Administrator
|
*
|
*/
|
@Entity
|
public class UserInfo {
|
@Expose
|
private String id;
|
private String score;
|
private String device;
|
private String createtime;
|
private String mac;
|
private String imei;
|
private String lat;
|
private String lng;
|
private String pptvppi;
|
@Expose
|
private String nickname;// 昵称
|
@Expose
|
private String portrait;// 头像
|
|
private String country;// 国家
|
|
private String city;
|
|
private String ip;
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getCountry() {
|
return country;
|
}
|
|
public void setCountry(String country) {
|
this.country = country;
|
}
|
|
public String getNickname() {
|
return nickname;
|
}
|
|
public void setNickname(String nickname) {
|
this.nickname = nickname;
|
}
|
|
public String getPortrait() {
|
return portrait;
|
}
|
|
public void setPortrait(String portrait) {
|
this.portrait = portrait;
|
}
|
|
public String getPptvppi() {
|
return pptvppi;
|
}
|
|
public void setPptvppi(String pptvppi) {
|
this.pptvppi = pptvppi;
|
}
|
|
public String getMac() {
|
return mac;
|
}
|
|
public void setMac(String mac) {
|
this.mac = mac;
|
}
|
|
public String getImei() {
|
return imei;
|
}
|
|
public void setImei(String imei) {
|
this.imei = imei;
|
}
|
|
public String getLat() {
|
return lat;
|
}
|
|
public void setLat(String lat) {
|
this.lat = lat;
|
}
|
|
public String getLng() {
|
return lng;
|
}
|
|
public void setLng(String lng) {
|
this.lng = lng;
|
}
|
|
public UserInfo() {
|
}
|
|
public UserInfo(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getScore() {
|
return score;
|
}
|
|
public void setScore(String score) {
|
this.score = score;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
@ManyToOne
|
public SystemInfo getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemInfo system) {
|
this.system = system;
|
}
|
|
private SystemInfo system;
|
}
|