houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.device.commons;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * 设备健康评价指标类型
 *
 * @author PanZhibao
 * @Description
 * @createTime 2024年06月30日
 */
@Getter
@AllArgsConstructor
public enum HealthIndexTypeEnum {
    runTime("runTime", "运行时长"),
    elec("elec", "电流"),
    temperature("temperature", "温度"),
    flutter("flutter", "振动");
    private String code;
    private String desc;
 
    public static HealthIndexTypeEnum getEumByCode(String code) {
        if (code == null) {
            return null;
        }
 
        for (HealthIndexTypeEnum statusEnum : HealthIndexTypeEnum.values()) {
            if (statusEnum.getCode().equals(code)) {
                return statusEnum;
            }
        }
        return null;
    }
}