| | |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryCommunityUnitTree(Map info) { |
| | | logger.debug("查询queryCommunityUnitTree信息 入参 info : {}", JSONObject.toJSONString(info)); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryCommunityUnitTree", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryCommunityParkingTree(Map info) { |
| | | logger.debug("查询queryCommunityParkingTree信息 入参 info : {}", JSONObject.toJSONString(info)); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryCommunityParkingTree", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryCommunityRepairTree(Map info) { |
| | | logger.debug("查询queryCommunityRepairTree信息 入参 info : {}", JSONObject.toJSONString(info)); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryCommunityRepairTree", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryCommunityInspectionTree(Map info) { |
| | | logger.debug("查询queryCommunityInspectionTree信息 入参 info : {}", JSONObject.toJSONString(info)); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryCommunityInspectionTree", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisOwnerCarCount(Map info) { |
| | | logger.debug("查询车辆管理数据 入参 info : {}", info); |
| | | |
| | |
| | | |
| | | return businessOwnerCarInfos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisRoomCount(Map info) { |
| | | logger.debug("查询 queryHisRoomCount 入参 info : {}", info); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryHisRoomCount", info); |
| | | if (infos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(infos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryHisRooms(Map info) { |
| | | logger.debug("查询 queryHisRooms 入参 info : {}", info); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryHisRooms", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisFeeCount(Map info) { |
| | | logger.debug("查询queryHisFeeCount 入参 info : {}", info); |
| | | |
| | | List<Map> businessOwnerCarInfos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryHisFeeCount", info); |
| | | if (businessOwnerCarInfos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(businessOwnerCarInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryHisFees(Map info) { |
| | | logger.debug("查询 queryHisFees 入参 info : {}", info); |
| | | |
| | | List<Map> businessOwnerCarInfos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryHisFees", info); |
| | | |
| | | return businessOwnerCarInfos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHisFeeConfigCount(Map info) { |
| | | logger.debug("查询 queryHisFeeConfigCount 入参 info : {}", info); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryHisFeeConfigCount", info); |
| | | if (infos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(infos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryHisFeeConfigs(Map info) { |
| | | logger.debug("查询 queryHisFees 入参 info : {}", info); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("reportCommunityServiceDaoImpl.queryHisFeeConfigs", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | |
| | | } |