소스 검색

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