| | |
| | | @ApiOperation(value = "社区共建项目列表", response = NewFightCommunityConstructionDTO.class) |
| | | @GetMapping("/getNewFightCommunityList") |
| | | public R getNewFightCommunityList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize) |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "communityId", required = false) String communityId) |
| | | { |
| | | if(StringUtils.isEmpty(communityId)) |
| | | { |
| | | communityId=getCommunityId()+""; |
| | | } |
| | | return newStriveForFeign.getNewFightCommunityList(pageNum,pageSize, |
| | | getCommunityId()+"",null); |
| | | communityId,null); |
| | | } |
| | | |
| | | @ApiOperation(value = "社区共建项目详情", response = NewFightCommunityConstructionDTO.class) |