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