| | |
| | | * @author ard |
| | | * @date 2023-08-19 |
| | | */ |
| | | public interface IArdChannelService |
| | | { |
| | | public interface IArdChannelService { |
| | | /** |
| | | * 查询通道管理 |
| | | * |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteArdChannelById(String id); |
| | | |
| | | /** |
| | | * 删除通道管理信息 |
| | | * |
| | |
| | | public int deleteArdChannelByDeviceId(String deviceId); |
| | | |
| | | /** |
| | | * 清空通道 |
| | | * |
| | | * @author 刘苏义 |
| | | * @date 2024/8/10 11:18 |
| | | */ |
| | | public int clearArdChannel(); |
| | | |
| | | /** |
| | | * @return |
| | | * @Author 刘苏义 |
| | | * @Description 同步通道信息 |
| | | * @Date 2024/7/10 13:20 |
| | | * @Param |
| | | * @return |
| | | */ |
| | | public void asyncChannel(ArdCameras ardCameras, List<ArdChannel> oldArrayList, List<ArdChannel> newArrayList); |
| | | } |