| | |
| | | public ResultMessage getHeatMap(@RequestParam @ApiParam(value = "organizationId",name = "组织id") Integer id, |
| | | @RequestParam @ApiParam(value = "startTime",name = "开始时间") String startTime, |
| | | @RequestParam @ApiParam(value = "type",name= "因子类型") String type, |
| | | @RequestParam @ApiParam(value = "form",name= "时间类型") String form){ |
| | | List<HeatMapDTO> heatMapData = dataDisplayService.getHeatMapDataV2(id, startTime, type, form); |
| | | @RequestParam @ApiParam(value = "form",name= "时间类型") String form, |
| | | @RequestParam @ApiParam(value = "monitorId",name= "站点id") Integer monitorId){ |
| | | List<HeatMapDTO> heatMapData = dataDisplayService.getHeatMapDataV2(id, startTime, type, form,monitorId); |
| | | return ResultMessage.ok(ObjectUtils.isEmpty(heatMapData)?"0":heatMapData); |
| | | } |
| | | @GetMapping("queryTime") |