fuliqi
2024-09-11 b14531e3b850fe6d2fa916ba7b88b3e2bd2ff30a
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
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;
 
/**
 * 属性识别准确监测结果:车辆(车辆卡口设备抓拍数据准确性、)
 *
 * @author gonghl
 */
@Data
@Document(collection = "hk_attr_recognition_monitor")
public class AttrRecognitionMonitorResult extends BaseResult {
 
    /**
     * 卡口内码或采集设备内码,dataType为1时表示卡口内码,dataType为11时表示采集设备内码
     */
    private String indexCode;
 
    /**
     * 设备或卡口国标编码
     */
    @TextIndexed
    private String externalIndexCode;
 
    /**
     * 设备或卡口名称
     */
    @TextIndexed
    private String deviceName;
 
    /**
     * 组织编号
     */
    private String orgCode;
 
    /**
     * 抓拍数据量
     */
    private Integer dataCount;
 
    /**
     * 数据抽检量
     */
    private Integer sampleCount;
 
    /**
     * 主要属性(车牌号码,车牌颜色)识别不一致数据量
     */
    private Integer majorDiffCount;
 
    /**
     * 重要属性不一致数据量(车牌号码、车牌颜色、车辆类型、车辆品牌当中有一个属性存在不一致,即重要属性不一致),V2.3.0版本新增
     */
    private int importantDiffCount;
 
    /**
     * 车牌号码不一致数据量
     */
    private Integer plateDiffCount;
 
    /**
     * 车牌颜色不一致数据量
     */
    private Integer plateColorDiffCount;
 
    /**
     * 类型属性不一致数据量
     */
    private Integer vehicleDiffCount;
 
    /**
     * 车辆类型不一致数据量
     */
    private Integer vehicleTypeDiffCount;
 
    /**
     * 车辆品牌不一致数据量
     */
    private int vehicleBrandDiffCount;
 
}