1:解决pageno和pagesize与界面传入的不一致的问题

2:解决sql被转成小写的问题
This commit is contained in:
renkaige
2018-11-07 10:44:35 +08:00
parent b06fdf715f
commit 353c1ff8b5
2 changed files with 3 additions and 3 deletions

View File

@@ -518,7 +518,7 @@ public class Page<T> {
*/
public Page<T> setList(List<T> list) {
this.list = list;
initialize();
// initialize();
return this;
}