龚焕茏
2024-08-01 a56cbc8a929232b039f137fc51b5af27f40b2822
ycl-server/src/main/java/com/ycl/platform/service/ITMonitorService.java
@@ -1,5 +1,6 @@
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;
@@ -12,7 +13,7 @@
 * @author ruoyi
 * @date 2024-03-04
 */
public interface ITMonitorService
public interface ITMonitorService extends IService<TMonitor>
{
    /**
     * 查询设备资产
@@ -65,10 +66,10 @@
    /**
     * 获取指定摄像头功能类型下的视频数量。
     *
     * @param cameraFunType 摄像头功能类型,用于筛选视频。
     * @param tMonitor 条件
     * @return 返回一个包含视频数量的Map对象,其中key为统计指标,value为对应功能类型下的统计数量。
     */
    Map<String, String> getVideoCount(String cameraFunType);
    Map<String, String> getVideoCount(TMonitor tMonitor);
    Map<String, String> recoveryException();
}