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);
|
}
|