From 0455d60146f6a988904f8a8a07d8250b227c8a5c Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期四, 01 七月 2021 13:48:22 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 60 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java index e565445..8d3a9bf 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java @@ -19,6 +19,7 @@ import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDetailDTO; import com.panzhihua.common.model.dtos.grid.PageComMngPopulationDTO; import com.panzhihua.common.model.dtos.grid.PagePopulationListDTO; +import com.panzhihua.common.model.dtos.grid.admin.ComMngPopulationExportDTO; import com.panzhihua.common.model.dtos.grid.admin.ComMngPopulationListDTO; import com.panzhihua.common.model.dtos.user.PageInputUserDTO; import com.panzhihua.common.model.helper.AESUtil; @@ -1388,11 +1389,23 @@ comActPopulationScreenVO.setAgeGroup(ageList); } + /** + * 获取社区网格 + * + * @param communityId 社区id + * @return 网格数据 + */ @Override public R getScreenGirds(Long communityId) { return R.ok(this.baseMapper.getEventScreenGridData(communityId)); } + /** + * 事件大屏查询事件详情 + * + * @param eventDetailDTO 请求参数 + * @return 事件详情 + */ @Override public R getScreenEventDetail(BigScreenEventDetailDTO eventDetailDTO) { EventNewStatisticsVO statisticsVO = new EventNewStatisticsVO(); @@ -1475,6 +1488,12 @@ return R.ok(statisticsVO); } + /** + * 获取人口数据信息 + * + * @param populationListDTO 请求参数 + * @return 人口数据 + */ @Override public R pagePopulationListApp(PagePopulationListDTO populationListDTO){ IPage<PopulationListVO> pagePopulationList = this.baseMapper.pagePopulationListApp(new Page(populationListDTO.getPageNum(),populationListDTO.getPageSize()),populationListDTO); @@ -1486,6 +1505,12 @@ return R.ok(pagePopulationList); } + /** + * 根据人口id获取人口详情 + * + * @param populationId 人口id + * @return 人口详情 + */ @Override public R getPopulationDetailApp(Long populationId){ PopulationDetailVO detail = this.baseMapper.getPopulationDetailApp(populationId); @@ -1501,6 +1526,11 @@ return R.ok(detail); } + /** + * 修复人口加密问题 + * + * @return 修复结果 + */ @Override @Transactional(rollbackFor = Exception.class) public R getPopulationRepairByApp(){ @@ -1518,6 +1548,11 @@ return R.ok(); } + /** + * 综治后台-居民列表 + * @param populationListDTO 请求参数 + * @return 居民列表 + */ @Override public R getGridPopulationAdminList(ComMngPopulationListDTO populationListDTO){ IPage<ComMngPopulationListVO> populationListIPage = this.baseMapper.getGridPopulationAdminList(new Page(populationListDTO.getPageNum(),populationListDTO.getPageSize()),populationListDTO); @@ -1541,6 +1576,11 @@ return R.ok(populationListIPage); } + /** + * 综治后台-删除居民 + * @param ids 居民id集合 + * @return 删除结果 + */ @Override public R delGridPopulationAdmin(List<Long> ids){ Integer count = this.baseMapper.getPopulationVisitingCount(ids); @@ -1575,6 +1615,11 @@ return R.ok(); } + /** + * 查询平台人口列表 + * @param populationDTO 请求参数 + * @return 人口列表 + */ @Override public R getBuildingHousePopulationList(PageComMngPopulationDTO populationDTO){ @@ -1592,9 +1637,24 @@ return R.ok(populationVOIPage); } + /** + * 综治后台-居民标签栏统计 + * @return 居民统计 + */ @Override public R getGridPopulationStatistics(Long communityId){ return R.ok(this.baseMapper.getGridPopulationStatistics(communityId)); } + /** + * 综治后台-居民导出 + * @param populationExportDTO 请求参数 + * @return 导出结果 + */ + @Override + public R getGridPopulationExport(ComMngPopulationExportDTO populationExportDTO){ + + return R.ok(); + } + } \ No newline at end of file -- Gitblit v1.7.1