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

This commit is contained in:
疯狂的狮子Li
2026-04-08 14:55:14 +08:00
parent a74eb4046f
commit cb7ce69bc0
27 changed files with 1721 additions and 1711 deletions

View File

@@ -205,7 +205,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);
}
/**