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;
|
|
/**
|
* @author wzy
|
* @date 2020-12-27
|
**/
|
@Api(value = "ApiKnowledgeAction", tags = "知识库接口类")
|
@RestController
|
@RequestMapping(value = "/api/know")
|
public class ApiKnowledgeAction {
|
|
@Autowired
|
private ArticleTypeService articleTypeService;
|
|
@ApiOperation(value = "获取知识库分类", notes = "获取知识库分类")
|
@GetMapping(value = "/findKnowledgeType")
|
public AjaxResult findKnowledgeType() {
|
return null;
|
}
|
|
}
|