证照办理默认值调整为鲜丰获取

This commit is contained in:
guohb
2024-05-06 15:41:45 +08:00
parent 3cfc62b87c
commit 09b05ae07c
9 changed files with 299 additions and 39 deletions

View File

@@ -34,4 +34,13 @@ public enum LicenseTypeEnum {
}
return null;
}
public static LicenseTypeEnum matchName(String name) {
for (LicenseTypeEnum type : LicenseTypeEnum.values()) {
if (type.getMessage().equals(name)) {
return type;
}
}
return null;
}
}