| | |
| | | if(DappFundFlowEntity.WITHDRAW_STATUS_AGREE == dappFundFlowEntity.getStatus()){ |
| | | return new FebsResponse().fail().message("已转账,无法再次操作"); |
| | | } |
| | | chainProducer.sendBnbTransferMsg(id); |
| | | // chainProducer.sendBnbTransferMsg(id); |
| | | return new FebsResponse().success().message("操作成功,请稍后查看"); |
| | | } |
| | | |
| | | @GetMapping(value = "/withdrawAgree/{id}") |
| | | public FebsResponse withdrawAgree(@PathVariable("id") Long id) { |
| | | return dappWalletService.withdrawAgree(id); |
| | | } |
| | | |
| | | @GetMapping(value = "/withdrawDisAgree/{id}") |
| | | public FebsResponse withdrawDisAgree(@PathVariable("id") Long id) { |
| | | return dappWalletService.withdrawDisAgree(id); |
| | | } |
| | | } |