2021-07-12 14:51:34 +08:00
|
|
|
package com.xkrs.model.vo;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SysUserVo
|
|
|
|
* @Author tajochen
|
|
|
|
*/
|
|
|
|
public class SysUserVo implements Serializable {
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
private String reallyName;
|
|
|
|
|
|
|
|
private String telephone;
|
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
private String countyCode;
|
2021-07-12 14:51:34 +08:00
|
|
|
|
|
|
|
private Integer activeFlag;
|
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
private String addTime;
|
2021-07-12 14:51:34 +08:00
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
public SysUserVo(Integer id, String reallyName, String telephone, String countyCode, Integer activeFlag, String addTime) {
|
2021-07-12 14:51:34 +08:00
|
|
|
this.id = id;
|
|
|
|
this.reallyName = reallyName;
|
|
|
|
this.telephone = telephone;
|
2021-07-14 16:06:34 +08:00
|
|
|
this.countyCode = countyCode;
|
2021-07-12 14:51:34 +08:00
|
|
|
this.activeFlag = activeFlag;
|
|
|
|
this.addTime = addTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
public String getCountyCode() {
|
|
|
|
return countyCode;
|
2021-07-12 14:51:34 +08:00
|
|
|
}
|
|
|
|
|
2021-07-14 16:06: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;
|
|
|
|
}
|
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
public String getAddTime() {
|
2021-07-12 14:51:34 +08:00
|
|
|
return addTime;
|
|
|
|
}
|
|
|
|
|
2021-07-14 16:06:34 +08:00
|
|
|
public void setAddTime(String addTime) {
|
2021-07-12 14:51:34 +08:00
|
|
|
this.addTime = addTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return "SysUserVo{" +
|
|
|
|
"id=" + id +
|
|
|
|
", reallyName='" + reallyName + '\'' +
|
|
|
|
", telephone='" + telephone + '\'' +
|
2021-07-14 16:06:34 +08:00
|
|
|
", countyCode='" + countyCode + '\'' +
|
2021-07-12 14:51:34 +08:00
|
|
|
", activeFlag=" + activeFlag +
|
2021-07-14 16:06:34 +08:00
|
|
|
", addTime='" + addTime + '\'' +
|
2021-07-12 14:51:34 +08:00
|
|
|
'}';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|