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; private Integer activeFlag; private String addTime; private String overTime; private Integer dayNum; private String accountType; private String countyName; public SysUserVo(Integer id, String reallyName, String telephone, String countyCode, Integer activeFlag, String addTime, String overTime, Integer dayNum, String accountType, String countyName) { this.id = id; this.reallyName = reallyName; this.telephone = telephone; this.countyCode = countyCode; this.activeFlag = activeFlag; this.addTime = addTime; this.overTime = overTime; this.dayNum = dayNum; this.accountType = accountType; this.countyName = countyName; } 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; } public void setCountyCode(String countyCode) { this.countyCode = countyCode; } public Integer getActiveFlag() { return activeFlag; } public void setActiveFlag(Integer activeFlag) { this.activeFlag = activeFlag; } public String getAddTime() { return addTime; } public void setAddTime(String addTime) { this.addTime = addTime; } public String getOverTime() { return overTime; } public void setOverTime(String overTime) { this.overTime = overTime; } public Integer getDayNum() { return dayNum; } public void setDayNum(Integer dayNum) { this.dayNum = dayNum; } public String getAccountType() { return accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public String getCountyName() { return countyName; } public void setCountyName(String countyName) { this.countyName = countyName; } }