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