| | |
| | | @PostMapping("/page") |
| | | @ApiOperation(value = "提现申请列表", tags = {"后台"}) |
| | | public R<IPage<WithdrawalRequests>> page(@RequestBody WithQuery withQuery){ |
| | | return R.ok(withdrawalRequestsService.pageList(withQuery)); |
| | | IPage<WithdrawalRequests> withdrawalRequestsIPage = withdrawalRequestsService.pageList(withQuery); |
| | | for (WithdrawalRequests record : withdrawalRequestsIPage.getRecords()) { |
| | | record.setIdStr(record.getId().toString()); |
| | | } |
| | | return R.ok(withdrawalRequestsIPage); |
| | | } |
| | | @PostMapping("/auth") |
| | | @ApiOperation(value = "提现申请审批", tags = {"后台"}) |