From 7b4872691f4a5d12b7fc61ec72da77d9b5b0bb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E7=90=B3?= <1911390090@qq.com> Date: Fri, 6 Dec 2024 13:59:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A4=E9=80=9A=E6=B5=81=E6=8B=A5=E5=A0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/service/impl/DcTrafficStatisticsServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zc-business/src/main/java/com/zc/business/service/impl/DcTrafficStatisticsServiceImpl.java b/zc-business/src/main/java/com/zc/business/service/impl/DcTrafficStatisticsServiceImpl.java index 845c0ac9..e68b788f 100644 --- a/zc-business/src/main/java/com/zc/business/service/impl/DcTrafficStatisticsServiceImpl.java +++ b/zc-business/src/main/java/com/zc/business/service/impl/DcTrafficStatisticsServiceImpl.java @@ -1161,11 +1161,11 @@ public class DcTrafficStatisticsServiceImpl implements IDcTrafficStatisticsServi JSONObject jsonObject = (JSONObject) object; Integer asOneRoad = jsonObject.getInteger("as_one_road"); if (jsonObject.getDouble("end_pile_no") != null) { - double endPileNo = jsonObject.getDouble("end_pile_no"); + double endPileNo = jsonObject.getDouble("end_pile_no")>jsonObject.getDouble("start_pile_no")?jsonObject.getDouble("end_pile_no") : jsonObject.getDouble("start_pile_no"); String endMark = formatNumber(endPileNo); jsonObject.put("endMark", endMark);//结束桩号 } - double startPileNo = jsonObject.getDouble("start_pile_no"); + double startPileNo = jsonObject.getDouble("start_pile_no")>jsonObject.getDouble("end_pile_no")? jsonObject.getDouble("end_pile_no"):jsonObject.getDouble("start_pile_no"); String stakeMark = formatNumber(startPileNo); jsonObject.put("stakeMark", stakeMark);// String link_lng_lats = jsonObject.getString("link_lng_lats");