| | |
| | | * @return 提现详情 |
| | | */ |
| | | @GetMapping(value = "/withdraw/withdrawRecordDetail") |
| | | R<Withdraw> withdrawRecordDetail(@RequestParam("id") Integer id); |
| | | R<Withdraw> withdrawRecordDetail(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 用户提现记录导出 |
| | |
| | | * @return 提现结果 |
| | | */ |
| | | @GetMapping(value = "/withdraw/withdrawExamine") |
| | | R<Boolean> withdrawExamine(@RequestParam("id") Integer id, @RequestParam("state") Integer state, |
| | | R<Boolean> withdrawExamine(@RequestParam("id") Long id, @RequestParam("state") Integer state, |
| | | @RequestParam(value = "opinion", required = false) String opinion, |
| | | @RequestParam(value = "openId") String openId, |
| | | @RequestParam(value = "userId") Integer userId); |