From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngPopulationServiceImpl.java | 114 ++++++++++++++++++++++++++++---------------------------- 1 files changed, 57 insertions(+), 57 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 df919f7..80c12a7 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 @@ -721,14 +721,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -736,14 +736,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -751,7 +751,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -1042,14 +1042,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -1057,14 +1057,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -1072,7 +1072,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -1370,14 +1370,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -1385,14 +1385,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -1400,7 +1400,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -1698,14 +1698,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -1713,14 +1713,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -1728,7 +1728,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -2026,14 +2026,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -2041,14 +2041,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -2056,7 +2056,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -2355,14 +2355,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -2370,14 +2370,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -2385,7 +2385,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -2684,14 +2684,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -2699,14 +2699,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -2714,7 +2714,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -3011,14 +3011,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -3026,14 +3026,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -3041,7 +3041,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -3338,14 +3338,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -3353,14 +3353,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -3368,7 +3368,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -3665,14 +3665,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -3680,14 +3680,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -3695,7 +3695,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -3997,14 +3997,14 @@ Integer nub = 1; // 查询所有人口数据放入HashMap中 - List<ComMngPopulationDO> populationList = this.baseMapper.selectList(null); + List<ComMngPopulationDO> populationList = this.baseMapper.selectList(new QueryWrapper<ComMngPopulationDO>().lambda().eq(ComMngPopulationDO::getActId,communityId)); HashMap<String, Object> populationMap = new HashMap<>(); populationList.forEach(population -> { String key = population.getCardNo(); populationMap.put(key, population); }); // 查询所有房屋信息放入到HashMap中 - List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(null); + List<ComMngPopulationHouseDO> houseLists = comMngPopulationHouseDAO.selectList(new QueryWrapper<ComMngPopulationHouseDO>().lambda().eq(ComMngPopulationHouseDO::getCommunityId,communityId)); HashMap<String, Object> houseMap = new HashMap<>(); houseLists.forEach(house -> { String key = house.getCommunityId() + house.getVillageId() + house.getFloor() + house.getUnitNo() @@ -4012,14 +4012,14 @@ houseMap.put(key, house); }); - List<ComMngVillageDO> villageList = comActVillageDAO.selectList(null); + List<ComMngVillageDO> villageList = comActVillageDAO.selectList(new QueryWrapper<ComMngVillageDO>().lambda().eq(ComMngVillageDO::getCommunityId,communityId)); HashMap<String, Object> villageMap = new HashMap<>(); villageList.forEach(village -> { String key = village.getCommunityId() + village.getAlley() + village.getHouseNum(); villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -4027,7 +4027,7 @@ }); List<ComMngPopulationCommunityTagsDO> populationCommunityLists = - comMngPopulationCommunityTagsDAO.selectList(null); + comMngPopulationCommunityTagsDAO.selectList(new QueryWrapper<ComMngPopulationCommunityTagsDO>().lambda().eq(ComMngPopulationCommunityTagsDO::getCommunityId,communityId)); HashMap<String, Object> populationCommunityMap = new HashMap<>(); populationCommunityLists.forEach(populationCommunity -> { String key = populationCommunity.getPopulationId() + populationCommunity.getCommunityId() + ""; @@ -4346,7 +4346,7 @@ villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; @@ -4674,7 +4674,7 @@ villageMap.put(key, village); }); - List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectList(null); + List<ComMngPopulationHouseUserDO> houseUserLists = comMngPopulationHouseUserDAO.selectListIndex(communityId); HashMap<String, Object> houseUserMap = new HashMap<>(); houseUserLists.forEach(houseUser -> { String key = houseUser.getPopulId() + houseUser.getHouseId() + ""; -- Gitblit v1.7.1