| | |
| | | package com.ycl.platform.service; |
| | | |
| | | import com.ycl.platform.domain.entity.DynamicColumn; |
| | | import com.ycl.platform.domain.form.UpdateDynamicValueForm; |
| | | import com.ycl.platform.domain.query.DataCenterQuery; |
| | | import com.ycl.platform.domain.result.HK.*; |
| | | import com.ycl.platform.domain.result.UY.MonitorQualifyResult; |
| | | import com.ycl.platform.domain.result.UY.OneMachineFileResult; |
| | | import com.ycl.platform.domain.result.UY.RecordMetaDSumResult; |
| | | import com.ycl.platform.domain.vo.DynamicColumnVO; |
| | | import com.ycl.system.Result; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | |
| | | import java.util.List; |
| | | import java.io.IOException; |
| | | |
| | | |
| | | /** |
| | | * 数据中心接口 |
| | |
| | | * @date:2024/8/1 16:42 |
| | | */ |
| | | public interface DataCenterService { |
| | | |
| | | void recordingAvailabilityExport(HttpServletResponse response,DataCenterQuery query) throws IOException; |
| | | |
| | | void pointOnlineFaceExport(HttpServletResponse response,DataCenterQuery query) throws IOException ; |
| | | void pointOnlineVideoExport(HttpServletResponse response, DataCenterQuery query) throws IOException; |
| | | |
| | | void pointOnlineCarExport(HttpServletResponse response, DataCenterQuery query) throws IOException; |
| | | |
| | | Result updateDynamicValue(UpdateDynamicValueForm form); |
| | | |
| | | |
| | | /** |
| | | * 视频:点位在线率 |
| | |
| | | */ |
| | | Result videoAssessmentFileRatio(DataCenterQuery query); |
| | | |
| | | |
| | | /** |
| | | * 视频:录像可用率 |
| | | * |
| | |
| | | * @return |
| | | */ |
| | | Result videoImportantPointLabelingAccuracy(DataCenterQuery query); |
| | | void videoImportantPointLabelingAccuracyExport(HttpServletResponse response,DataCenterQuery query); |
| | | |
| | | /** |
| | | * 视频:校时正确率 |
| | |
| | | Result faceAvailabilityOfLargeImg(DataCenterQuery query); |
| | | |
| | | Result videoImageResourceSecurity(DataCenterQuery query); |
| | | |
| | | |
| | | } |