CpsGlbMsgMapper.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.CpsGlbMsg;
  4. /**
  5. * cps_glb_msg 全局消息Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2024-08-14
  9. */
  10. public interface CpsGlbMsgMapper
  11. {
  12. /**
  13. * 查询cps_glb_msg 全局消息
  14. *
  15. * @param id cps_glb_msg 全局消息主键
  16. * @return cps_glb_msg 全局消息
  17. */
  18. public CpsGlbMsg selectCpsGlbMsgById(Long id);
  19. /**
  20. * 查询cps_glb_msg 全局消息列表
  21. *
  22. * @param cpsGlbMsg cps_glb_msg 全局消息
  23. * @return cps_glb_msg 全局消息集合
  24. */
  25. public List<CpsGlbMsg> selectCpsGlbMsgList(CpsGlbMsg cpsGlbMsg);
  26. /**
  27. * 新增cps_glb_msg 全局消息
  28. *
  29. * @param cpsGlbMsg cps_glb_msg 全局消息
  30. * @return 结果
  31. */
  32. public int insertCpsGlbMsg(CpsGlbMsg cpsGlbMsg);
  33. /**
  34. * 修改cps_glb_msg 全局消息
  35. *
  36. * @param cpsGlbMsg cps_glb_msg 全局消息
  37. * @return 结果
  38. */
  39. public int updateCpsGlbMsg(CpsGlbMsg cpsGlbMsg);
  40. /**
  41. * 删除cps_glb_msg 全局消息
  42. *
  43. * @param id cps_glb_msg 全局消息主键
  44. * @return 结果
  45. */
  46. public int deleteCpsGlbMsgById(Long id);
  47. /**
  48. * 批量删除cps_glb_msg 全局消息
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteCpsGlbMsgByIds(Long[] ids);
  54. }