Merge pull request #9020 from dataease/pr@dev@fixapi

fix:数据导出中心
This commit is contained in:
taojinlong 2024-04-09 17:17:21 +08:00 committed by GitHub
commit 5936f3d90c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -685,7 +685,7 @@ public class ExportCenterService {
String unit = "Mb";
Double size = 0.0;
if((double) length/1024/1024 > 1){
if((double) length/1024/1024 > 1){
if((double) length/1024/1024/1024 > 1){
unit = "Gb";
size = Double.valueOf(String.format("%.2f", (double) length/1024/1024/1024));
}else {