old mode 100644
new mode 100755
| | |
| | | * @throws DAOException |
| | | */ |
| | | @Override |
| | | public void updateRoomAttrInfoInstance(Map info) throws DAOException { |
| | | public int updateRoomAttrInfoInstance(Map info) throws DAOException { |
| | | logger.debug("修改小区房屋属性信息Instance 入参 info : {}", info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.update("roomAttrServiceDaoImpl.updateRoomAttrInfoInstance", info); |
| | |
| | | if (saveFlag < 1) { |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改小区房屋属性信息Instance数据失败:" + JSONObject.toJSONString(info)); |
| | | } |
| | | return saveFlag; |
| | | } |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 保存小区房屋属性信息 到 instance |
| | | * |
| | | * @param info bId 信息 |
| | | * @throws DAOException |
| | | */ |
| | | @Override |
| | | public int saveRoomAttr(Map info) throws DAOException { |
| | | logger.debug("保存小区房屋属性saveRoomAttr入参 info : {}", info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.insert("roomAttrServiceDaoImpl.saveRoomAttr", info); |
| | | |
| | | return saveFlag; |
| | | } |
| | | |
| | | } |