|
@@ -180,6 +180,9 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
}
|
|
|
sceneJson.setCreateTime(scenePro.getCreateTime());
|
|
|
|
|
|
+ sceneJson.setSceneResolution(sceneProExt.getSceneResolution());
|
|
|
+ sceneJson.setSceneFrom(sceneProExt.getSceneFrom());
|
|
|
+
|
|
|
//处理热点数据,生成hot.json
|
|
|
this.publicHotData(sceneNum, sceneJson, sceneEditInfo);
|
|
|
|
|
@@ -311,6 +314,8 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
if(Objects.isNull(scenePro)){
|
|
|
throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
|
|
|
}
|
|
|
+ SceneProExt sceneProExt = sceneProExtService.findBySceneProId(scenePro.getId());
|
|
|
+
|
|
|
SceneEditInfo sceneEditInfo = this.getBySceneProId(scenePro.getId());
|
|
|
SceneEditControls sceneEditControls = sceneEditControlsService.getBySceneEditId(sceneEditInfo.getId());
|
|
|
SceneInfoVO sceneInfoVO = BeanUtil.copyProperties(sceneEditInfo, SceneInfoVO.class);
|
|
@@ -322,6 +327,9 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
}
|
|
|
sceneInfoVO.setCreateTime(scenePro.getCreateTime());
|
|
|
|
|
|
+ sceneInfoVO.setSceneResolution(sceneProExt.getSceneResolution());
|
|
|
+ sceneInfoVO.setSceneFrom(sceneProExt.getSceneFrom());
|
|
|
+
|
|
|
return sceneInfoVO;
|
|
|
}
|
|
|
|