src/main/kotlin/cn/flightfeather/supervision/business/autooutput/dataanalysis/AopDataAnalysis.kt
@@ -147,7 +147,13 @@ /** * 超月均值百分比 */ abstract fun overAvgRate(avg: Double, dAvg: Double?): Double? open fun overAvgRate(avg: Double, dAvg: Double?): Double? { return if (dAvg != null && dAvg != .0) { round(((avg - dAvg) / dAvg) * 1000) / 1000 } else { .0 } } /** * 数据个数