package com.nuvole.four.service;
|
|
import com.nuvole.four.domain.ChannelInfo;
|
import com.nuvole.four.domain.dto.ChannelInfoDto;
|
|
import java.util.List;
|
|
/**
|
* @Desc: 通道信息Service
|
* @Author: dqh
|
* @Date: 2024-04-09
|
**/
|
public interface ChannelInfoService extends BaseService<ChannelInfo>{
|
|
Integer saveChannelInfo(ChannelInfo channelInfo);
|
|
Integer updateChannelInfo(ChannelInfo channelInfo);
|
|
ChannelInfo getChannelInfo(Long id);
|
|
/**
|
* 功能描述 根据code查询通道
|
* @param channelCode
|
com.nuvole.four.domain.ChannelInfo
|
**/
|
ChannelInfo getDetailByCode(String channelCode);
|
|
/**
|
* 方法描述: 分页查询通道列表
|
*
|
* @date 2024-04-13 16:20
|
**/
|
List<ChannelInfoDto> getPageList(ChannelInfo channelInfo);
|
|
|
}
|