---
FIX UP
This commit is contained in:
aalehin 2023-05-27 13:50:15 +03:00
parent a4b70c6635
commit f3067be20d

View file

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