Commit 5b2a6daa by 陶光胜

导航保存重复验证

parent 59aad92a
......@@ -249,6 +249,7 @@ public class QrcodeController {
final String path = filePath + File.separator + fileName+".zip";
File file = new File(path);
if (!file.exists()) {
file.getParentFile().mkdirs();
file.createNewFile();
}
ZipOutputStream zipOutputStream = null;
......@@ -307,7 +308,8 @@ public class QrcodeController {
e.printStackTrace();
}
String url = FileOperateUtils.simpleUploadFileFromLocal(file, fileId, BucketNameEnum.COMPRESS_60000.getName());
downloadReportApiService.updateDownloadUrl(downLoadId, url);
downloadReportApiService.updateDownloadUrl(downLoadId, "https://"+url);
} catch (IOException e1) {
e1.printStackTrace();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment