From 315a41f098971af7c2c50cc5709ccaaae7358c3a Mon Sep 17 00:00:00 2001 From: yh <1844516659@qq.com> Date: Mon, 18 Jul 2022 08:30:49 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A3=9E=E6=BB=B4=E5=87=BA=E8=A1=8C=E7=BD=91?= =?UTF-8?q?=E7=BA=A6=E8=BD=A62022-api-passenger=20=E9=A2=84=E4=BC=B0?= =?UTF-8?q?=E4=BB=B7=E6=A0=BC=E6=8E=A5=E5=8F=A3=E8=AE=BE=E8=AE=A1=E9=AA=A8?= =?UTF-8?q?=E6=9E=B6=E7=BC=96=E5=86=992?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apipassenger/controller/ForecastPriceController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-passenger/src/main/java/com/mashibing/apipassenger/controller/ForecastPriceController.java b/api-passenger/src/main/java/com/mashibing/apipassenger/controller/ForecastPriceController.java index d10cf05..4d618f2 100644 --- a/api-passenger/src/main/java/com/mashibing/apipassenger/controller/ForecastPriceController.java +++ b/api-passenger/src/main/java/com/mashibing/apipassenger/controller/ForecastPriceController.java @@ -22,7 +22,7 @@ public class ForecastPriceController { String destLongitude = forecastPriceDTO.getDestLongitude(); String destLatitude = forecastPriceDTO.getDestLatitude(); - return priceService.forecastPrice(depLongitude,destLatitude,destLongitude,destLongitude); + return priceService.forecastPrice(depLongitude,depLatitude,destLongitude,destLatitude); } }