From e7f03acfa5ee4ad4fd6d1ee9e9ae9a5655488f6d Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期二, 09 十一月 2021 17:04:46 +0800 Subject: [PATCH] 1109修改 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java | 31 +++++++++++++++---------------- 1 files changed, 15 insertions(+), 16 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 f95b8cf..c3144e9 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 @@ -6310,23 +6310,14 @@ /** * 批量删除实有人口 * - * @param Ids - * @return + * @param ids 实有人口id集合 + * @return 删除结果 */ @Override @Transactional(rollbackFor = Exception.class) - public R deletePopulations(List<Long> Ids) { - if (!Ids.isEmpty()) { - Ids.forEach(id -> { - // 清除用户房屋居住信息 - comMngPopulationHouseUserDAO.deletePopulationHouseByUserId(id); - }); - } - int delete = populationDAO.deleteBatchIds(Ids); - if (delete > 0) { - return R.ok(); - } - return R.fail(); + public R deletePopulations(List<Long> ids, Long communityId) { + comMngPopulationCommunityTagsDAO.deletePopulationRelation(ids,communityId); + return R.ok(); } /** @@ -7349,8 +7340,11 @@ statisticsVO.setDangerLevel("0"); statisticsVO.setMajor(false); statisticsVO.setUrgent(false); - if (statisticsVO.getEventDealStatus().equals(2)) { - statisticsVO.setEventDealStatus(4); + if (statisticsVO.getEventDealStatus().equals(2)||statisticsVO.getEventDealStatus().equals(1)) { + statisticsVO.setEventDealStatus(1); + } + else { + statisticsVO.setEventDealStatus(2); } List<EventResourceVO> picList = new ArrayList<>(); String[] pics = statisticsVO.getPhotoPathList().split(","); @@ -7697,6 +7691,11 @@ new Page(villagePopulationDTO.getPageNum(), villagePopulationDTO.getPageSize()), villagePopulationDTO)); } + @Override + public R specialInputUserExport(PageInputUserDTO PageInputUserDTO) { + return R.ok(this.comMngPopulationDAO.specialInputUserExport(PageInputUserDTO)); + } + private void setMistake(ComMngPopulationMistakeExcelVO mvo, ComMngPopulationServeExcelVO vo) { mvo.setPoliticalOutlook(PopulPoliticalOutlookEnum.getCnDescByName(vo.getPoliticalOutlook())); mvo.setIsRent(PopulHouseUseEnum.getCnDescByName(vo.getIsRent())); -- Gitblit v1.7.1