Commit 4c214cc6 authored by xianyang's avatar xianyang

优化账户第四层查询

parent 50faa3ed
......@@ -124,13 +124,13 @@ def finance_fourth_info(page: int,
guild_id: Optional[str] = "", # 针对公会账户,没有uuid,传公会id过来,再查uuid。
time: Optional[str] = "",
type: Optional[int] = None,
reference_type: Optional[str] = "",
gift_type: Optional[str] = "",
unique_tag: Optional[str] = "",
token=Depends(login_required)):
"""账户财务明细 第四层"""
if not all([time, unique_tag]):
return HttpResultResponse(code=500, msg="缺少必传参数")
res, total, count = SpecificAccountQuery(page, size, uuid, time, type, reference_type, unique_tag,
res, total, count = SpecificAccountQuery(page, size, uuid, time, type, gift_type, unique_tag,
guild_id).business_logic()
return HttpResultResponse(total=total, data=res, count=count)
......
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