Browse Source

feat : 推广媒体版位接口修改

bilingfeng 2 years ago
parent
commit
2422cea5bc

+ 4 - 4
game-module/game-manage/src/main/java/com/zanxiang/manage/controller/PromoSiteController.java

@@ -28,7 +28,7 @@ public class PromoSiteController {
     @Autowired
     private PromoSiteService promoSiteService;
 
-    @ApiOperation(value = "查询推广媒体列表")
+    @ApiOperation(value = "查询推广媒体版位列表")
     @PostMapping(value = "/list")
     @PreAuthorize(permissionKey = "manage:promoSite:list")
     @ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = PromoSiteListVO.class)})
@@ -36,7 +36,7 @@ public class PromoSiteController {
         return ResultVO.ok(promoSiteService.list(param));
     }
 
-    @ApiOperation(value = "推广媒体添加或修改")
+    @ApiOperation(value = "推广媒体版位添加或修改")
     @PostMapping(value = "/add/or/update")
     @PreAuthorize(permissionKey = "manage:promoSite:addOrUpdate")
     @ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = Boolean.class)})
@@ -44,7 +44,7 @@ public class PromoSiteController {
         return ResultVO.ok(promoSiteService.addOrUpdate(param));
     }
 
-    @ApiOperation(value = "推广媒体删除")
+    @ApiOperation(value = "推广媒体版位删除")
     @DeleteMapping(value = "/delete/by/id")
     @PreAuthorize(permissionKey = "manage:promoSite:deleteById")
     @ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = Boolean.class)})
@@ -52,7 +52,7 @@ public class PromoSiteController {
         return ResultVO.ok(promoSiteService.deleteById(id));
     }
 
-    @ApiOperation(value = "推广媒体状态变更")
+    @ApiOperation(value = "推广媒体版位状态变更")
     @PatchMapping(value = "/status/update")
     @PreAuthorize(permissionKey = "manage:promoSite:statusUpdate")
     @ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = Boolean.class)})