|
@@ -136,12 +136,18 @@ public class CommonServiceImpl implements ICommonService {
|
|
|
if(FileUtil.exist(localFloorGroupFixJson)){
|
|
|
fYunFileServiceInterface.uploadFile(localFloorGroupFixJson, ossFloorGroupFixJson);
|
|
|
}
|
|
|
+
|
|
|
String localDepthmapVis = dataSource + "/caches/depthmap_vis";
|
|
|
String ossDepthmapVis = ossResultPath + "caches/depthmap_vis";
|
|
|
if(FileUtil.exist(localDepthmapVis)){
|
|
|
fYunFileServiceInterface.uploadFileByCommand(localDepthmapVis, ossDepthmapVis);
|
|
|
}
|
|
|
|
|
|
+ String localIntensity = dataSource + "/caches/intensity";
|
|
|
+ String ossIntensity = ossResultPath + "caches/intensity";
|
|
|
+ if(FileUtil.exist(localIntensity)){
|
|
|
+ fYunFileServiceInterface.uploadFileByCommand(localIntensity, ossIntensity);
|
|
|
+ }
|
|
|
|
|
|
//开始上传
|
|
|
fYunFileServiceInterface.uploadMulFiles(uploadMap);
|