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

This commit is contained in:
RuoYi
2024-09-21 11:28:52 +08:00
parent 22a795d041
commit 5fad997d38
3 changed files with 15 additions and 7 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";