过滤枚举

This commit is contained in:
钱涛 2023-10-08 09:16:54 +08:00
parent 4c5bc5dda7
commit b6508067f1
1 changed files with 3 additions and 3 deletions

View File

@ -103,17 +103,17 @@ public enum FilterEnum implements BaseEnum<String> {
@Override
public String getValue() {
return null;
return value;
}
@Override
public Integer getLabelId() {
return null;
return labelId;
}
@Override
public String getDefaultLabel() {
return null;
return defaultLabel;
}