Administrator
2025-05-12 78e1837458da467cacefa8e22c2c9616b1dc9f9d
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
package cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
@Getter
public enum CommonDictionaryEnum {
 
    /**
     * 开屏页设置
      */
    PNG_URL_INDEX("PNG_URL_INDEX", "PNG_URL_INDEX"),
    TIME_URL_INDEX("TIME_URL_INDEX", "TIME_URL_INDEX"),
    /**
     * 整体置灰
     */
    GRAY_SET("GRAY_SET", "GRAY_SET");
 
    private String type;
 
    private String code;
 
    CommonDictionaryEnum(String type, String code) {
        this.type = type;
        this.code = code;
    }
}