fix: 移除枚举类重写的 toString 方法,解决由此引发的代码生成错误

This commit is contained in:
2024-07-31 22:47:26 +08:00
parent f80316e34d
commit 97acf52bac
20 changed files with 0 additions and 100 deletions

View File

@@ -88,9 +88,4 @@ public enum FormTypeEnum implements BaseEnum<Integer> {
private final Integer value;
private final String description;
@Override
public String toString() {
return "%s: %s".formatted(this.value, this.description);
}
}

View File

@@ -103,9 +103,4 @@ public enum QueryTypeEnum implements BaseEnum<Integer> {
private final Integer value;
private final String description;
@Override
public String toString() {
return "%s: %s".formatted(this.value, this.description);
}
}