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