From 84b6c50aeb9b9343f0e62b5ef84995963ebcd70c Mon Sep 17 00:00:00 2001 From: aaron <> Date: Sat, 8 Feb 2025 00:23:47 +0900 Subject: [PATCH] 1 --- app/api/endpoints/point.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/endpoints/point.py b/app/api/endpoints/point.py index 948ff02..f181154 100644 --- a/app/api/endpoints/point.py +++ b/app/api/endpoints/point.py @@ -48,7 +48,7 @@ async def get_point_records( db: Session = Depends(get_db), current_user: UserDB = Depends(get_current_user) ): - """获取积分明细""" + """积分明细""" # 获取总记录数 total = db.query(PointRecordDB).filter( PointRecordDB.user_id == current_user.userid