fix:解决Gamma default params表有空的value报错问题
This commit is contained in:
parent
7d0fddfc81
commit
efc9261331
|
@ -19,7 +19,7 @@ public class GardsGammaDefaultParamsServiceImpl extends ServiceImpl<GardsGammaDe
|
||||||
public Map<String, String> mapSetting() {
|
public Map<String, String> mapSetting() {
|
||||||
Map<String, String> paramsMap = list().stream()
|
Map<String, String> paramsMap = list().stream()
|
||||||
.collect(Collectors.toMap(GardsGammaDefaultParams::getName,
|
.collect(Collectors.toMap(GardsGammaDefaultParams::getName,
|
||||||
GardsGammaDefaultParams::getValue));
|
v->v.getValue() == null ? "" : v.getValue()));
|
||||||
return paramsMap;
|
return paramsMap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user