|
|
|
@ -23,6 +23,14 @@ public class WithdrawAuditUserQueryController { |
|
|
|
@Resource |
|
|
|
private WithdrawAuditQueryService withdrawAuditQueryService; |
|
|
|
|
|
|
|
@GetMapping("page/withdraw-audit/by/operator") |
|
|
|
@ApiOperation("运营获取提现审核记录") |
|
|
|
public QnPage<UserPageWithdrawAuditVo> userPageWithdrawAuditByOperator(@RequestParam("userId") Long userId, |
|
|
|
PageUtil pageUtil, |
|
|
|
UserPageWithdrawAuditQueryParams queryParams) { |
|
|
|
return PageUtil.convert(withdrawAuditQueryService.pageWithdrawAudit(queryParams, pageUtil), UserPageWithdrawAuditVo.class); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("page/withdraw-audit") |
|
|
|
@ApiOperation("用户获取提现审核记录") |
|
|
|
public QnPage<UserPageWithdrawAuditVo> userPageWithdrawAudit(@RequestParam("userId") Long userId, |
|
|
|
|