CZT
2023-11-27 c206acfaedc69c390fb67daa81bc686f58a212ef
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
package com.ld.igds.constant;
 
/**
 * 物联网拓展设备类型枚举类
 */
public enum DeviceIotType {
 
    TYPE_01("01", "01-温湿度"),
 
    TYPE_02("02", "02-液位计");
 
    private String code;
    private String msg;
 
    DeviceIotType(String code, String msg) {
        this.code = code;
        this.msg = msg;
    }
 
    public String getCode() {
        return code;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public static String getMsg(String code) {
        if(null == code) return null;
        if(DeviceIotType.TYPE_01.getCode().equals(code)) return DeviceIotType.TYPE_01.getMsg();
        if(DeviceIotType.TYPE_02.getCode().equals(code)) return DeviceIotType.TYPE_02.getMsg();
        return "其他";
    }
}