package cc.mrbird.febs.common.enumerates; import lombok.Getter; @Getter public enum CommonDictionaryEnum { /** * 整体置灰 */ GRAY_SET("GRAY_SET", "GRAY_SET"); private String type; private String code; CommonDictionaryEnum(String type, String code) { this.type = type; this.code = code; } }