fix: 系统管理员角色用system表示避免admin混用

This commit is contained in:
TsMask
2024-07-03 15:12:16 +08:00
parent 43c08a9e56
commit d8e9658a75
8 changed files with 26 additions and 26 deletions

View File

@@ -1,12 +1,12 @@
package admin
// 管理员常量信息
// 系统管理员常量信息
// 管理员-系统指定角色ID
// 系统管理员-系统指定角色ID
const ROLE_ID = "1"
// 管理员-系统指定角色KEY
const ROLE_KEY = "admin"
// 系统管理员-系统指定角色KEY
const ROLE_KEY = "system"
// 管理员-系统指定权限
// 系统管理员-系统指定权限
const PERMISSION = "*:*:*"