Просмотр исходного кода

更新文件 SmartAuthorGroupControllerAPI.java

陈士柏 2 лет назад
Родитель
Сommit
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")