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
33
34
35
36
37
38
package com.ard.gb28181.mapper;
 
import com.ard.gb28181.domain.GbChannel;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
/**
 * 国标通道Mapper接口
 *
 * @author 刘苏义
 * @date 2026-05-30
 */
@Mapper
@Repository
public interface GbChannelMapper {
 
    GbChannel selectGbChannelById(Long id);
 
    List<GbChannel> selectGbChannelByGbDeviceId(String gbDeviceId);
 
    GbChannel selectByGbDeviceIdAndGbChannelId(@Param("gbDeviceId") String gbDeviceId,
                                                @Param("gbChannelId") 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);
}