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;
|
import ru.spcex.platform.utils.enumeration.IEnumKey;
|
||||||
|
|
||||||
public enum SdfTable implements IEnumKey {
|
public enum SdfTable implements IEnumKey {
|
||||||
|
SDF_01("SDF_01"),
|
||||||
|
SDF_04("SDF_04"),
|
||||||
SDF_08("SDF_08"),
|
SDF_08("SDF_08"),
|
||||||
|
SDF_09("SDF_09"),
|
||||||
SDF_10("SDF_10"),
|
SDF_10("SDF_10"),
|
||||||
SDF_13("SDF_13");
|
SDF_13("SDF_13"),
|
||||||
|
SDF_16("SDF_16"),
|
||||||
private final String key;
|
SDF_57("SDF_57");
|
||||||
|
|
||||||
SdfTable(String key) {
|
SdfTable(String key) {
|
||||||
this.key = key;
|
this.key = key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private final String key;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getKey() {
|
public String getKey() {
|
||||||
return this.key;
|
return this.key;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue