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 Integer dayNum; private String overTime; public SysUserVo(Integer id, String reallyName, String telephone, String countyCode, Integer activeFlag, String addTime, Integer dayNum, String overTime) { this.id = id; this.reallyName = reallyName; this.telephone = telephone; this.countyCode = countyCode; this.activeFlag = activeFlag; this.addTime = addTime; this.dayNum = dayNum; this.overTime = overTime; } 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 Integer getDayNum() { return dayNum; } public void setDayNum(Integer dayNum) { this.dayNum = dayNum; } public String getOverTime() { return overTime; } public void setOverTime(String overTime) { this.overTime = overTime; } }