|
@@ -156,8 +156,8 @@ public class PaymentController {
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Project)
|
|
|
@RequestMapping(value = "account/withdrawals/list", method = RequestMethod.POST)
|
|
|
- public ResultContent withdrawalsList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
|
|
|
- return paymentServer.withdrawalsList(withdrawRequestModel);
|
|
|
+ public ResultContent withdrawalsOrderList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
|
|
|
+ return paymentServer.withdrawalsOrderList(withdrawRequestModel);
|
|
|
}
|
|
|
|
|
|
@ApiOperation("平台_提现订单列表")
|
|
@@ -166,6 +166,13 @@ public class PaymentController {
|
|
|
public ResultContent withdrawalsPlatformList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
|
|
|
return paymentServer.withdrawalsPlatformList(withdrawRequestModel);
|
|
|
}
|
|
|
+ @ApiOperation("已提现订单列表")
|
|
|
+ @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
+ @ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
+ @RequestMapping(value = "account/withdrawalsList", method = RequestMethod.POST)
|
|
|
+ public ResultContent withdrawalsList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
|
|
|
+ return paymentServer.withdrawalsList(withdrawRequestModel);
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation("审核提现")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|