|
@@ -69,7 +69,8 @@ public class SceneMarkShapeBoxServiceImpl extends ServiceImpl<MarkShapeBoxMapper
|
|
|
ResultData res = shapesBoxClient.post(planeCovertBasePathUrl + planeCovert, JSONObject.toJSONString(sceneMarkShapeBoxPostVO));
|
|
|
log.info("请求node转换服务-{}",res);
|
|
|
if (res.getCode()==200){
|
|
|
- SceneMarkShapeBox data = (SceneMarkShapeBox)res.getData();
|
|
|
+ JSONObject resData = (JSONObject)res.getData();
|
|
|
+ SceneMarkShapeBox data= JSONObject.parseObject(resData.toJSONString(),SceneMarkShapeBox.class);
|
|
|
SceneMarkShapeBox sceneMarkShapeBox = findBySceneNum(sceneNum);
|
|
|
if (ObjectUtil.isNotNull(sceneMarkShapeBox)){
|
|
|
log.info("存在shapesBox数据进行替换");
|