package com.ruoyi.article.controller.management;
|
|
|
import com.ruoyi.article.service.ISensitiveWordsService;
|
import io.swagger.annotations.Api;
|
import lombok.RequiredArgsConstructor;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <p>
|
* 敏感词管理 前端控制器
|
* </p>
|
*
|
* @author mitao
|
* @since 2024-05-16
|
*/
|
@RestController
|
@RequestMapping("/sensitive-words")
|
@RequiredArgsConstructor
|
@Api(value = "管理后台-敏感词管理相关接口", tags = "管理后台-敏感词管理相关接口")
|
public class MgtSensitiveWordsController {
|
|
private final ISensitiveWordsService sensitiveWordsService;
|
|
|
}
|