ContactTypes enum added
This commit is contained in:
parent
ddc27dbb33
commit
30d600cdc8
1 changed files with 31 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue