Skip to content

Commit 1be27ed

Browse files
committed
更新文档
1 parent 8f34b1f commit 1be27ed

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
##通用Mapper2.x
1414

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

1717
##通用Mapper3
1818

wiki/mapper3/5.Mappers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Mapper3接口有两种形式,一种是提供了一个方法的接口。还有
7474
接口:`BaseMapper`<br>
7575
方法:继承了base组合接口中的4个组合接口,包含完整的CRUD方法<br><br>
7676

77-
###Example方法
77+
##Example方法
7878

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

104-
###RowBounds
104+
##RowBounds
105105

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

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

121-
###special特殊接口
121+
##special特殊接口
122122

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

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

133-
###MySQL专用
133+
##MySQL专用
134134

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

0 commit comments

Comments
 (0)