liusuyi
2026-06-01 3496700a5ba18be8ca0590a79e21a867782d1ea9
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
package com.ard.gb28181.service;
 
import com.ard.gb28181.domain.GbChannel;
 
import java.util.List;
 
/**
 * 国标通道Service接口
 *
 * @author 刘苏义
 * @date 2026-05-30
 */
public interface IGbChannelService {
 
    GbChannel selectGbChannelById(Long id);
 
    List<GbChannel> selectGbChannelByGbDeviceId(String gbDeviceId);
 
    GbChannel selectByGbDeviceIdAndGbChannelId(String gbDeviceId, String gbChannelId);
 
    List<GbChannel> selectGbChannelList(GbChannel gbChannel);
 
    int insertGbChannel(GbChannel gbChannel);
 
    int updateGbChannel(GbChannel gbChannel);
 
    int updateGbChannelStream(GbChannel gbChannel);
 
    int deleteGbChannelById(Long id);
 
    int deleteGbChannelByIds(String[] ids);
}