cloudroam
2024-12-30 5d8f5f3defe929b8854c84651a3f0fdb650c362a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.enums;
 
import lombok.Getter;
 
public enum ConfigParamEnum {
 
    BASE("base","基本配置"),
 
    ;
 
    @Getter
    private String name;
 
    private String desc;
    private ConfigParamEnum(String name, String desc){
        this.name=name;
        this.desc=desc;
    }
 
}