|
@@ -58,6 +58,13 @@ public class CommonServiceImpl implements ICommonService {
|
|
|
uploadMap.put(localProjectJsonPath, ossProjectJsonPath);
|
|
|
}
|
|
|
|
|
|
+ //上传data.json
|
|
|
+ String localDataJsonPath = dataSource + "/data.json";
|
|
|
+ String ossDataJsonPath = ossResultPath + "data.json";
|
|
|
+ if(FileUtil.exist(localDataJsonPath)){
|
|
|
+ uploadMap.put(localDataJsonPath, ossDataJsonPath);
|
|
|
+ }
|
|
|
+
|
|
|
//开始上传
|
|
|
fYunFileServiceInterface.uploadMulFiles(uploadMap);
|
|
|
}
|