Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
package com.iailab.netsdk.lib.enumeration;
 
/**
 * @author 47081
 * @version 1.0
 * @description 设备锁状态
 * @date 2021/2/22
 */
public enum EM_TAMPERALTERSTATUS_TYPE {
  /** 未知 */
  EM_TAMPERALTERSTATUS_UNKNOWN(-1, "未知"),
  /** 关闭 */
  EM_TAMPERALTERSTATUS_CLOSE(0, "关闭"),
  /** 开启 */
  EM_TAMPERALTERSTATUS_OPEN(1, "开启");
  private int type;
  private String desc;
 
  EM_TAMPERALTERSTATUS_TYPE(int type, String desc) {
    this.type = type;
    this.desc = desc;
  }
 
  public int getType() {
    return type;
  }
 
  public String getDesc() {
    return desc;
  }
 
  public static EM_TAMPERALTERSTATUS_TYPE getTamperaltersStatus(int type) {
    for (EM_TAMPERALTERSTATUS_TYPE statusType : EM_TAMPERALTERSTATUS_TYPE.values()) {
      if (statusType.type == type) {
        return statusType;
      }
    }
    return EM_TAMPERALTERSTATUS_UNKNOWN;
  }
}