From 3e7245f7ecc38ee40ba91c85599103f2edbd6754 Mon Sep 17 00:00:00 2001 From: Guoqs <123@jsowell.com> Date: Thu, 4 Dec 2025 16:15:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jsowell/web/controller/pile/PileStationInfoController.java | 1 + 1 file changed, 1 insertion(+) 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 66f2ab44a..11f2f3618 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 @@ -251,6 +251,7 @@ public class PileStationInfoController extends BaseController { @Log(title = "删除站点互联互通配置", businessType = BusinessType.DELETE) @PostMapping("/deleteThirdPartyStationRelation") public AjaxResult deleteRelation(@RequestBody ThirdPartyStationRelationDTO dto) { + logger.info("删除站点互联互通配置 param:{}", JSON.toJSONString(dto)); return toAjax(thirdPartyStationRelationService.deleteThirdPartyStationRelation(dto.getId())); }