Browse Source

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

dsx 2 years ago
parent
commit
078758298f

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