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 b2180a5..5a9e8b3 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 @@ -63,8 +63,8 @@ public class StationRemoteController { @PostMapping("search") @ApiOperation(value = "查询远控电站信息") - public DataResult search(@RequestBody Integer stationId) { - StationRemoteControl stationRemoteControl=stationRemoteControlService.search(stationId); + public DataResult search(@RequestBody StationRemoteControlPageVo vo) { + StationRemoteControl stationRemoteControl=stationRemoteControlService.search(vo.getStationId()); return DataResult.success(stationRemoteControl); }