From 7038573a41fe8b72049775be4f526b916c9658d3 Mon Sep 17 00:00:00 2001 From: liangzai <2440983361@qq.com> Date: Wed, 24 Dec 2025 00:24:47 +0800 Subject: [PATCH] fix --- app/main/api/internal/logic/agent/agentwithdrawallogic.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/main/api/internal/logic/agent/agentwithdrawallogic.go b/app/main/api/internal/logic/agent/agentwithdrawallogic.go index c9b94f6..83020cf 100644 --- a/app/main/api/internal/logic/agent/agentwithdrawallogic.go +++ b/app/main/api/internal/logic/agent/agentwithdrawallogic.go @@ -2,13 +2,13 @@ package agent import ( "context" + "database/sql" + "fmt" + "time" "tydata-server/app/main/model" "tydata-server/common/ctxdata" "tydata-server/common/xerr" "tydata-server/pkg/lzkit/lzUtils" - "database/sql" - "fmt" - "time" "github.com/cenkalti/backoff/v4" "github.com/pkg/errors" @@ -147,7 +147,7 @@ func (l *AgentWithdrawalLogic) AgentWithdrawal(req *types.WithdrawalReq) (*types } // 同步调用支付宝转账 - transferResp, err := l.svcCtx.AlipayService.AliTransfer(l.ctx, req.PayeeAccount, req.PayeeName, finalWithdrawAmount, "代理提现", outBizNo) + transferResp, err := l.svcCtx.AlipayService.AliTransfer(l.ctx, req.PayeeAccount, req.PayeeName, finalWithdrawAmount, "公司提现", outBizNo) if err != nil { l.Logger.Errorf("【支付宝转账失败】outBizNo:%s error:%v", outBizNo, err) l.handleTransferError(outBizNo, err, "支付宝接口调用失败")