From 9dea50103f016e1618815081662a15abf4f57d29 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 29 Jan 2026 08:54:07 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ho/business/controller/StationRemoteController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business-service/src/main/java/com/ho/business/controller/StationRemoteController.java b/business-service/src/main/java/com/ho/business/controller/StationRemoteController.java index db63e83..dacd4ae 100644 --- a/business-service/src/main/java/com/ho/business/controller/StationRemoteController.java +++ b/business-service/src/main/java/com/ho/business/controller/StationRemoteController.java @@ -70,7 +70,7 @@ public class StationRemoteController { @PostMapping("pageList") @ApiOperation(value = "查询远控电站信息") - public DataResult> pageList(StationRemoteControlPageVo vo) { + public DataResult> pageList(@RequestBody StationRemoteControlPageVo vo) { PageResult page = stationRemoteControlService.selectPageList(vo); return DataResult.success(page); }