| | |
| | | |
| | | @ApiOperation(value = "查询社区动态分类列表", response = ComActDynTypeVO.class) |
| | | @PostMapping("/list") |
| | | public R list(@RequestBody PageComActDynTypeDTO comActDynTypeDTO) { |
| | | Long communityId = this.getCommunityId(); |
| | | comActDynTypeDTO.setCommunityId(communityId+""); |
| | | public R list(@RequestBody PageComActDynTypeDTO comActDynTypeDTO) |
| | | { |
| | | if(StringUtils.isEmpty(comActDynTypeDTO.getCommunityId())) |
| | | { |
| | | Long communityId = this.getCommunityId(); |
| | | comActDynTypeDTO.setCommunityId(communityId+""); |
| | | } |
| | | return communityService.getDynTypeListByAdmin(comActDynTypeDTO); |
| | | } |
| | | |