From 1b3ae71c3a2b67a5b1de718db0ee1ebe902183a7 Mon Sep 17 00:00:00 2001 From: suzhuhong Date: Tue, 14 Apr 2026 20:16:15 +0800 Subject: [PATCH] feat:job --- .../store/service/impl/WithdrawApplicationServiceImpl.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/WithdrawApplicationServiceImpl.java b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/WithdrawApplicationServiceImpl.java index e5734e1f7..f8b27fb4f 100644 --- a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/WithdrawApplicationServiceImpl.java +++ b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/WithdrawApplicationServiceImpl.java @@ -113,11 +113,7 @@ public class WithdrawApplicationServiceImpl implements WithdrawApplicationServic request.setAmount(withdrawApplicationDO.getAmount().toPlainString()); request.setReqNo(withdrawApplicationDO.getWithdrawNo()); request.setWalletType(WalletTypeEnum.ONLINE_BANK.getType()); - //AccountWithdrawerDTO accountWithdrawerDTO = walletApiService.accountWithdrawer(request); - AccountWithdrawerDTO accountWithdrawerDTO = new AccountWithdrawerDTO(); - accountWithdrawerDTO.setTradeId(11222L); - accountWithdrawerDTO.setAmount("100"); - accountWithdrawerDTO.setTradeStatus(1); + AccountWithdrawerDTO accountWithdrawerDTO = walletApiService.accountWithdrawer(request); withdrawApplicationDO.setStatus(accountWithdrawerDTO.getTradeStatus()); withdrawApplicationDAO.update(withdrawApplicationDO);