xiangpei
2024-08-02 9814046268f11b43fc674142db0fb3b690c3fbaf
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package com.ycl.platform.domain.result.HK;
 
import com.ycl.platform.domain.result.BaseResult;
import lombok.Data;
import org.springframework.data.mongodb.core.index.TextIndexed;
import org.springframework.data.mongodb.core.mapping.Document;
 
/**
 * 按区域统计车辆数据监测指标项(2.3.0新增)
 *
 * @author gonghl
 */
@Data
@Document(collection = "hk_car_detect")
public class CarDetectResult extends BaseResult {
 
    /**
     * 组织编号
     */
    @TextIndexed
    private String orgCode;
 
    /**
     * 组织区域
     */
    @TextIndexed
    private String orgName;
 
    /**
     * 设备总数
     */
    private Integer deviceCount;
 
    /**
     * 抓拍总量
     */
    private Integer dataCount;
 
    /**
     * 非今日抓拍量
     */
    private Integer noTodayCount;
 
    /**
     * 设备活跃性 - 设备活跃量
     */
    private Integer deviceActiveCount;
 
    /**
     * 设备活跃性 - 无抓拍设备数
     */
    private Integer noDataCount;
 
    /**
     * 设备活跃性 - 抓拍量过少设备数
     */
    private Integer dataLittleCount;
 
    /**
     * 设备活跃性 - 抓拍突降设备数
     */
    private Integer dataDropCount;
 
    /**
     * 时钟准确性 - 设备合格率
     */
    private Integer clockDeviceEligPercent;
 
    /**
     * 时钟准确性 - 时钟准确率
     */
    private Float clockPercent;
 
    /**
     * 时钟准确性 - 时钟不准确量
     */
    private Integer unclockCount;
 
    /**
     * 上传及时性 - 设备合格率
     */
    private Integer timelyDeviceEligPercent;
 
    /**
     * 上传及时性 - 抓拍及时率
     */
    private Float timelyPercent;
 
    /**
     * 上传及时性 - 延迟量
     */
    private Integer delayCount;
 
    /**
     * 上传及时性 - 延迟>T1s数据量
     */
    private Integer delayCount2;
 
    /**
     * 上传及时性 - 延迟>T2s数据量
     */
    private Integer delayCount3;
 
    /**
     * 上传及时性 - 延迟>T3s数据量
     */
    private Integer delayCount4;
 
    /**
     * 大图可用性 - 抽检量
     */
    private Integer usefulSampleCount;
 
    /**
     * 大图可用性 - 大图可用量
     */
    private Integer bigUsefulCount;
 
    /**
     * 大图可用性 - 大图访问异常量
     */
    private Integer bigPicExpCount;
 
    /**
     * 大图可用性 - Osd标注异常量:场景图中osd水印无抓拍时间或场所
     */
    private Integer osdExpCount;
 
    /**
     * 车牌合规性 - 识别率低卡口数
     */
    private Integer lowRecgCount;
 
    /**
     * 车牌合规性 - 车牌未识别量
     */
    private Integer noNumberCount;
 
    /**
     * 车牌合规性 - 平均识别率
     */
    private Float plateRecgPercent;
 
    /**
     * 车牌合规性 - 昼夜突变卡口数
     */
    private Integer sudChgRecgCount;
 
    /**
     * 数据准确性 - 抽检量
     */
    private Integer vehSampleCount;
 
    /**
     * 数据准确性 - 主要属性一致量
     */
    private Integer majorConCount;
 
    /**
     * 数据准确性 - 重要属性一致量
     */
    private Integer importantConCount;
 
    /**
     * 数据完整性 - 六项属性不完整量
     */
    private Integer noIntegrityCount;
 
    /**
     * 数据完整性 - 两项属性不完整量
     */
    private Integer mainNoIntegrityCount;
 
    /**
     * 数据关联性 - 未上报设备数
     */
    private Integer unmatchDeviceCount;
 
    /**
     * 数据关联性 - 未上报抓拍量
     */
    private Integer unmatchDataCount;
 
    /**
     * 数据唯一性 - 不唯一数据
     */
    private Integer nouniqueData;
 
    /**
     * 数据唯一性 - 不唯一数据量
     */
    private Integer nouniqueCount;
 
}