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