parent
a4b70c6635
commit
f3067be20d
1 changed files with 8 additions and 3 deletions
|
|
@ -3,16 +3,21 @@ package ru.spcex.platform.enumeration;
|
|||
import ru.spcex.platform.utils.enumeration.IEnumKey;
|
||||
|
||||
public enum SdfTable implements IEnumKey {
|
||||
SDF_01("SDF_01"),
|
||||
SDF_04("SDF_04"),
|
||||
SDF_08("SDF_08"),
|
||||
SDF_09("SDF_09"),
|
||||
SDF_10("SDF_10"),
|
||||
SDF_13("SDF_13");
|
||||
|
||||
private final String key;
|
||||
SDF_13("SDF_13"),
|
||||
SDF_16("SDF_16"),
|
||||
SDF_57("SDF_57");
|
||||
|
||||
SdfTable(String key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
private final String key;
|
||||
|
||||
@Override
|
||||
public String getKey() {
|
||||
return this.key;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue