old mode 100644
new mode 100755
| | |
| | | return Integer.parseInt(businessCommunityInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getStoreCommunitys(Map info) { |
| | | logger.debug("查询小区信息 入参 info : {}", info); |
| | | |
| | | List<Map> businessCommunityInfos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getStoreCommunitys", info); |
| | | |
| | | return businessCommunityInfos; |
| | | } |
| | | |
| | | @Override |
| | | public int saveCommunityAttr(Map info) { |
| | | logger.debug("小区成员加入Instance 入参 info : {}", info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityAttr", info); |
| | | |
| | | return saveFlag; |
| | | } |
| | | |
| | | |
| | | } |