| | |
| | | |
| | | @PostMapping("/capacitor-his/page") |
| | | @Operation(summary = "功率因数-电容器投退历史(分页)") |
| | | public CommonResult<PageResult<PowerCapacitorHisDTO>> getPowerCapacitorHisPage(@RequestParam PowerCapacitorHisPageReqVO reqVO) { |
| | | public CommonResult<PageResult<PowerCapacitorHisDTO>> getPowerCapacitorHisPage(@RequestBody PowerCapacitorHisPageReqVO reqVO) { |
| | | if (StringUtils.isBlank(reqVO.getStatusId())) { |
| | | return error(GlobalErrorCodeConstants.BAD_REQUEST); |
| | | } |
| | |
| | | apiPointValueQueryDTO1.setEnd(new Date()); |
| | | apiPointValueQueryDTO1.setPointNo(pointNo); |
| | | Map<String, Object> maxV = dataPointApi.queryPointMaxValueRange(apiPointValueQueryDTO1); |
| | | Map<String, Object> minV = dataPointApi.queryPointMaxValueRange(apiPointValueQueryDTO1); |
| | | Map<String, Object> minV = dataPointApi.queryPointMinValueRange(apiPointValueQueryDTO1); |
| | | if (maxV != null && maxV.containsKey(pointNo)) { |
| | | powerHistoryDTO.setMax(new BigDecimal(maxV.get(pointNo).toString())); |
| | | } |