net.guerlab.smart.article.web.controller.user.SimpleArticleController Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018-2021 guerlab.net and other contributors.
*
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.guerlab.smart.article.web.controller.user;
import io.swagger.v3.oas.annotations.tags.Tag;
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
*/
@Tag(name = "简单文章")
@RestController("/user/simpleArticle")
@RequestMapping("/user/simpleArticle")
public class SimpleArticleController extends AbstractArticleController {
}