Helius
2022-05-09 92eadc582305983ae679ed80e5d9d9692bf4371b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.common.enumerates;
 
import lombok.Data;
import lombok.Getter;
 
@Getter
public enum DataDictionaryEnum {
 
    SCORE_SIGN_SETTING("SCORE_SETTING", "SCORE_SIGN_SETTING");
 
    private String type;
 
    private String code;
 
    DataDictionaryEnum(String type, String code) {
        this.type = type;
        this.code = code;
    }
}