|
@@ -49,7 +49,11 @@ public class IDataAnalysisWebServiceImpl implements IDataAnalysisWebService {
|
|
|
if (CollectionUtils.isNotEmpty(content)) {
|
|
|
Map data = content.get(0);
|
|
|
if (null != data) {
|
|
|
- return DataUtils.parseDouble(data.get(targetCode));
|
|
|
+ Double targetValue = DataUtils.parseDouble(data.get(targetCode));
|
|
|
+ if (Math.abs(targetValue) > 100) {
|
|
|
+ targetValue = null;
|
|
|
+ }
|
|
|
+ return targetValue;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -58,6 +62,4 @@ public class IDataAnalysisWebServiceImpl implements IDataAnalysisWebService {
|
|
|
}
|
|
|
return null;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|