修改:

1.修改用户登录 Token 相关错误统一为 40400
This commit is contained in:
2025-06-25 14:20:32 +08:00
parent d5835776be
commit aada30a000
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ public class GlobalExceptionHandler {
}
// 返回给前端
return ResultUtils.error(ErrorCode.SYSTEM_ERROR.getCode(),message);
return ResultUtils.error(ErrorCode.TOKEN_INVALID.getCode(),message);
}
}