chengf
2025-12-10 ee89a5cfa50980f1f2f2fa84bb69741b161670b5
service-community/src/main/java/com/java110/community/dao/impl/CommunityServiceDaoImpl.java
@@ -446,9 +446,15 @@
    public List<Map> getCommunityInfoNew(Map info) throws DAOException {
        logger.debug("查询小区信息 入参 info : {}", info);
        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityInfoNew", info);
        if (info.get("communityId") != null && !info.get("communityId").equals("")){
            List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityInfoNewMessage", info);
            return infos;
        }
        else{
            List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityInfoNew", info);
            return infos;
        }
        return infos;
    }
    /**