Commit 10270423 by 罗志长

fix: null

parent a5f112f4
......@@ -78,7 +78,7 @@ public class PlatRegionSettingServiceImpl extends ServiceImpl<PlatRegionSettingM
if(map.get(item)!=null){
String attribute = map.get(item);
PlatDeviceAttrWechatDTO deviceAttrWechatDTO = JsonUtil.toObj(attribute,PlatDeviceAttrWechatDTO.class);
if (deviceAttrWechatDTO != null) {
if (deviceAttrWechatDTO != null && deviceAttrWechatDTO.getRadarMount() != null) {
platRegionSetting.setInstallType(deviceAttrWechatDTO.getRadarMount().toString());
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment