mirror of
https://github.com/dataease/dataease.git
synced 2026-06-13 01:01:20 +08:00
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user