| | |
| | | @RequestParam(value = "applyForTime", required = false) String applyForTime, |
| | | @RequestParam(value = "state", required = false) Integer state, |
| | | @RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum, |
| | | @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize); |
| | | @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, |
| | | @RequestParam(name = "userIds") List<Integer> userIds); |
| | | |
| | | @GetMapping(value = "/withdraw/withdrawPage1") |
| | | R<Page<UserWithdrawRecordVO>> withdrawPage1(@RequestParam(value = "cityList", required = false)List<String> cityList,@RequestParam(value = "nickname", required = false) String nickname, |
| | | @RequestParam(value = "userPhone", required = false) String userPhone, |
| | | @RequestParam(value = "applyForTime", required = false) String applyForTime, |
| | | @RequestParam(value = "state", required = false) Integer state, |
| | | @RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum, |
| | | @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, |
| | | @RequestParam(name = "userIds") List<Integer> userIds, |
| | | @RequestParam("siteIds") List<String> siteIds); |
| | | |
| | | /** |
| | | * 查看提现记录详情 |
| | |
| | | * @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); |
| | |
| | | @RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum, |
| | | @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize); |
| | | |
| | | @GetMapping(value = "/withdraw/withdrawList1") |
| | | R<Page<UserWithdrawRecordVO>> withdrawList1(@RequestParam("cityList") List<String> cityList, |
| | | @RequestParam("userId") Integer userId, |
| | | @RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum, |
| | | @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, |
| | | @RequestParam("siteIds") List<String> siteIds); |
| | | |
| | | |
| | | /** |
| | | * 根据订单获取用户提现申请记录 |
| | | * |