update 统一框架所有主键id均使用雪花id

This commit is contained in:
疯狂的狮子Li
2026-04-08 15:35:32 +08:00
parent 0ef78b92d7
commit 1c35ad55af
26 changed files with 1436 additions and 1459 deletions

View File

@@ -186,7 +186,7 @@ public class LoginHelper {
* @return 结果
*/
public static boolean isSuperAdmin(Long userId) {
return SystemConstants.SUPER_ADMIN_ID.equals(userId);
return SystemConstants.SUPER_ADMIN_USER_ID.equals(userId);
}
/**