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

114 lines
2.3 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
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
2021-08-06 11:36:13 +08:00
public SysUserVo(Integer id, String reallyName, String telephone, String countyCode, Integer activeFlag, String addTime, String overTime, Integer dayNum, String accountType) {
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;
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
}
}