diff --git a/pom.xml b/pom.xml
index 6c573b800895638975e8fa95337b19716ea78a51..17494539b6fbf0478e9b46aeaa02cf2b17c8de14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
org.teasoft
bee
- 1.17
+ 2.0-SNAPSHOT
jar
@@ -36,7 +36,7 @@
-
+
diff --git a/src/main/java/org/teasoft/bee/osql/BeeSql.java b/src/main/java/org/teasoft/bee/osql/BeeSql.java
index 7027b6bf146a5e480a8ec5b546367d88f7505ca9..a6d89c80199f57c7ff3136bb48255a8d3267cc77 100644
--- a/src/main/java/org/teasoft/bee/osql/BeeSql.java
+++ b/src/main/java/org/teasoft/bee/osql/BeeSql.java
@@ -39,17 +39,6 @@ public interface BeeSql {
*/
public List select(String sql,T entity );
-
- /**
- * According to SQL query more table data, data type is consistent with entity type.
- * @param sql SQL select statement
- * @param entity The entity corresponding to table and can not be null.
- * @return List can contain more than one entity.
- * @since 1.7
- */
- public List moreTableSelect(String sql,T entity );
-
-
/**
* Select some field.
* @param sql SQL select statement
@@ -75,14 +64,6 @@ public interface BeeSql {
*/
public List select(String sql);
- /**
- * Select and transform every record to Map.
- * @param sql SQL select statement
- * @return List, every element is a Map(transform from record).
- * @since 1.9
- */
- public List