net.guerlab.smart.article.web.controller.commons.ArticleController Maven / Gradle / Ivy
package net.guerlab.smart.article.web.controller.commons;
import io.swagger.annotations.Api;
import net.guerlab.smart.article.service.entity.Article;
import net.guerlab.smart.article.service.service.ArticleService;
import net.guerlab.smart.article.web.controller.AbstractArticleController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 文章
*
* @author guer
*/
@Api(tags = "文章")
@RestController("/commons/article")
@RequestMapping("/commons/article")
public class ArticleController extends AbstractArticleController {}