|
@@ -1,5 +1,6 @@
|
|
|
package com.zanxiang.game.module.manage.controller;
|
|
|
|
|
|
+import com.zanxiang.erp.security.annotation.PreAuthorize;
|
|
|
import com.zanxiang.game.module.manage.pojo.vo.VipLevelChoiceVO;
|
|
|
import com.zanxiang.game.module.manage.service.IAppletCheckService;
|
|
|
import com.zanxiang.module.util.pojo.ResultVO;
|
|
@@ -29,6 +30,7 @@ public class TestController {
|
|
|
|
|
|
@ApiOperation(value = "小程序监测测试接口")
|
|
|
@GetMapping(value = "/check/app")
|
|
|
+ @PreAuthorize(permissionKey = "manage:cp:checkApp")
|
|
|
@ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = VipLevelChoiceVO.class, responseContainer = "list")})
|
|
|
public ResultVO<Void> vipLevelChoiceList() {
|
|
|
appletCheckService.payApplicationCheck();
|