类 StopWordController
java.lang.Object
plus.hiver.module.system.controller.StopWordController
@RestController
@RequestMapping("/hiver/stopWord")
@Transactional
public class StopWordController
extends Object
禁用词管理控制器
尊重知识产权,CV 请保留版权,海文科技 https://hiver.cc 出品,不允许非法使用,后果自负
- 作者:
- Yazhi Li
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明plus.hiver.common.api.Resultplus.hiver.common.api.Result<org.springframework.data.domain.Page<plus.hiver.common.entity.StopWord>>getByCondition(plus.hiver.common.entity.StopWord stopWord, plus.hiver.common.vo.SearchVo searchVo, plus.hiver.common.vo.PageVo pageVo) plus.hiver.common.api.Result<plus.hiver.common.entity.StopWord>save(plus.hiver.common.entity.StopWord stopWord) plus.hiver.common.api.Result<plus.hiver.common.entity.StopWord>update(plus.hiver.common.entity.StopWord stopWord)
-
构造器详细资料
-
StopWordController
public StopWordController()
-
-
方法详细资料
-
getByCondition
@GetMapping("/getByCondition") public plus.hiver.common.api.Result<org.springframework.data.domain.Page<plus.hiver.common.entity.StopWord>> getByCondition(plus.hiver.common.entity.StopWord stopWord, plus.hiver.common.vo.SearchVo searchVo, plus.hiver.common.vo.PageVo pageVo) -
save
@PostMapping("/save") public plus.hiver.common.api.Result<plus.hiver.common.entity.StopWord> save(@RequestBody plus.hiver.common.entity.StopWord stopWord) -
update
@PostMapping("/edit") public plus.hiver.common.api.Result<plus.hiver.common.entity.StopWord> update(@RequestBody plus.hiver.common.entity.StopWord stopWord) -
delByIds
-