|
@@ -162,6 +162,7 @@ public class PaymentController {
|
|
|
return paymentServer.withdrawalsPlatformApplication(code);
|
|
|
}
|
|
|
|
|
|
+ @Code
|
|
|
@ApiOperation("店铺_提现订单列表")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
@@ -171,14 +172,15 @@ public class PaymentController {
|
|
|
return paymentServer.withdrawalsOrderList(withdrawRequestModel);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("平台_提现订单列表")
|
|
|
@Code
|
|
|
+ @ApiOperation("平台_提现订单列表")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
@RequestMapping(value = "account/withdrawals/platform/list", method = RequestMethod.POST)
|
|
|
public ResultContent withdrawalsPlatformList(@RequestBody @Valid WithdrawRequestModel withdrawRequestModel) {
|
|
|
return paymentServer.withdrawalsPlatformList(withdrawRequestModel);
|
|
|
}
|
|
|
|
|
|
+ @Code
|
|
|
@ApiOperation("店铺已提现订单列表")
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Project)
|