修复角色禁用权限不失效问题

This commit is contained in:
RuoYi
2024-09-21 11:03:13 +08:00
parent 60a6765f09
commit 05e2c28343
3 changed files with 12 additions and 6 deletions

View File

@ -21,6 +21,9 @@ public class UserConstants
/** 用户封禁状态 */
public static final String USER_DISABLE = "1";
/** 角色正常状态 */
public static final String ROLE_NORMAL = "0";
/** 角色封禁状态 */
public static final String ROLE_DISABLE = "1";