|
@@ -116,6 +116,12 @@ public class PaymentController {
|
|
|
public ResultContent getDetail() {
|
|
|
return paymentServer.getDetail();
|
|
|
}
|
|
|
+ @ApiOperation("平台查询 额度信息")
|
|
|
+ @ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
+ @RequestMapping(value = "account/platformDetail", method = RequestMethod.GET)
|
|
|
+ public ResultContent platformDetail() {
|
|
|
+ return paymentServer.platformDetail();
|
|
|
+ }
|
|
|
|
|
|
|
|
|
@ApiOperation("提现")
|