fixed: 系统配置保存报错

This commit is contained in:
none 2023-03-28 14:15:02 +08:00
parent 1f913de54c
commit bd0bebb311

View File

@ -37,6 +37,9 @@ public class AppConfigServiceImpl extends ServiceImpl<AppConfigMapper, AppConfig
List<AppConfig> list = new ArrayList<>();
data.forEach((keyNameValue, keyValueValue) -> {
if (keyValueValue == null) {
return;
}
if ("******".equals(keyNameValue)) {//私密信息默认place
return;
}