From c9749a181604bdf8f348b8a255718be4a97a480f Mon Sep 17 00:00:00 2001 From: Lemon Date: Wed, 8 Jul 2026 10:19:23 +0800 Subject: [PATCH] =?UTF-8?q?bugfix=20=E4=BF=AE=E5=A4=8D=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E7=AB=99=E7=82=B9=E5=81=9C=E8=BD=A6=E9=85=8D=E7=BD=AE=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pile/PileStationInfoController.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/jsowell-admin/src/main/java/com/jsowell/web/controller/pile/PileStationInfoController.java b/jsowell-admin/src/main/java/com/jsowell/web/controller/pile/PileStationInfoController.java index dd1bb259d..bf9d6edbb 100644 --- a/jsowell-admin/src/main/java/com/jsowell/web/controller/pile/PileStationInfoController.java +++ b/jsowell-admin/src/main/java/com/jsowell/web/controller/pile/PileStationInfoController.java @@ -422,6 +422,24 @@ public class PileStationInfoController extends BaseController { return response; } + /** + * 获取停车平台配置信息 + * + * @return + */ + @GetMapping("/getParkingConfigByStationId/{stationId}") + public RestApiResponse getParkingConfigByStationId(@PathVariable("stationId") String stationId) { + RestApiResponse response = null; + try { + ThirdpartyParkingConfig thirdpartyParkingConfig = parkingConfigService.selectByStationId(stationId); + response = new RestApiResponse<>(thirdpartyParkingConfig); + } catch (Exception e) { + logger.error("获取停车平台配置信息 error,", e); + response = new RestApiResponse<>(e); + } + logger.info("获取停车平台配置信息 result:{}", response); + return response; + } // public AjaxResult checkStationAmap