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
| 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", "最小值");
|
| 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;
| }
| }
|
|