xuekang
2024-05-13 15a0280ae9e7db96fdf0744c722d214d2cb5a0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
 
 
}