| | |
| | | * 事件占比统计饼图 |
| | | * */ |
| | | @GetMapping("/indexData/event") |
| | | R eventIndexData(@RequestParam Integer type); |
| | | R eventIndexData(@RequestParam("type") Integer type); |
| | | } |
| | |
| | | |
| | | @GetMapping("/indexData/event") |
| | | @ApiOperation(value = "事件统计饼图",response = EventRateVO.class) |
| | | public R eventIndexData(@RequestParam @ApiParam("1受理级别2专家级别3时间类型分类") Integer type){ |
| | | public R eventIndexData(@RequestParam("type") @ApiParam("1受理级别2专家级别3时间类型分类") Integer type){ |
| | | return communityService.eventIndexData(type); |
| | | } |
| | | } |
| | |
| | | return R.ok(commediateTypeService.updateById(comMediateType)); |
| | | } |
| | | |
| | | /** |
| | | * 大屏接口-事件统计 |
| | | * */ |
| | | @PostMapping("/indexDate") |
| | | public R indexDate(@RequestBody IndexDateDTO indexDateDTO){ |
| | | return commediateTypeService.indexDate(indexDateDTO); |
| | | } |
| | | } |