龚焕茏
2024-04-26 eb806b5ec0bb72536e78c1a7fcffb94bcd24cbbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ycl.platform.domain.dto;
 
import lombok.Data;
 
/**
 * 按区域统计经纬度异常设备或卡口
 *
 * @author gonghl
 */
@Data
public class AreaDeviceStatisticsDTO {
 
    /**
     * 组织编号
     */
    private String orgCode;
 
    /**
     * 组织名称
     */
    private String orgName;
 
    /**
     * 设备或卡口数量
     */
    private Integer deviceCount;
 
    /**
     * 经纬度缺失量
     */
    private Integer missLatCount;
 
    /**
     * 经纬度精度过低量
     */
    private Integer lowPrecisionCount;
 
    /**
     * 不在辖区内的设备或卡口数量
     */
    private Integer notInAreaCount;
 
}