diff --git a/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ContactTypes.java b/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ContactTypes.java new file mode 100644 index 000000000..700babd7d --- /dev/null +++ b/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ContactTypes.java @@ -0,0 +1,31 @@ +package ru.spcex.platform.enumeration; + +import ru.spcex.platform.utils.enumeration.IEnumKey; + +/** + * CONTACT_TYPE_DICTIONARY + */ +public enum ContactTypes implements IEnumKey { + adrs("ADRS"), // Адрес + post("POST"), // Почтовый адрес + cont("CONT"), // Контактное лицо + mail("MAIL"), // Электронная почта + phon("PHON"), // Телефон + gdir("GDIR"), // Генеральный директор + trst("TRST"), // Доверенное лицо + fax("FAX"), // Факс + info("INFO"), // Контактная информация + cmnt("CMNT"); // Примечание + + + private final String key; + + ContactTypes(String key) { + this.key = key; + } + + @Override + public String getKey() { + return key; + } +}