From 9af4d5f9b1313ad69bc5b98179b851b083a337e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B2=E8=BE=B0=E7=94=9F=E4=BA=A7?= Date: Thu, 2 Apr 2026 10:35:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=94=A8=E6=88=B7=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E8=BF=94=E5=9B=9E=E7=BC=BA=E5=B0=91id=E5=92=8Cusernam?= =?UTF-8?q?e=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/routers/users.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/app/routers/users.py b/backend/app/routers/users.py index b0c9a00..22b9236 100644 --- a/backend/app/routers/users.py +++ b/backend/app/routers/users.py @@ -17,6 +17,8 @@ def get_current_user_info( ): """获取当前登录用户信息""" return { + "id": current_user.f99_90_id, + "username": current_user.f01_01_name, "f99_90_id": current_user.f99_90_id, "f01_01_name": current_user.f01_01_name, "email": current_user.email,