类 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.Result
    delByIds(Long[] ids)
     
    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)
     
    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)
     

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 构造器详细资料

    • 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

      @PostMapping("/delByIds") public plus.hiver.common.api.Result delByIds(@RequestParam Long[] ids)