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

This commit is contained in:
RuoYi
2024-09-21 10:58:42 +08:00
parent 9b68013b2a
commit c0ce3fd7c2
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";