Pārlūkot izejas kodu

Merge remote-tracking branch 'origin/master'

lideyin 5 gadi atpakaļ
vecāks
revīzija
dfe6dccd6f

+ 32 - 0
src/main/java/cn/com/qmth/examcloud/api/commons/enums/PrivilegeGroupType.java

@@ -0,0 +1,32 @@
+package cn.com.qmth.examcloud.api.commons.enums;
+
+/**
+ * 权限组类型
+ *
+ * @author WANGWEI
+ * @date 2020年2月14日
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
+ */
+public enum PrivilegeGroupType {
+
+	/**
+	 * 菜单
+	 */
+	MENU,
+
+	/**
+	 * 功能
+	 */
+	FUNCTION,
+
+	/**
+	 * 数据权限
+	 */
+	DATA_ACCESS,
+
+	/**
+	 * 学生端菜单
+	 */
+	STUDENT_CLIENT_MENU
+
+}