Helius
2020-12-30 6794d55dfc524bf534f0669e046d27d03dc4bc33
zq-erp/src/main/java/com/matrix/system/app/action/ApiKnowledgeAction.java
@@ -1,6 +1,11 @@
package com.matrix.system.app.action;
import com.matrix.core.pojo.AjaxResult;
import com.matrix.system.hive.service.ArticleTypeService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -13,4 +18,13 @@
@RequestMapping(value = "/api/know")
public class ApiKnowledgeAction {
    @Autowired
    private ArticleTypeService articleTypeService;
    @ApiOperation(value = "获取知识库分类", notes = "获取知识库分类")
    @GetMapping(value = "/findKnowledgeType")
    public AjaxResult findKnowledgeType() {
        return null;
    }
}