| | |
| | | } |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * 报到单位统计-顶部数据 |
| | | * @param communityId |
| | | * @param belongTo |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R unitStatisticsTop(Long communityId, String belongTo) { |
| | | return R.ok(this.baseMapper.unitStatisticsTop(communityId, belongTo)); |
| | | } |
| | | |
| | | /** |
| | | * 报到单位统计 |
| | | * @param commonDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R unitStatistics(PagePbCheckUnitCommonDto commonDto) { |
| | | return R.ok(this.baseMapper.unitStatistics(commonDto, new Page(commonDto.getPageNum(), commonDto.getPageSize()))); |
| | | } |
| | | |
| | | /** |
| | | * 报到党员统计-顶部数据 |
| | | * @param communityId |
| | | * @param belongTo |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R pbStatisticsTop(Long communityId, String belongTo) { |
| | | return R.ok(this.baseMapper.pbStatisticsTop(communityId, belongTo)); |
| | | } |
| | | |
| | | /** |
| | | * 报到党员统计-按单位归属统计 |
| | | * @param commonDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R pbStatisticsBelong(PagePbCheckUnitCommonDto commonDto) { |
| | | return R.ok(this.baseMapper.pbStatisticsBelong(commonDto, new Page(commonDto.getPageNum(), commonDto.getPageSize()))); |
| | | } |
| | | |
| | | /** |
| | | * 报到党员统计-按单位统计 |
| | | * @param commonDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public R pbStatisticsUnit(PagePbCheckUnitCommonDto commonDto) { |
| | | return R.ok(this.baseMapper.pbStatisticsUnit(commonDto, new Page(commonDto.getPageNum(), commonDto.getPageSize()))); |
| | | } |
| | | } |