| | |
| | | public R pageDynamic(@RequestBody ComActDynVO comActDynVO) { |
| | | LoginUserInfoVO loginUserInfo = this.getLoginUserInfoSureNoLogin(); |
| | | if (loginUserInfo != null) { |
| | | comActDynVO.setCommunityId(loginUserInfo.getCommunityId()); |
| | | comActDynVO.setCommunityId(loginUserInfo.getCommunityId()+""); |
| | | } |
| | | comActDynVO.setIsTopping(null); |
| | | comActDynVO.setStatus(1); |
| | |
| | | public R detailCommunity(@RequestParam("id") Long id) { |
| | | return communityService.detailCommunity(id); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取问题清单,需求清单,报道服务活动数量",response = DataCount.class) |
| | | @GetMapping("/dataCount") |
| | | public R dataCount(){ |
| | | return communityService.dataCount(); |
| | | } |
| | | } |