net.guerlab.smart.article.web.controller.user.SimpleArticleController Maven / Gradle / Ivy
package net.guerlab.smart.article.web.controller.user;
import io.swagger.annotations.Api;
import net.guerlab.smart.article.service.entity.SimpleArticle;
import net.guerlab.smart.article.service.service.SimpleArticleService;
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("/user/simpleArticle")
@RequestMapping("/user/simpleArticle")
public class SimpleArticleController extends AbstractArticleController {
}