old mode 100644
new mode 100755
| | |
| | | // 查询business_user 数据是否已经存在 |
| | | logger.debug("保存停车位信息 入参 businessParkingSpaceInfo : {}", businessParkingSpaceInfo); |
| | | int saveFlag = sqlSessionTemplate.insert("parkingSpaceServiceDaoImpl.saveBusinessParkingSpaceInfo", businessParkingSpaceInfo); |
| | | |
| | | if (saveFlag < 1) { |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存停车位数据失败:" + JSONObject.toJSONString(businessParkingSpaceInfo)); |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查询停车位信息 |
| | |
| | | */ |
| | | @Override |
| | | public List<Map> getBusinessParkingSpaceInfo(Map info) throws DAOException { |
| | | |
| | | logger.debug("查询停车位信息 入参 info : {}", info); |
| | | |
| | | List<Map> businessParkingSpaceInfos = sqlSessionTemplate.selectList("parkingSpaceServiceDaoImpl.getBusinessParkingSpaceInfo", info); |
| | | |
| | | return businessParkingSpaceInfos; |
| | | } |
| | | |
| | |
| | | @Override |
| | | public void saveParkingSpaceInfoInstance(Map info) throws DAOException { |
| | | logger.debug("保存停车位信息Instance 入参 info : {}", info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.insert("parkingSpaceServiceDaoImpl.saveParkingSpaceInfoInstance", info); |
| | | |
| | | if (saveFlag < 1) { |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存停车位信息Instance数据失败:" + JSONObject.toJSONString(info)); |
| | | } |
| | |
| | | @Override |
| | | public List<Map> getParkingSpaceInfo(Map info) throws DAOException { |
| | | logger.debug("查询停车位信息 入参 info : {}", info); |
| | | |
| | | List<Map> businessParkingSpaceInfos = sqlSessionTemplate.selectList("parkingSpaceServiceDaoImpl.getParkingSpaceInfo", info); |
| | | |
| | | return businessParkingSpaceInfos; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 修改停车位信息 |
| | |
| | | @Override |
| | | public void updateParkingSpaceInfoInstance(Map info) throws DAOException { |
| | | logger.debug("修改停车位信息Instance 入参 info : {}", info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.update("parkingSpaceServiceDaoImpl.updateParkingSpaceInfoInstance", info); |
| | | |
| | | if (saveFlag < 1) { |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改停车位信息Instance数据失败:" + JSONObject.toJSONString(info)); |
| | | } |
| | |
| | | @Override |
| | | public int queryParkingSpacesCount(Map info) { |
| | | logger.debug("查询停车位数据 入参 info : {}", info); |
| | | |
| | | List<Map> businessParkingSpaceInfos = sqlSessionTemplate.selectList("parkingSpaceServiceDaoImpl.queryParkingSpacesCount", info); |
| | | if (businessParkingSpaceInfos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(businessParkingSpaceInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public int saveParkingSpace(Map info) { |
| | | logger.debug("保存车位信息Instance 入参 info : {}", info); |
| | | int saveFlag = sqlSessionTemplate.insert("parkingSpaceServiceDaoImpl.saveParkingSpace", info); |
| | | if (saveFlag < 1) { |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存车位信息Instance数据失败:" + JSONObject.toJSONString(info)); |
| | | } |
| | | return saveFlag; |
| | | } |
| | | } |