新增默认IP地理库

pull/82/head^2
awenes 2024-04-04 21:36:49 +08:00
parent c2bad81246
commit 9d2cd04d4e
1 changed files with 20 additions and 19 deletions

View File

@ -19,6 +19,7 @@ package cn.topiam.employee.console.converter.setting;
import java.util.Objects; import java.util.Objects;
import org.apache.commons.lang3.StringUtils;
import org.mapstruct.Mapper; import org.mapstruct.Mapper;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -115,7 +116,7 @@ public interface GeoLocationSettingConverter {
*/ */
default GeoIpProviderResult entityToGeoLocationProviderConfig(SettingEntity entity) { default GeoIpProviderResult entityToGeoLocationProviderConfig(SettingEntity entity) {
//没有数据,默认未启用 //没有数据,默认未启用
if (Objects.isNull(entity)) { if (Objects.isNull(entity) || StringUtils.isBlank(entity.getValue())) {
return null; return null;
} }
try { try {