Jay
2024-10-14 441d3055fb0876835050d52123808b1c46a53179
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
package com.iailab.module.data.common.enums;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
@Getter
@AllArgsConstructor
public enum IndStatFuncEnum {
 
    SUM("SUM", "求和"),
    COUNT("COUNT", "计数"),
    AVG("AVG", "平均值"),
    MAX("MAX", "最大值"),
    MIN("MIN", "最小值"),
    DEFAULT("DEFAULT", "默认值");
 
    private String code;
    private String desc;
 
    public static IndStatFuncEnum getEumByCode(String code) {
        if (code == null) {
            return null;
        }
 
        for (IndStatFuncEnum statusEnum : IndStatFuncEnum.values()) {
            if (statusEnum.getCode().equals(code)) {
                return statusEnum;
            }
        }
        return null;
    }
}