| | |
| | | return this.comActNeighborCircleService.orderAndSolve(editNeighborCircleAdminVO); |
| | | } |
| | | |
| | | /** |
| | | * 机关单位服务统计排行 |
| | | * @return |
| | | * */ |
| | | @GetMapping("/activityAnalysis") |
| | | public R institutionalUnitServiceAnalysis(@RequestParam(value = "year",required = false) Integer year,@RequestParam(value = "type",required = false) Integer type, |
| | | @RequestParam(value = "range",required = false)Integer range,@RequestParam(value = "communityId",required = false) Long communityId){ |
| | | return this.comActNeighborCircleService.institutionalUnitServiceAnalysis(year,type,range,communityId); |
| | | } |
| | | |
| | | /** |
| | | * 小程序服务统计 |
| | | * @param serviceStaticDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/serviceStatic") |
| | | public R serviceStatic(@RequestBody ServiceStaticDTO serviceStaticDTO){ |
| | | return this.comActNeighborCircleService.serviceStatic(serviceStaticDTO); |
| | | } |
| | | |
| | | /** |
| | | * 后台统计 |
| | | * @param serviceStaticDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/serviceStaticBackstage") |
| | | public R serviceStaticBackstage(@RequestBody ServiceStaticBackstageDTO serviceStaticDTO){ |
| | | return this.comActNeighborCircleService.serviceStaticBackstage(serviceStaticDTO); |
| | | } |
| | | |
| | | |
| | | } |