12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.ruoyi.manage.service;
- import com.ruoyi.common.core.domain.AjaxResult;
- import com.ruoyi.manage.domain.ChannelNumber;
- import java.util.List;
- /**
- * 通道管理Service接口
- *
- * @author boman
- * @date 2025-05-07
- */
- public interface IChannelNumberService
- {
- /**
- * 查询通道管理
- *
- * @param channelId 通道管理主键
- * @return 通道管理
- */
- public ChannelNumber selectChannelNumberByChannelId(Long channelId);
- /**
- * 查询通道管理列表
- *
- * @param channelNumber 通道管理
- * @return 通道管理集合
- */
- public List<ChannelNumber> selectChannelNumberList(ChannelNumber channelNumber);
- /**
- * 新增通道管理
- *
- * @param channelNumber 通道管理
- * @return 结果
- */
- public AjaxResult insertChannelNumber(ChannelNumber channelNumber);
- /**
- * 修改通道管理
- *
- * @param channelNumber 通道管理
- * @return 结果
- */
- public AjaxResult updateChannelNumber(ChannelNumber channelNumber);
- /**
- * 批量删除通道管理
- *
- * @param channelIds 需要删除的通道管理主键集合
- * @return 结果
- */
- public int deleteChannelNumberByChannelIds(Long[] channelIds);
- /**
- * 删除通道管理信息
- *
- * @param channelId 通道管理主键
- * @return 结果
- */
- public int deleteChannelNumberByChannelId(Long channelId);
- }
|