fuliqi
2024-08-02 26e9d2d7953bcb8eecaa9f7ce0527abf64f73d0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package com.ycl.platform.service;
 
import com.ycl.platform.domain.query.DateCenterQuery;
import com.ycl.platform.domain.result.HK.AttrRecognitionMonitorResult;
import com.ycl.platform.domain.result.HK.CrossDetailResult;
import com.ycl.platform.domain.result.HK.DataIntegrityMonitoringResult;
import com.ycl.platform.domain.result.HK.SnapshotDataMonitorResult;
import com.ycl.platform.domain.result.UY.RecordMetaDSumResult;
import com.ycl.platform.domain.vo.TMonitorVO;
 
import java.util.List;
 
/**
 * @author:xp
 * @date:2024/8/1 16:42
 */
public interface DataCenterService {
 
    /**
     * 视频:点位在线率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoPointOnlineRate(DateCenterQuery query);
 
    /**
     * 视频:一机一档注册率
     *
     * @param query
     * @return
     */
    List<TMonitorVO> videoOneMachineDocumentRegister(DateCenterQuery query);
 
    /**
     * 视频:一机一档合格率
     *
     * @param query
     * @return
     */
    List<TMonitorVO> videoOneMachineDocumentQualified(DateCenterQuery query);
 
    /**
     * 视频:档案考核比
     *
     * @param query
     * @return
     */
    List<TMonitorVO> videoAssessmentFileRatio(DateCenterQuery query);
 
    /**
     * 视频:录像可用率
     *
     * @param query
     * @return
     */
    List<RecordMetaDSumResult> videoAvailabilityRate(DateCenterQuery query);
 
    /**
     * 视频:重点点位录像可用率
     *
     * @param query
     * @return
     */
    List<RecordMetaDSumResult> videoImportantPointAvailabilityRate(DateCenterQuery query);
 
    /**
     * 视频:标注正确率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoLabelingAccuracy(DateCenterQuery query);
 
    /**
     * 视频:重点点位标注正确率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoImportantPointLabelingAccuracy(DateCenterQuery query);
 
    /**
     * 视频:校时正确率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoCheckTimeAccuracy(DateCenterQuery query);
 
    /**
     * 视频:重点点位校时正确率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoImportantPointCheckTimeAccuracy(DateCenterQuery query);
 
    /**
     * 视频:重点点位在线率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoImportantPointOnlineRate(DateCenterQuery query);
 
    /**
     * 视频:重点指挥图像在线率
     *
     * @param query
     * @return
     */
    // TODO 返回数据对象更换
    List<TMonitorVO> videoImportantPointImageOnlineRate(DateCenterQuery query);
 
 
 
 
 
    /**
     * 车辆:视图库对接稳定性
     *
     * @param query
     * @return
     */
    List<SnapshotDataMonitorResult> vehicleViewDockStable(DateCenterQuery query);
 
    /**
     * 车辆:点位在线率
     *
     * @param query
     * @return
     */
    List<SnapshotDataMonitorResult> vehiclePointOnlineRate(DateCenterQuery query);
 
    /**
     * 车辆:互联网卡口设备目录一致性
     *
     * @param query
     * @return
     */
    List<TMonitorVO> vehicleNetDeviceDirectoryConsistency(DateCenterQuery query);
 
    /**
     * 车辆:车辆卡口信息采集准确率
     *
     * @param query
     * @return
     */
    List<CrossDetailResult> vehicleCollectionConsistency(DateCenterQuery query);
 
    /**
     * 车辆:车辆卡口设备抓拍数据完整性
     *
     * @param query
     * @return
     */
    List<DataIntegrityMonitoringResult> vehicleCollectionDataIntegrity(DateCenterQuery query);
 
    /**
     * 车辆:车辆卡口设备抓拍数据准确性
     *
     * @param query
     * @return
     */
    List<AttrRecognitionMonitorResult> vehicleCollectionDataCaptured(DateCenterQuery query);
}