File tree 3 files changed +24
-4
lines changed
3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -86,11 +86,15 @@ Country代码:
86
86
87
87
##Maven坐标以及下载地址
88
88
89
- ###开发版2 .3.1-SNAPSHOT - 2015-04-07
89
+ ###最新版本2 .3.1 - 2015-04-13
90
90
91
91
* 完善所有和PrimaryKey有关的通用查询
92
92
93
- ###最新版本2.3.0 - 2015-04-05
93
+ * 修复Mapper<T >接口中update操作会更新主键的bug
94
+
95
+ * MBG插件增加caseSensitive默认false,当数据库表名区分大小写时,可以将该属性设置为true
96
+
97
+ ###2 .3.0 - 2015-04-05
94
98
95
99
* Mapper接口和EntityMapper都增加了` selectOne ` 方法,该查询返回值最多只能有一个,存在多个时抛出异常
96
100
@@ -104,7 +108,7 @@ Country代码:
104
108
<dependency >
105
109
<groupId >com.github.abel533</groupId >
106
110
<artifactId >mapper</artifactId >
107
- <version >2.3.0 </version >
111
+ <version >2.3.1 </version >
108
112
</dependency >
109
113
```
110
114
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.github.abel533</groupId >
6
6
<artifactId >mapper</artifactId >
7
- <version >2.3.1-SNAPSHOT </version >
7
+ <version >2.3.1</version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >mapper</name >
Original file line number Diff line number Diff line change 1
1
#更新日志
2
2
3
+ ##2 .3.1 - 2015-04-13
4
+
5
+ * 完善所有和PrimaryKey有关的通用查询
6
+
7
+ * 修复Mapper<T >接口中update操作会更新主键的bug
8
+
9
+ * MBG插件增加caseSensitive默认false,当数据库表名区分大小写时,可以将该属性设置为true
10
+
11
+ ##2 .3.0 - 2015-04-05
12
+
13
+ * Mapper接口和EntityMapper都增加了` selectOne ` 方法,该查询返回值最多只能有一个,存在多个时抛出异常
14
+
15
+ * Mapper接口和EntityMapper中,返回List的查询方法都支持JPA的` @Orderby ` 注解。其中` Example ` 查询中的` orderby ` 会覆盖注解的` @Orderby ` 设置。
16
+
17
+ * 通过实体类获取表名的时候,不对表名进行强制的大小写转换。如果数据库大小写敏感,请通过` @Table ` 注解和数据库保持一致。
18
+
3
19
##2 .2.0 - 2015-03-11
4
20
5
21
* 新增` SqlMapper ` ,可以使用MyBatis直接执行sql,[ 详细文档] ( http://git.oschina.net/free/Mapper/blob/master/wiki/UseSqlMapper.md )
You can’t perform that action at this time.
0 commit comments