역할 enum 수정

This commit is contained in:
2025-12-11 17:39:25 +09:00
parent 993b36f42d
commit 10e3c0ecbb

View File

@@ -22,13 +22,4 @@ public enum RoleType implements EnumType {
public String getText() { public String getText() {
return desc; return desc;
} }
public static RoleType from(String value) {
for (RoleType type : values()) {
if (type.name().equalsIgnoreCase(value)) {
return type;
}
}
return null;
}
} }