|
|
@@ -0,0 +1,38 @@
|
|
|
+package com.template.api;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.template.model.pojo.SmartAuthorGroup;
|
|
|
+import com.template.model.result.CommonResult;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.validation.BindingResult;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.text.ParseException;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author: binguo
|
|
|
+ * @Date: 2023/3/30 星期四 17:28
|
|
|
+ * @Description: com.video.api
|
|
|
+ * @Version: 1.0
|
|
|
+ */
|
|
|
+@RequestMapping("/api/smartAuthorGroup")
|
|
|
+@Api(tags = {"SmartAuthorGroupControllerAPI"}, value = "权限组")
|
|
|
+public interface SmartAuthorGroupControllerAPI {
|
|
|
+ @RequestMapping(value = "/insertSmartAuthorGroup")
|
|
|
+ @ApiOperation(value = "添加权限组", notes = "添加权限组数据", httpMethod = "POST")
|
|
|
+ CommonResult insertSmartAuthorGroup(@Validated @RequestBody JSONObject jsonObject, Integer samePower) throws ParseException;
|
|
|
+
|
|
|
+ @RequestMapping(value = "/updateSmartAuthorGroupById")
|
|
|
+ @ApiOperation(value = "编辑权限组数据", notes = "编辑权限组数据", httpMethod = "POST")
|
|
|
+ CommonResult updateSmartAuthorGroupById(@Validated @RequestBody JSONObject jsonObject, Integer samePower) throws ParseException;
|
|
|
+
|
|
|
+ @RequestMapping(value = "/queryPageSmartAuthorGroup")
|
|
|
+ @ApiOperation(value = "权限组分页数据", notes = "权限组分页数据", httpMethod = "GET")
|
|
|
+ CommonResult queryAuthorListGroupList(@RequestParam Integer authorGroupId);
|
|
|
+
|
|
|
+ @RequestMapping(value = "/deleteSmartAuthorGroupById")
|
|
|
+ @ApiOperation(value = "根据ID删除指定权限组", notes = "根据ID删除指定权限组", httpMethod = "GET")
|
|
|
+ CommonResult deleteSmartAuthorGroupById(@RequestParam int id);
|
|
|
+}
|