package com.ycl.platform.domain.result.HK;
|
|
import com.ycl.platform.domain.result.BaseResult;
|
import lombok.Data;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
/**
|
* 采集设备属性监测结果:人脸(设备抓拍图片合格性)
|
*
|
* @author gonghl
|
*/
|
@Data
|
@Document(collection = "hk_monitoring_detail")
|
public class MonitoringDetailResult extends BaseResult {
|
|
/**
|
* 组织编号
|
*/
|
private String orgCode;
|
|
/**
|
* 采集设备内码
|
*/
|
private String indexCode;
|
|
/**
|
* 国标编码(外码)
|
*/
|
private String externalIndexCode;
|
|
/**
|
* 采集设备名称
|
*/
|
private String cameraName;
|
|
/**
|
* 经度
|
*/
|
private Double longitude;
|
|
/**
|
* 纬度
|
*/
|
private Double latitude;
|
|
/**
|
* 经纬度监测结果: 1:正常 2:经纬度缺失 3:不在辖区 4:精度过低
|
*/
|
private Integer lalType;
|
|
/**
|
* 国标编码监测结果: 1:正常 2:编码长度不等于20位 3:前6位不符合标准 4:11至13位不符合标准
|
*/
|
private Integer gbCodeType;
|
|
/**
|
* 普通能力集
|
*/
|
private String capabilitySet;
|
|
/**
|
* 智能能力集
|
*/
|
private String intelligentSet;
|
|
}
|