| | |
| | | return bigScreenStatisticsService.getScreenPopularMerchants(pagePopularMerchantDTO); |
| | | } |
| | | |
| | | /** |
| | | * 首页二级页面-居民活动 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("/index/residentAct") |
| | | public R indexResidentAct(@RequestParam("communityId") Long communityId) { |
| | | return bigScreenStatisticsService.indexResidentAct(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 首页二级页面-居民活动展示列表 |
| | | * @param pageBaseDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/index/residentActList") |
| | | public R indexResidentActList(@RequestBody PageBaseDTO pageBaseDTO) { |
| | | return bigScreenStatisticsService.indexResidentActList(pageBaseDTO); |
| | | } |
| | | |
| | | /** |
| | | * 首页二级页面-志愿者活动 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("/index/volunteerAct") |
| | | public R indexVolunteerAct(@RequestParam("communityId") Long communityId) { |
| | | return bigScreenStatisticsService.indexVolunteerAct(communityId); |
| | | } |
| | | |
| | | /** |
| | | * 首页二级页面-志愿者活动展示列表 |
| | | * @param pageBaseDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/index/volunteerActList") |
| | | public R indexVolunteerActList(@RequestBody PageBaseDTO pageBaseDTO) { |
| | | return bigScreenStatisticsService.indexVolunteerActList(pageBaseDTO); |
| | | } |
| | | } |