区分配置文件、修复通知报错问题

This commit is contained in:
gaoyutao
2026-03-30 17:59:06 +08:00
parent 011a93585c
commit 4839ea178b
9 changed files with 49 additions and 26 deletions
@@ -83,7 +83,7 @@ public class UserConstants
public static boolean isAdmin(Long userId)
{
return userId != null && 1L == userId;
return userId != null && (1L == userId || 6L == userId);
//TODO 权限控制
// return true;
}