| | |
| | | return AjaxResult.success(homeService.energy(dto)); |
| | | } |
| | | |
| | | @GetMapping("/solidWaste/coreIndicators") |
| | | @ApiOperation("固废消纳量-核心指标") |
| | | public AjaxResult coreIndicators(productionStatisticsDto dto){ |
| | | return AjaxResult.success(homeService.coreIndicators(dto)); |
| | | } |
| | | |
| | | @GetMapping("/solidWaste/trends") |
| | | @ApiOperation("固废消纳量-固废消纳趋势") |
| | | public AjaxResult trends(productionStatisticsDto dto){ |
| | | return AjaxResult.success(homeService.trends(dto)); |
| | | } |
| | | |
| | | @GetMapping("/solidWaste/typeDistribution") |
| | | @ApiOperation("固废消纳量-固废类型分布") |
| | | public AjaxResult typeDistribution(productionStatisticsDto dto){ |
| | | return AjaxResult.success(homeService.typeDistribution(dto)); |
| | | } |
| | | |
| | | |
| | | } |