jerry 2 周之前
父节点
当前提交
42b9611301
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/api/router.py

+ 1 - 1
app/api/router.py

@@ -628,7 +628,7 @@ async def account_remove(
     await AccountService.remove_account(db, account_id)
     await AccountService.remove_account(db, account_id)
     return success()
     return success()
 
 
-@admin_required_router.put("/account/update", summary="更新账号", tags=["账号管理"], response_model=ApiResponse[ProxyOut])
+@admin_required_router.put("/account/update", summary="更新账号", tags=["账号管理"], response_model=ApiResponse[AccountOut])
 async def account_update(
 async def account_update(
     account_id: int,
     account_id: int,
     payload: AccountUpdate,
     payload: AccountUpdate,