| | |
| | | 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; |
| | | } |
| | | |
| | | /** |