远控查询修改

This commit is contained in:
2026-01-29 14:06:21 +08:00
parent 0c4b8b8ca9
commit 292a7c7376

View File

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