package com.gk.hotwork.Domain.Vo;
|
|
import com.gk.hotwork.Domain.*;
|
|
import java.util.Date;
|
import java.util.List;
|
import java.util.Map;
|
|
public class UserVo extends UserInfo {
|
private String token;
|
|
private Long tokenexpired;
|
|
private Object roles;
|
|
private String roleType;
|
|
private Long logintime;
|
|
private String auth;
|
|
private Byte isMainCompany;
|
|
private List<AuthorizationInfo> authorizationCodes;
|
/** 是否通过考试 **/
|
private Byte ispass;
|
/** 考试有效期开始时间 **/
|
private Date starttime;
|
/** 考试有效期结束时间 **/
|
private Date endtime;
|
|
private Object exam;
|
|
private String branch;
|
|
private String number;
|
|
private String code;
|
|
private String roleSign;
|
|
private String province;
|
|
private String city;
|
|
private String county;
|
|
/**
|
* 行政级别 1-省(自治区) 2-地(市、州) 3-区/县
|
*/
|
private Integer executiveLevel;
|
/**
|
* 专业方向id
|
*/
|
private Long specialityId;
|
/**
|
* 专业等级(1初级,2中级,3高级,4其他)
|
*/
|
private Integer professionalLevel;
|
|
|
private CompanyInfo companyInfo;
|
|
private SpecialityInfo specialityInfo;
|
|
@Override
|
public String getProvince() {
|
return province;
|
}
|
|
@Override
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
@Override
|
public String getCity() {
|
return city;
|
}
|
|
@Override
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
@Override
|
public String getCounty() {
|
return county;
|
}
|
|
@Override
|
public void setCounty(String county) {
|
this.county = county;
|
}
|
|
@Override
|
public Long getSpecialityId() {
|
return specialityId;
|
}
|
|
@Override
|
public void setSpecialityId(Long specialityId) {
|
this.specialityId = specialityId;
|
}
|
|
@Override
|
public Integer getProfessionalLevel() {
|
return professionalLevel;
|
}
|
|
@Override
|
public void setProfessionalLevel(Integer professionalLevel) {
|
this.professionalLevel = professionalLevel;
|
}
|
|
@Override
|
public Integer getExecutiveLevel() {
|
return executiveLevel;
|
}
|
|
@Override
|
public void setExecutiveLevel(Integer executiveLevel) {
|
this.executiveLevel = executiveLevel;
|
}
|
|
public SpecialityInfo getSpecialityInfo() {
|
return specialityInfo;
|
}
|
|
public void setSpecialityInfo(SpecialityInfo specialityInfo) {
|
this.specialityInfo = specialityInfo;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public Object getRoles() {
|
return roles;
|
}
|
|
public void setRoles(Object roles) {
|
this.roles = roles;
|
}
|
|
public Long getTokenexpired() {
|
return tokenexpired;
|
}
|
|
public void setTokenexpired(Long tokenexpired) {
|
this.tokenexpired = tokenexpired;
|
}
|
|
public String getRoleType() {
|
return roleType;
|
}
|
|
public void setRoleType(String roleType) {
|
this.roleType = roleType;
|
}
|
|
public Long getLogintime() {
|
return logintime;
|
}
|
|
public void setLogintime(Long logintime) {
|
this.logintime = logintime;
|
}
|
|
public String getAuth() {
|
return auth;
|
}
|
|
public void setAuth(String auth) {
|
this.auth = auth;
|
}
|
|
public List<AuthorizationInfo> getAuthorizationCodes() {
|
return authorizationCodes;
|
}
|
|
public void setAuthorizationCodes(List<AuthorizationInfo> authorizationCodes) {
|
this.authorizationCodes = authorizationCodes;
|
}
|
|
public Byte getIspass() {
|
return ispass;
|
}
|
|
public void setIspass(Byte ispass) {
|
this.ispass = ispass;
|
}
|
|
public Date getStarttime() {
|
return starttime;
|
}
|
|
public void setStarttime(Date starttime) {
|
this.starttime = starttime;
|
}
|
|
public Date getEndtime() {
|
return endtime;
|
}
|
|
public void setEndtime(Date endtime) {
|
this.endtime = endtime;
|
}
|
|
public Object getExam() {
|
return exam;
|
}
|
|
public void setExam(Object exam) {
|
this.exam = exam;
|
}
|
|
public Byte getIsMainCompany() {
|
return isMainCompany;
|
}
|
|
public void setIsMainCompany(Byte isMainCompany) {
|
this.isMainCompany = isMainCompany;
|
}
|
|
public String getBranch() {
|
return branch;
|
}
|
|
public void setBranch(String branch) {
|
this.branch = branch;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
@Override
|
public String getRoleSign() {
|
return roleSign;
|
}
|
|
@Override
|
public void setRoleSign(String roleSign) {
|
this.roleSign = roleSign;
|
}
|
|
public CompanyInfo getCompanyInfo() {
|
return companyInfo;
|
}
|
|
public void setCompanyInfo(CompanyInfo companyInfo) {
|
this.companyInfo = companyInfo;
|
}
|
}
|