IChannelNumberService.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.ruoyi.manage.service;
  2. import com.ruoyi.common.core.domain.AjaxResult;
  3. import com.ruoyi.manage.domain.ChannelNumber;
  4. import java.util.List;
  5. /**
  6. * 通道管理Service接口
  7. *
  8. * @author boman
  9. * @date 2025-05-07
  10. */
  11. public interface IChannelNumberService
  12. {
  13. /**
  14. * 查询通道管理
  15. *
  16. * @param channelId 通道管理主键
  17. * @return 通道管理
  18. */
  19. public ChannelNumber selectChannelNumberByChannelId(Long channelId);
  20. /**
  21. * 查询通道管理列表
  22. *
  23. * @param channelNumber 通道管理
  24. * @return 通道管理集合
  25. */
  26. public List<ChannelNumber> selectChannelNumberList(ChannelNumber channelNumber);
  27. /**
  28. * 新增通道管理
  29. *
  30. * @param channelNumber 通道管理
  31. * @return 结果
  32. */
  33. public AjaxResult insertChannelNumber(ChannelNumber channelNumber);
  34. /**
  35. * 修改通道管理
  36. *
  37. * @param channelNumber 通道管理
  38. * @return 结果
  39. */
  40. public AjaxResult updateChannelNumber(ChannelNumber channelNumber);
  41. /**
  42. * 批量删除通道管理
  43. *
  44. * @param channelIds 需要删除的通道管理主键集合
  45. * @return 结果
  46. */
  47. public int deleteChannelNumberByChannelIds(Long[] channelIds);
  48. /**
  49. * 删除通道管理信息
  50. *
  51. * @param channelId 通道管理主键
  52. * @return 结果
  53. */
  54. public int deleteChannelNumberByChannelId(Long channelId);
  55. }