| | |
| | | return Integer.parseInt(businessOwnerInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryOwnersByRoom(Map info) throws DAOException { |
| | | logger.debug("queryOwnersByRoom 入参 info : {}", info); |
| | | |
| | | List<Map> businessOwnerInfos = sqlSessionTemplate.selectList("ownerServiceDaoImpl.queryOwnersByRoom", info); |
| | | |
| | | return businessOwnerInfos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryOwnersByParkingSpace(Map info) throws DAOException { |
| | | logger.debug("queryOwnersByParkingSpace 入参 info : {}", info); |
| | | |
| | | List<Map> businessOwnerInfos = sqlSessionTemplate.selectList("ownerServiceDaoImpl.queryOwnersByParkingSpace", info); |
| | | |
| | | return businessOwnerInfos; } |
| | | |
| | | |
| | | } |