zxl
2025-05-08 84fa53cb66bb4b05f0622c738346ce77f8f13aea
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
package com.ycl.api.DH.lib.enumeration;
 
public enum EM_RADAR_POINTTYPE {
    EM_RADAR_POINTTYPE_UNKNOWN(0, "未知"),
    EM_RADAR_POINTTYPE_ALARMPOINT(1, "当前点是报警区的报警点"),
    EM_RADAR_POINTTYPE_LINKMONITORPOINT(2, "当前点是正在被联动监控的点"),
    EM_RADAR_POINTTYPE_DISAPPEARTRACKPOINT(3, "当前点是消失的轨迹点");
 
    private int value;
    private String note;
 
    EM_RADAR_POINTTYPE(int givenValue, String note) {
        // TODO Auto-generated constructor stub
        this.value = givenValue;
        this.note = note;
    }
 
    public int getValue() {
        return value;
    }
 
    public void setValue(int value) {
        this.value = value;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
}