|
|
|
|
@ -926,7 +926,7 @@ public class DatavServiceImpl implements DatavService {
|
|
|
|
|
.toList(); |
|
|
|
|
//计算查实率(向上取整)
|
|
|
|
|
Double verificationRate = 0.0; |
|
|
|
|
if (!dataCaseVerifs.isEmpty()) { |
|
|
|
|
if (!dataCaseVerifs.isEmpty() || !jbNegatvieList.isEmpty()) { |
|
|
|
|
double rawRate = (double) ssNegative.size() / (dataCaseVerifs.size() + jbNegatvieList.size()) * 100; |
|
|
|
|
verificationRate = Math.round(rawRate * 10) / 10.0; |
|
|
|
|
} |
|
|
|
|
@ -989,7 +989,7 @@ public class DatavServiceImpl implements DatavService {
|
|
|
|
|
.toList(); |
|
|
|
|
|
|
|
|
|
Double verificationRate = 0.0; |
|
|
|
|
if (!dataCaseVerifs.isEmpty()) { |
|
|
|
|
if (!dataCaseVerifs.isEmpty() || !jbNegatvieList.isEmpty()) { |
|
|
|
|
double rawRate = (double) ssNegative.size() / (dataCaseVerifs.size() + jbNegatvieList.size()) * 100; |
|
|
|
|
verificationRate = Math.round(rawRate * 10) / 10.0; |
|
|
|
|
} |
|
|
|
|
|