fire_point/src/main/java/com/xkrs/model/vo/SysUserVo.java

181 lines
3.8 KiB
Java
Raw Normal View History

2021-07-12 14:51:34 +08:00
package com.xkrs.model.vo;
import java.io.Serializable;
/**
* SysUserVo
*
2021-07-12 14:51:34 +08:00
* @Author tajochen
*/
public class SysUserVo implements Serializable {
2021-07-12 14:51:34 +08:00
private Integer id;
private String reallyName;
private String telephone;
private String countyCode;
2021-07-12 14:51:34 +08:00
private Integer activeFlag;
private String addTime;
2021-07-12 14:51:34 +08:00
2021-08-06 11:36:13 +08:00
private String overTime;
2021-07-15 14:31:07 +08:00
private Integer dayNum;
2021-08-06 11:36:13 +08:00
private String accountType;
2021-07-15 14:31:07 +08:00
private String countyName;
private String lastEntryIp;
private Integer loginNum;
private String loginLastTime;
private Integer vipLevel;
private Integer receiveSms;
public SysUserVo(Integer id, String reallyName, String telephone, String countyCode, Integer activeFlag, String addTime, String overTime, Integer dayNum, String accountType, String countyName, String lastEntryIp, Integer loginNum, String loginLastTime, Integer vipLevel, Integer receiveSms) {
2021-07-12 14:51:34 +08:00
this.id = id;
this.reallyName = reallyName;
this.telephone = telephone;
this.countyCode = countyCode;
2021-07-12 14:51:34 +08:00
this.activeFlag = activeFlag;
this.addTime = addTime;
2021-07-15 14:31:07 +08:00
this.overTime = overTime;
2021-08-06 11:36:13 +08:00
this.dayNum = dayNum;
this.accountType = accountType;
this.countyName = countyName;
this.lastEntryIp = lastEntryIp;
this.loginNum = loginNum;
this.loginLastTime = loginLastTime;
this.vipLevel = vipLevel;
this.receiveSms = receiveSms;
2021-07-12 14:51:34 +08:00
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getReallyName() {
return reallyName;
}
public void setReallyName(String reallyName) {
this.reallyName = reallyName;
}
public String getTelephone() {
return telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getCountyCode() {
return countyCode;
2021-07-12 14:51:34 +08:00
}
public void setCountyCode(String countyCode) {
this.countyCode = countyCode;
2021-07-12 14:51:34 +08:00
}
public Integer getActiveFlag() {
return activeFlag;
}
public void setActiveFlag(Integer activeFlag) {
this.activeFlag = activeFlag;
}
public String getAddTime() {
2021-07-12 14:51:34 +08:00
return addTime;
}
public void setAddTime(String addTime) {
2021-07-12 14:51:34 +08:00
this.addTime = addTime;
}
2021-08-06 11:36:13 +08:00
public String getOverTime() {
return overTime;
}
public void setOverTime(String overTime) {
this.overTime = overTime;
}
2021-07-15 14:31:07 +08:00
public Integer getDayNum() {
return dayNum;
}
public void setDayNum(Integer dayNum) {
this.dayNum = dayNum;
}
2021-08-06 11:36:13 +08:00
public String getAccountType() {
return accountType;
2021-07-15 14:31:07 +08:00
}
2021-08-06 11:36:13 +08:00
public void setAccountType(String accountType) {
this.accountType = accountType;
2021-07-12 14:51:34 +08:00
}
public String getCountyName() {
return countyName;
}
public void setCountyName(String countyName) {
this.countyName = countyName;
}
public String getLastEntryIp() {
return lastEntryIp;
}
public void setLastEntryIp(String lastEntryIp) {
this.lastEntryIp = lastEntryIp;
}
public Integer getLoginNum() {
return loginNum;
}
public void setLoginNum(Integer loginNum) {
this.loginNum = loginNum;
}
public String getLoginLastTime() {
return loginLastTime;
}
public void setLoginLastTime(String loginLastTime) {
this.loginLastTime = loginLastTime;
}
public Integer getVipLevel() {
return vipLevel;
}
public void setVipLevel(Integer vipLevel) {
this.vipLevel = vipLevel;
}
public Integer getReceiveSms() {
return receiveSms;
}
public void setReceiveSms(Integer receiveSms) {
this.receiveSms = receiveSms;
}
2021-07-12 14:51:34 +08:00
}