123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.manage.service;
- 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 int insertChannelNumber(ChannelNumber channelNumber);
- /**
- * 修改通道管理
- *
- * @param channelNumber 通道管理
- * @return 结果
- */
- public int updateChannelNumber(ChannelNumber channelNumber);
- /**
- * 批量删除通道管理
- *
- * @param channelIds 需要删除的通道管理主键集合
- * @return 结果
- */
- public int deleteChannelNumberByChannelIds(Long[] channelIds);
- /**
- * 删除通道管理信息
- *
- * @param channelId 通道管理主键
- * @return 结果
- */
- public int deleteChannelNumberByChannelId(Long channelId);
- }
|