package com.ycl.platform.service;
|
|
import com.ycl.platform.domain.result.UY.*;
|
|
import java.util.List;
|
|
/**
|
* 优云故障检测
|
*
|
* @author:xp
|
* @date:2024/8/19 13:41
|
*/
|
public interface UYErrorTypeCheckService {
|
|
/**
|
* 图像检测
|
*/
|
void imageDetectionCheck(List<ImageDetectionResult> dataList);
|
|
/**
|
* 一机一档合格率、一机一档注册率
|
*/
|
void monitorQualifyCheck(List<MonitorQualifyResult> dataList);
|
|
/**
|
* 点位在线率
|
*/
|
void videoOnlineCheck(List<VideoOnlineResult> dataList);
|
|
/**
|
* 录像可用
|
*/
|
void recordMetaDSumCheck(List<RecordMetaDSumResult> dataList);
|
|
/**
|
* osd时间偏差
|
*
|
* @param dataList
|
*/
|
void osdCheck(List<PyOsdResult> dataList);
|
|
// /**
|
// * 视频标注
|
// */
|
// void osdMonitorCheck(List<OsdMonitorResult> dataList);
|
|
/**
|
* 海康
|
*/
|
}
|