ITIC曲线画图区间问题

This commit is contained in:
hzj
2026-01-19 09:35:26 +08:00
parent 97ddd133f0
commit ca7f1010b0
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ public class BusinessDataUtil {
List<List<Double>> unTolerateData = new ArrayList<>();
for (List<Double> list : originData) {
//是否超过上限
if (list.get(0) <= 0.03) {
if (list.get(0) <= 0.003) {
int line = 230 - 30000 * list.get(0).intValue();
if (list.get(1) > line) {
unTolerateData.add(list);

View File

@@ -8805,7 +8805,7 @@ public class ReportServiceImpl implements ReportService {
for (int i = 0; i < xbardata.size(); i++) {
OB ob = xbardata.get(i);
//是否超过上限
if (ob.getA() <= 0.03) {
if (ob.getA() <= 0.003) {
int line = 230 - 30000 * (int) ob.getA();
if (ob.getB() > line) {
pointno[i][0] = ob.getA();