|
@@ -185,6 +185,11 @@ public class ScenePlusServiceImpl extends ServiceImpl<IScenePlusMapper, ScenePlu
|
|
|
String newViewPath = String.format(SceneResourcePath.VIEW_PATH_v4, newNum);
|
|
|
fYunFileServiceInterface.copyFileInBucket(oldViewPath, newViewPath);
|
|
|
|
|
|
+ //复制计算结果文件
|
|
|
+ String oldResultPath = String.format(SceneResourcePath.SCENE_RESULT_DATA_PATH, oldNum);
|
|
|
+ String newResultPath = String.format(SceneResourcePath.SCENE_RESULT_DATA_PATH, newNum);
|
|
|
+ fYunFileServiceInterface.copyFileInBucket(oldResultPath, newResultPath);
|
|
|
+
|
|
|
// 拷贝本地资源
|
|
|
String oldPath = SceneResourcePath.nasBasePath + oldNum;
|
|
|
String newPath = SceneResourcePath.nasBasePath + newNum;
|