|
@@ -126,6 +126,14 @@ public class PaymentController {
|
|
|
public ResultContent withdrawals() {
|
|
|
return paymentServer.withdrawals();
|
|
|
}
|
|
|
+ @ApiOperation("提现订单列表")
|
|
|
+ @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
+ @ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
+ @ResourceAuth(value = "admin", type = AuthType.Project)
|
|
|
+ @RequestMapping(value = "account/withdrawals/list", method = RequestMethod.GET)
|
|
|
+ public ResultContent withdrawalsList() {
|
|
|
+ return paymentServer.withdrawalsList();
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|