From 2fcf3c67e95c1b7c82a1c8ba1cf308ffed0a47b1 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期一, 26 四月 2021 14:41:07 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 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 e86f969..ed3ef97 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 @@ -10,12 +10,14 @@ import com.panzhihua.common.exceptions.ServiceException; import com.panzhihua.common.model.dtos.community.ComMngPopulationDTO; import com.panzhihua.common.model.dtos.community.ComMngPopulationTagDTO; +import com.panzhihua.common.model.dtos.user.PageInputUserDTO; import com.panzhihua.common.model.helper.AESUtil; import com.panzhihua.common.model.dtos.community.PageComActDTO; import com.panzhihua.common.model.helper.AESUtil; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.*; import com.panzhihua.common.model.vos.user.ComHouseMemberVo; +import com.panzhihua.common.model.vos.user.InputUserInfoVO; import com.panzhihua.service_community.dao.ComActDAO; import com.panzhihua.service_community.dao.ComActVillageDAO; import com.panzhihua.service_community.dao.ComMngPopulationDAO; @@ -424,4 +426,31 @@ this.updateById(populationDO); return R.ok(); } + + @Override + public R specialInputUser(PageInputUserDTO pageInputUserDTO){ + IPage<InputUserInfoVO> iPage = populationDAO.specialInputUser(new Page<>(pageInputUserDTO.getPageNum() + ,pageInputUserDTO.getPageSize()), pageInputUserDTO); + return R.ok(iPage); + } + + /** + * 删除特殊群体人员 + * @param id 特殊群体id + * @return 删除结果 + */ + @Override + public R deleteSpecialInputUser(Long id){ + //查询特殊群体人员 + ComMngPopulationDO populationDO = this.baseMapper.selectById(id); + if(populationDO == null){ + return R.fail("未查询到该记录"); + } + populationDO.setLabel(null); + if(this.baseMapper.updateById(populationDO) > 0){ + return R.ok(); + }else{ + return R.fail(); + } + } } -- Gitblit v1.7.1