| | |
| | | package com.ycl.platform.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.platform.domain.entity.TMonitor; |
| | | import com.ycl.platform.domain.vo.TMonitorVO; |
| | | |
| | |
| | | * @author ruoyi |
| | | * @date 2024-03-04 |
| | | */ |
| | | public interface ITMonitorService |
| | | public interface ITMonitorService extends IService<TMonitor> |
| | | { |
| | | /** |
| | | * 查询设备资产 |
| | |
| | | /** |
| | | * 获取指定摄像头功能类型下的视频数量。 |
| | | * |
| | | * @param cameraFunType 摄像头功能类型,用于筛选视频。 |
| | | * @param tMonitor 条件 |
| | | * @return 返回一个包含视频数量的Map对象,其中key为统计指标,value为对应功能类型下的统计数量。 |
| | | */ |
| | | Map<String, String> getVideoCount(String cameraFunType); |
| | | Map<String, String> getVideoCount(TMonitor tMonitor); |
| | | |
| | | Map<String, String> recoveryException(); |
| | | } |