src/main/java/com/moon/server/entity/data/AnalysisResultEntity.java
@@ -1,5 +1,7 @@ package com.moon.server.entity.data; import com.moon.server.helper.WebHelper; import java.io.Serializable; /** @@ -39,7 +41,7 @@ } public void setMin(Double min) { this.min = min; this.min = WebHelper.round(min, 3); } public Double getAvg() { @@ -47,7 +49,7 @@ } public void setAvg(Double avg) { this.avg = avg; this.avg = WebHelper.round(avg, 3); } public Double getMax() { @@ -55,7 +57,7 @@ } public void setMax(Double max) { this.max = max; this.max = WebHelper.round(max, 3); } public int getCode() {