From 54ad966d0b142c97fc659263b51d1ea5d7b5c7c6 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期五, 28 五月 2021 16:17:08 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java | 36 +++++++++++++++++++++++++++++++++--- 1 files changed, 33 insertions(+), 3 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java index 8415856..650d0e7 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngPopulationService.java @@ -1,12 +1,14 @@ package com.panzhihua.service_community.service; import com.panzhihua.common.model.dtos.community.ComMngPopulationDTO; +import com.panzhihua.common.model.dtos.community.ComMngPopulationEditDTO; import com.panzhihua.common.model.dtos.community.ComMngPopulationTagDTO; import com.panzhihua.common.model.dtos.user.PageInputUserDTO; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.ComMngPopulationServeExcelVO; import com.panzhihua.common.model.vos.community.ComMngPopulationVO; import com.panzhihua.common.model.vos.community.EditComMngPopulationVO; +import com.panzhihua.common.model.vos.user.UserElectronicFileVO; import java.util.List; @@ -62,7 +64,7 @@ * @param communityId * @return */ - R listSavePopulation(List<ComMngPopulationServeExcelVO> list, Long communityId); + R listSavePopulation(List<ComMngPopulationServeExcelVO> list, Long communityId) throws Exception; /** * 确认导入实有人口(有则更新,无则新建) @@ -102,11 +104,11 @@ /** * 编辑实有人口 - * @param editComMngPopulationVO + * @param populationEditDTO * @param communityId * @return */ - R editPopulation(EditComMngPopulationVO editComMngPopulationVO, Long communityId); + R editPopulation(ComMngPopulationEditDTO populationEditDTO, Long communityId) throws Exception; /** * 分页查询特殊群体 @@ -114,4 +116,32 @@ * @return 特殊群体列表 */ R specialInputUser(PageInputUserDTO pageInputUserDTO); + + /** + * 删除特殊群体人员 + * @param id 特殊群体id + * @return 删除结果 + */ + R deleteSpecialInputUser(Long id); + + /** + * 查询实有人口电子档信息 + * @param populationId 实有人口id + * @return 实有人口电子档信息 + */ + R electronicArchivesPopulation(Long populationId); + + /** + * 编辑电子档案 + * @param userElectronicFileVO + * @return + */ + R editUserElectronicFile(UserElectronicFileVO userElectronicFileVO); + + /** + * 实有人口统计 + * @param communityId 社区id + * @return 统计结果 + */ + R getPopulationTotalByAdmin(Long communityId); } -- Gitblit v1.7.1