打印日志

This commit is contained in:
Guoqs
2025-12-04 16:15:12 +08:00
parent 386e022622
commit 3e7245f7ec

View File

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