From 9e3c6fa190b1c59b2178ae1823c994684a4d9df3 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期四, 24 十月 2024 14:20:03 +0800 Subject: [PATCH] fix:结算 --- src/main/java/com/mzl/flower/service/impl/wallet/WalletWithdrawRecordServiceImpl.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/mzl/flower/service/impl/wallet/WalletWithdrawRecordServiceImpl.java b/src/main/java/com/mzl/flower/service/impl/wallet/WalletWithdrawRecordServiceImpl.java index 35abe09..3292bd0 100644 --- a/src/main/java/com/mzl/flower/service/impl/wallet/WalletWithdrawRecordServiceImpl.java +++ b/src/main/java/com/mzl/flower/service/impl/wallet/WalletWithdrawRecordServiceImpl.java @@ -241,9 +241,10 @@ paymentV3Service.doBatchTransfer(transferReqDTO, SecurityUtils.getUserId()); } + //记录转账状态,定时任务定时获取状态并更新钱包交易记录表信息 + walletBillRecordDO.setTransferDetailId(Constants.TRANSFER_STATUS.ACCEPTED.name()); walletBillRecordMapper.insert(walletBillRecordDO); //不需要更新结算单了,此时提现的金额和计算单上的金额不一致 - } } public String format(LocalDateTime dateTime, String format) { -- Gitblit v1.9.3