bug修改

This commit is contained in:
2026-01-29 08:54:07 +08:00
parent 93a15e497f
commit 9dea50103f

View File

@ -70,7 +70,7 @@ public class StationRemoteController {
@PostMapping("pageList") @PostMapping("pageList")
@ApiOperation(value = "查询远控电站信息") @ApiOperation(value = "查询远控电站信息")
public DataResult<PageResult<StationRemoteControl>> pageList(StationRemoteControlPageVo vo) { public DataResult<PageResult<StationRemoteControl>> pageList(@RequestBody StationRemoteControlPageVo vo) {
PageResult<StationRemoteControl> page = stationRemoteControlService.selectPageList(vo); PageResult<StationRemoteControl> page = stationRemoteControlService.selectPageList(vo);
return DataResult.success(page); return DataResult.success(page);
} }