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_coordinate_by_area")
|
public class CoordinateByAreaResult extends BaseResult {
|
|
/**
|
* 组织编号
|
*/
|
@TextIndexed
|
private String orgCode;
|
|
/**
|
* 组织名称
|
*/
|
@TextIndexed
|
private String orgName;
|
|
/**
|
* 设备或卡口数量
|
*/
|
private Integer deviceCount;
|
|
/**
|
* 经纬度缺失量
|
*/
|
private Integer missLatCount;
|
|
/**
|
* 经纬度精度过低量
|
*/
|
private Integer lowPrecisionCount;
|
|
/**
|
* 不在辖区内的设备或卡口数量
|
*/
|
private Integer notInAreaCount;
|
|
}
|