| | |
| | | return AjaxResult.success(statisticEleService.getSummary(dimension, startTime, endTime)); |
| | | } |
| | | |
| | | @GetMapping("/analytics") |
| | | @Operation(summary = "能耗数据-综合分析") |
| | | public AjaxResult analytics( |
| | | @RequestParam(defaultValue = "day") String dimension, |
| | | @RequestParam String startTime, |
| | | @RequestParam String endTime, |
| | | @RequestParam(required = false) String trendGranularity) { |
| | | return AjaxResult.success(statisticEleService.getAnalytics(dimension, startTime, endTime, trendGranularity)); |
| | | } |
| | | |
| | | @GetMapping("/yesterday") |
| | | @Operation(summary = "昨日用电量汇总") |
| | | public AjaxResult yesterday() { |