| | |
| | | } |
| | | return withdrawClient.withdrawDetailByUser(orderId); |
| | | } |
| | | @GetMapping("/confirmMoney") |
| | | @ApiOperation(value = "确认收款", tags = {"用户端-个人中心-提现"}) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "提现记录id", name = "id", dataType = "String", required = true) |
| | | |
| | | }) |
| | | public R<String> confirmMoney(@RequestParam("id") String id) { |
| | | return withdrawClient.confirmMoney(id); |
| | | |
| | | } |
| | | |
| | | @GetMapping("/confirmWithdraw") |
| | | @ApiOperation(value = "确认提现", tags = {"用户端-个人中心-提现"}) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "订单id", name = "orderId", dataType = "Integer", required = true) |
| | | }) |
| | | |
| | | public synchronized R<Boolean> confirmWithdraw(@RequestParam String orderId) { |
| | | LoginUserInfo loginUser = tokenService.getLoginUserByUser(); |
| | | if (null == loginUser) { |