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"), AGENT_BONUS("BONUS_TYPE", "AGENT_BONUS"), THANKFUL_BONUS("BONUS_TYPE", "THANKFUL_BONUS"), RANK_BONUS("BONUS_TYPE", "RANK_BONUS"); private String type; private String code; DataDictionaryEnum(String type, String code) { this.type = type; this.code = code; } }