package com.qxueyou.scc.sys.model;
|
/**
|
* LoginController里cacheUserInfo方法的参数
|
* @author iqtogether
|
*
|
*/
|
public class CacheParamters {
|
/** userId*/
|
private String userId;
|
|
/** cookie值*/
|
private String cookieValue;
|
|
/** 班主任Id*/
|
private String chargerClassId;
|
|
/** 学员Id*/
|
private String sutdentClassId;
|
|
/** 管理员Id*/
|
private String adminOrgId;
|
|
/** 讲师班级Id*/
|
private String teacherClassId;
|
|
/** 助理讲师班级Id*/
|
private String assTeacherClassId;
|
|
/** 自定义机构管理员Id*/
|
private String customOrgId;
|
|
/** 自定义角色Id*/
|
private String curtomRoleId;
|
|
/** 自定义角色值*/
|
private String customRoleValue;
|
|
/** 是否缓存*/
|
private Boolean cacheIpFlag;
|
|
/** ip*/
|
private String ip;
|
|
/** 登录平台:platForm*/
|
private String platForm;
|
|
/**
|
* @return the userId
|
*/
|
public String getUserId() {
|
return userId;
|
}
|
/**
|
* @param userId the userId to set
|
*/
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
/**
|
* @return the cookieValue
|
*/
|
public String getCookieValue() {
|
return cookieValue;
|
}
|
/**
|
* @param cookieValue the cookieValue to set
|
*/
|
public void setCookieValue(String cookieValue) {
|
this.cookieValue = cookieValue;
|
}
|
/**
|
* @return the charderClassId
|
*/
|
public String getChargerClassId() {
|
return chargerClassId;
|
}
|
/**
|
* @param charderClassId the charderClassId to set
|
*/
|
public void setChargerClassId(String chargerClassId) {
|
this.chargerClassId = chargerClassId;
|
}
|
/**
|
* @return the sutdentClassId
|
*/
|
public String getSutdentClassId() {
|
return sutdentClassId;
|
}
|
/**
|
* @param sutdentClassId the sutdentClassId to set
|
*/
|
public void setSutdentClassId(String sutdentClassId) {
|
this.sutdentClassId = sutdentClassId;
|
}
|
/**
|
* @return the adminOrgId
|
*/
|
public String getAdminOrgId() {
|
return adminOrgId;
|
}
|
/**
|
* @param adminOrgId the adminOrgId to set
|
*/
|
public void setAdminOrgId(String adminOrgId) {
|
this.adminOrgId = adminOrgId;
|
}
|
/**
|
* @return the teacherClassId
|
*/
|
public String getTeacherClassId() {
|
return teacherClassId;
|
}
|
/**
|
* @param teacherClassId the teacherClassId to set
|
*/
|
public void setTeacherClassId(String teacherClassId) {
|
this.teacherClassId = teacherClassId;
|
}
|
/**
|
* @return the customOrgId
|
*/
|
public String getCustomOrgId() {
|
return customOrgId;
|
}
|
/**
|
* @param customOrgId the customOrgId to set
|
*/
|
public void setCustomOrgId(String customOrgId) {
|
this.customOrgId = customOrgId;
|
}
|
/**
|
* @return the curtomRoleId
|
*/
|
public String getCurtomRoleId() {
|
return curtomRoleId;
|
}
|
/**
|
* @param curtomRoleId the curtomRoleId to set
|
*/
|
public void setCurtomRoleId(String curtomRoleId) {
|
this.curtomRoleId = curtomRoleId;
|
}
|
/**
|
* @return the customRoleValue
|
*/
|
public String getCustomRoleValue() {
|
return customRoleValue;
|
}
|
/**
|
* @param customRoleValue the customRoleValue to set
|
*/
|
public void setCustomRoleValue(String customRoleValue) {
|
this.customRoleValue = customRoleValue;
|
}
|
/**
|
* @return the cacheIpFlag
|
*/
|
public Boolean getCacheIpFlag() {
|
return cacheIpFlag;
|
}
|
/**
|
* @param cacheIpFlag the cacheIpFlag to set
|
*/
|
public void setCacheIpFlag(Boolean cacheIpFlag) {
|
this.cacheIpFlag = cacheIpFlag;
|
}
|
/**
|
* @return the ip
|
*/
|
public String getIp() {
|
return ip;
|
}
|
/**
|
* @param ip the ip to set
|
*/
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
public String getAssTeacherClassId() {
|
return assTeacherClassId;
|
}
|
public void setAssTeacherClassId(String assTeacherClassId) {
|
this.assTeacherClassId = assTeacherClassId;
|
}
|
public String getPlatForm() {
|
return platForm;
|
}
|
public void setPlatForm(String platForm) {
|
this.platForm = platForm;
|
}
|
|
}
|