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, "支付宝接口调用失败")