| | |
| | | return success(result); |
| | | } |
| | | |
| | | @GetMapping("/power-maxdemand/page") |
| | | @PostMapping("/power-maxdemand/page") |
| | | @Operation(summary = "负荷移植-最大需量发生记录分页") |
| | | public CommonResult<PageResult<PowerMaxDemandMainDTO>> getPowerMaxDemandMainPage(@Validated PowerMaxDemandMainPageReqVO reqVO) { |
| | | public CommonResult<PageResult<PowerMaxDemandMainDTO>> getPowerMaxDemandMainPage(@RequestBody PowerMaxDemandMainPageReqVO reqVO) { |
| | | PageResult<PowerMaxdemandMainEntity> page = powerMaxDemandMainService.page(reqVO); |
| | | PageResult<PowerMaxDemandMainDTO> result = BeanUtils.toBean(page, PowerMaxDemandMainDTO.class); |
| | | /*List<String> parentIds = result.getList() |