ソースを参照

更新文件 SmartAuthorGroupControllerAPI.java

陈士柏 2 年 前
コミット
70c4da1cd1

+ 24 - 0
src/main/java/com/template/api/SmartAuthorGroupControllerAPI.java

@@ -29,6 +29,30 @@ public interface SmartAuthorGroupControllerAPI {
     @ApiOperation(value = "编辑权限组数据", notes = "编辑权限组数据", httpMethod = "POST")
     CommonResult updateSmartAuthorGroup(@Validated @RequestBody JSONObject jsonObject, Integer samePower) throws ParseException;
 
+    @RequestMapping(value = "/addSmartAuthorGroup")
+    @ApiOperation(value = "添加权限组", notes = "添加权限组数据", httpMethod = "POST")
+    public CommonResult addSmartAuthorGroup(@Validated @RequestBody JSONObject jsonObject) throws ParseException;
+
+    @RequestMapping(value = "/delSmartAuthorGroup")
+    @ApiOperation(value = "删除权限组", notes = "删除权限组数据", httpMethod = "POST")
+    public CommonResult delSmartAuthorGroup(Integer id);
+
+    @RequestMapping(value = "/operateSmartAuthorGroupUser")
+    @ApiOperation(value = "操作管理员", notes = "操作管理员", httpMethod = "POST")
+    public CommonResult operateSmartAuthorGroupUser(Integer id, String userId) throws ParseException;
+
+    @RequestMapping(value = "/operateSmartAuthorGroupApply")
+    @ApiOperation(value = "操作管理员", notes = "操作管理员", httpMethod = "POST")
+    public CommonResult operateSmartAuthorGroupApply(Integer id, String applyId);
+
+    @RequestMapping(value = "/getSmartAuthorGroupManager")
+    @ApiOperation(value = "查看管理组编辑数据", notes = "查看管理组编辑数据", httpMethod = "POST")
+    public CommonResult getSmartAuthorGroupManager(String groupId);
+
+    @RequestMapping(value = "/operateSmartAuthorDepartment")
+    @ApiOperation(value = "修改权限组权限", notes = "修改权限组权限", httpMethod = "POST")
+    public CommonResult operateSmartAuthorDepartment(@Validated @RequestBody JSONObject jsonObject);
+
     @RequestMapping(value = "/queryUserAuthor")
     @ApiOperation(value = "查看用户个人权限", notes = "编辑权限组数据", httpMethod = "POST")
     public CommonResult queryUserAuthor(@RequestParam String userId);