fuliqi
2024-10-28 87a7362709ac249c3965a392842cf24bc402b6c1
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.ycl.platform.domain.vo.DataCenter;
 
import com.ycl.platform.domain.result.UY.MonitorQualifyResult;
import lombok.Data;
import org.springframework.data.mongodb.core.index.TextIndexed;
 
@Data
public class MonitorQualifyResultVO {
    /**
     * 行政编码
     */
    private String civilCode;
    private Boolean civilCodeError;
    /**
     * 是否集成设备
     */
    private String integratedDevice;
    private Boolean integratedDeviceError;
    /**
     * IP地址
     */
    private String ip;
    private Boolean ipError;
    /**
     * 监控点位类型
     */
    private String jkdwlx;
    private Boolean jkdwlxError;
    /**
     * 纬度
     */
    private String latitude;
    private Boolean latitudeError;
    /**
     * 经度
     */
    private String longitude;
    private Boolean longitudeError;
    /**
     * mac地址
     */
    private String macdz;
    private Boolean macdzError;
    /**
     * 设备名
     */
    private String name;
    private Boolean nameError;
    /**
     * 设备状态
     */
    private String sbzt;
    private Boolean sbztError;
    /**
     * 设备编码
     */
    private String serialNumber;
    private Boolean serialNumberError;
    /**
     * 摄像机采集区域
     */
    private String sxjcjqy;
    private Boolean sxjcjqyError;
    /**
     * 摄像机功能类型
     */
    private String sxjgnlx;
    private Boolean sxjgnlxError;
 
    private String newDevice;
}