Commit 69606dbe authored by xianyang's avatar xianyang

优化tcp清算

parent 16086a70
......@@ -55,7 +55,7 @@ def user_withdrawal_list(request:Request,db: Session = Depends(get_db),page: Opt
@router.get("/guildWithdrawal/list")
def guild_withdrawal_list(request:Request,db: Session = Depends(get_db),page: Optional[int] = 1, size: Optional[int] = 10,guild_id:Optional[int]='',status:Optional[int]='',start_time:Optional[str]='',end_time:Optional[str]="", month_type:Optional[int]="",menu_id:Optional[list]="",token=Depends(login_required)):
"""公会提现列表 暂无"""
query_params=request.query_params
query_params = request.query_params
menu_id=query_params.getlist("menu_id[]")
total,statement_list,money,reality_moeny= WithdrawStatement().get_guild_withdraw_cash(db,page,size,guild_id,status,start_time,end_time,month_type,menu_id)
return HttpResultResponse(total=total, count=float(money), data=statement_list,reality_moeny=reality_moeny)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment