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

93 lines
2.0 KiB
Java
Raw Normal View History

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;
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
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;
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;
}
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;
}
@Override
public String toString() {
return "SysUserVo{" +
"id=" + id +
", reallyName='" + reallyName + '\'' +
", telephone='" + telephone + '\'' +
", countyCode='" + countyCode + '\'' +
2021-07-12 14:51:34 +08:00
", activeFlag=" + activeFlag +
", addTime='" + addTime + '\'' +
2021-07-12 14:51:34 +08:00
'}';
}
}