Skip to content

Commit

Permalink
更新文档
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Jun 4, 2015
1 parent 8f34b1f commit 1be27ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

##通用Mapper2.x

[Mapper2.x版本](http://git.oschina.net/free/Mapper/tree/Mapper2.x) 是2.x版本,目前最新的3.x版本改动很大,如果正在使用2.x版本,可以去看2.x版本的文档。
目前最新的3.x版本改动很大,如果正在使用2.x版本,可以去看2.x版本的文档:[Mapper2.x版本首页](http://git.oschina.net/free/Mapper/tree/Mapper2.x)

##通用Mapper3

Expand Down
8 changes: 4 additions & 4 deletions wiki/mapper3/5.Mappers.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Mapper3接口有两种形式,一种是提供了一个方法的接口。还有
接口:`BaseMapper`<br>
方法:继承了base组合接口中的4个组合接口,包含完整的CRUD方法<br><br>

###Example方法
##Example方法

接口:`SelectByExampleMapper`<br>
方法:`List<T> selectByExample(Object example);`<br>
Expand All @@ -101,7 +101,7 @@ Mapper3接口有两种形式,一种是提供了一个方法的接口。还有
接口:`ExampleMapper`<br>
方法:包含上面Example中的5个方法<br><br>

###RowBounds
##RowBounds

默认为<b>内存分页</b>,可以配合[PageHelper](http://git.oschina.net/free/Mybatis_PageHelper)实现物理分页

Expand All @@ -118,7 +118,7 @@ Mapper3接口有两种形式,一种是提供了一个方法的接口。还有
接口:`RowBoundsMapper`<br>
方法:包含上面RowBounds中的2个方法<br><br>

###special特殊接口
##special特殊接口

这些接口针对部分数据库设计,不是所有数据库都支持

Expand All @@ -130,7 +130,7 @@ Mapper3接口有两种形式,一种是提供了一个方法的接口。还有
方法:`int InsertUseGeneratedKeysMapper(T record);`<br>
说明:插入数据,限制为实体包含`id`属性并且必须为自增列,实体配置的主键策略无效<br><br>

###MySQL专用
##MySQL专用

接口:`MySqlMapper`<br>
继承方法:`int insertList(List<T> recordList);`<br>
Expand Down

0 comments on commit 1be27ed

Please sign in to comment.