ContactTypes enum added

This commit is contained in:
akulikov 2023-04-05 11:52:21 +03:00
parent ddc27dbb33
commit 30d600cdc8

View file

@ -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;
}
}