File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/mybatis/dynamic/sql/util/mybatis3 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public interface CommonSelectMapper {
5050 /**
5151 * Select a single row as a Map of values. The row may have any number of columns.
5252 * The Map key will be the column name as returned from the
53- * database (may be aliased if an alias is specified in the select statement). Map entries will be
53+ * database (the key will be aliased if an alias is specified in the select statement). Map entries will be
5454 * of data types determined by the JDBC driver. MyBatis will call ResultSet.getObject() to retrieve
5555 * values from the ResultSet. Reference your JDBC driver documentation to learn about type mappings
5656 * for your specific database.
@@ -85,7 +85,7 @@ public interface CommonSelectMapper {
8585 * Select any number of rows and return a List of Maps containing row values (one Map for each row returned).
8686 * The rows may have any number of columns.
8787 * The Map key will be the column name as returned from the
88- * database (may be aliased if an alias is specified in the select statement). Map entries will be
88+ * database (the key will be aliased if an alias is specified in the select statement). Map entries will be
8989 * of data types determined by the JDBC driver. MyBatis will call ResultSet.getObject() to retrieve
9090 * values from the ResultSet. Reference your JDBC driver documentation to learn about type mappings
9191 * for your specific database.
You can’t perform that action at this time.
0 commit comments