cloudroam
2025-01-02 f76b3b27279df0cbc4a8a212182382c9f694d1cb
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;
    }
 
}