|
@@ -0,0 +1,41 @@
|
|
|
+package cn.com.qmth.examcloud.support.cache.bean;
|
|
|
+
|
|
|
+import java.util.Set;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.web.cache.RandomCacheBean;
|
|
|
+
|
|
|
+public class PrivilegeRolesCacheBean extends RandomCacheBean {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 7517123394296666833L;
|
|
|
+
|
|
|
+ private Long rootOrgId;
|
|
|
+
|
|
|
+ private Set<Long> roleIdList;
|
|
|
+
|
|
|
+ private Set<String> roleCodeList;
|
|
|
+
|
|
|
+ public Long getRootOrgId() {
|
|
|
+ return rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Set<Long> getRoleIdList() {
|
|
|
+ return roleIdList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRoleIdList(Set<Long> roleIdList) {
|
|
|
+ this.roleIdList = roleIdList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Set<String> getRoleCodeList() {
|
|
|
+ return roleCodeList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRoleCodeList(Set<String> roleCodeList) {
|
|
|
+ this.roleCodeList = roleCodeList;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|