| | |
| | | import com.yami.trading.common.util.StringUtils; |
| | | import com.yami.trading.dao.user.WithdrawMapper; |
| | | import com.yami.trading.service.*; |
| | | import com.yami.trading.service.notify.WalletTransactionMailNotificationService; |
| | | import com.yami.trading.service.syspara.SysparaService; |
| | | import com.yami.trading.service.system.LogService; |
| | | import com.yami.trading.service.system.TipService; |
| | |
| | | WalletLogService walletLogService; |
| | | @Autowired |
| | | LogService logService; |
| | | @Autowired |
| | | private WalletTransactionMailNotificationService walletTransactionMailNotificationService; |
| | | |
| | | @Override |
| | | public Page listRecord(Page page, String status, String roleName, |
| | |
| | | log.setLog("通过提现申请。订单号[" + withdraw.getOrderNo() + "]。"); |
| | | logService.save(log); |
| | | tipService.deleteTip(withdraw.getUuid().toString()); |
| | | String asset = symbol.toUpperCase(); |
| | | walletTransactionMailNotificationService.sendWithdrawSuccess( |
| | | user, |
| | | withdraw.getOrderNo(), |
| | | withdraw.getAmount(), |
| | | withdraw.getAmountFee(), |
| | | asset); |
| | | } |
| | | } |
| | | |