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