liusheng
2025-06-19 971bd30b611531464d7a878352e453ab4511f93f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lihu.jh.module.infra.enums.config;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
@Getter
@AllArgsConstructor
public enum ConfigTypeEnum {
 
    /**
     * 系统配置
     */
    SYSTEM(1),
    /**
     * 自定义配置
     */
    CUSTOM(2);
 
    private final Integer type;
 
}