WANG 6 年之前
父節點
當前提交
325a7e1294
共有 1 個文件被更改,包括 41 次插入0 次删除
  1. 41 0
      src/main/java/cn/com/qmth/examcloud/support/cache/bean/PrivilegeRolesCacheBean.java

+ 41 - 0
src/main/java/cn/com/qmth/examcloud/support/cache/bean/PrivilegeRolesCacheBean.java

@@ -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;
+	}
+
+}