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");