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;
|
|
}
|