瀏覽代碼

Merge branch 'feature-upload-intensity-20230331-dsx' into release

dsx 2 年之前
父節點
當前提交
078758298f
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/main/java/com/fdkankan/contro/mq/service/impl/CommonServiceImpl.java

+ 6 - 0
src/main/java/com/fdkankan/contro/mq/service/impl/CommonServiceImpl.java

@@ -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);