xiangpei
2024-04-26 586510e643625b09f08e7289d90c9d5df1a56304
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
package com.ycl.platform.domain.dto;
 
import lombok.Data;
 
/**
 * 属性识别准确监测结果
 *
 * @author gonghl
 */
@Data
public class AttrRecognitionMonitorDTO {
 
    /**
     * 卡口内码或采集设备内码,dataType为1时表示卡口内码,dataType为11时表示采集设备内码
     */
    private String indexCode;
 
    /**
     * 设备或卡口国标编码
     */
    private String externalIndexCode;
 
    /**
     * 设备或卡口名称
     */
    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;
 
}