fuliqi
2025-01-02 73caf5a7072976021f43a764ed2ad73404f4d040
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
44
45
46
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_code_by_area")
public class CodeByAreaResult extends BaseResult {
 
    /**
     * 组织编号
     */
    private String orgCode;
 
    /**
     * 组织名称
     */
    private String orgName;
 
    /**
     * 设备/卡口数量
     */
    private Integer deviceCount;
 
    /**
     * 国标编码长度不是20位的数量
     */
    private Integer lengthErrorCount;
 
    /**
     * 国标编码前6位不符合标准的数量
     */
    private Integer top6ErrorCount;
 
    /**
     * 国标编码11至13位不符合标准的数量
     */
    private Integer err11to13Count;
}