소스 검색

更新文件 SmartAuthorGroupControllerAPI.java

陈士柏 2 년 전
부모
커밋
a7d39d7203
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/main/java/com/template/api/SmartAuthorGroupControllerAPI.java

+ 4 - 4
src/main/java/com/template/api/SmartAuthorGroupControllerAPI.java

@@ -24,13 +24,13 @@ public interface SmartAuthorGroupControllerAPI {
     @ApiOperation(value = "添加权限组", notes = "添加权限组数据", httpMethod = "POST")
     CommonResult insertSmartAuthorGroup(@Validated @RequestBody JSONObject jsonObject, Integer samePower) throws ParseException;
 
-    @RequestMapping(value = "/updateSmartAuthorGroupById")
+    @RequestMapping(value = "/updateSmartAuthorGroup")
     @ApiOperation(value = "编辑权限组数据", notes = "编辑权限组数据", httpMethod = "POST")
-    CommonResult updateSmartAuthorGroupById(@Validated @RequestBody JSONObject jsonObject, Integer samePower) throws ParseException;
+    CommonResult updateSmartAuthorGroup(@Validated @RequestBody JSONObject jsonObject, Integer samePower) throws ParseException;
 
-    @RequestMapping(value = "/queryPageSmartAuthorGroup")
+    @RequestMapping(value = "/querySmartAuthorGroup")
     @ApiOperation(value = "权限组分页数据", notes = "权限组分页数据", httpMethod = "GET")
-    CommonResult queryAuthorListGroupList(@RequestParam Integer authorGroupId);
+    CommonResult querySmartAuthorGroup(@RequestParam Integer authorGroupId);
 
     @RequestMapping(value = "/deleteSmartAuthorGroupById")
     @ApiOperation(value = "根据ID删除指定权限组", notes = "根据ID删除指定权限组", httpMethod = "GET")