|
@@ -1742,10 +1742,8 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<ISceneEditInfoMapper,
|
|
|
file.transferTo(targetFile);
|
|
|
|
|
|
//调用算法切全景图
|
|
|
- cn.hutool.core.io.FileUtil
|
|
|
- .copy(path + File.separator + "data.json", target + File.separator+"data.json", true);
|
|
|
- cn.hutool.core.io.FileUtil
|
|
|
- .copy(path + File.separator + "project.json", target + File.separator+"project.json", true);
|
|
|
+ FileUtils.copyFile(path + File.separator + "data.json", target + File.separator+"data.json", true);
|
|
|
+ FileUtils.copyFile(path + File.separator + "project.json", target + File.separator+"project.json", true);
|
|
|
JSONObject visionJson = new JSONObject();
|
|
|
JSONArray visionArray = new JSONArray();
|
|
|
visionJson.put("uuid", sid);
|