|
@@ -149,10 +149,10 @@ public class PaymentController {
|
|
return paymentServer.withdrawalsList(withdrawRequestModel);
|
|
return paymentServer.withdrawalsList(withdrawRequestModel);
|
|
}
|
|
}
|
|
|
|
|
|
- @ApiOperation("店铺_提现订单列表")
|
|
|
|
|
|
+ @ApiOperation("平台_提现订单列表")
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
@RequestMapping(value = "account/withdrawals/platform/list", method = RequestMethod.POST)
|
|
@RequestMapping(value = "account/withdrawals/platform/list", method = RequestMethod.POST)
|
|
- public ResultContent withdrawalsPlatformList(@RequestBody WithdrawRequestModel withdrawRequestModel) {
|
|
|
|
|
|
+ public ResultContent withdrawalsPlatformList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
|
|
return paymentServer.withdrawalsPlatformList(withdrawRequestModel);
|
|
return paymentServer.withdrawalsPlatformList(withdrawRequestModel);
|
|
}
|
|
}
|
|
|
|
|