Last active
December 8, 2015 21:00
-
-
Save frombegin/ee51c5fb69fa37fd2698 to your computer and use it in GitHub Desktop.
Revisions
-
frombegin revised this gist
Dec 8, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ * 将数据操作移到 dao 层,包括: ```java int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) ``` -
frombegin revised this gist
Dec 8, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,9 +2,10 @@ * 将数据操作移到 dao 层,包括: ``` int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) ``` * biz 层调用 dao,封装成 Pagination -
frombegin revised this gist
Dec 8, 2015 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,7 @@ * 将数据操作移到 dao 层,包括: int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) -
frombegin revised this gist
Dec 8, 2015 . No changes.There are no files selected for viewing
-
frombegin revised this gist
Dec 8, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,10 @@ 分页器处理: * 将数据操作移到 dao 层,包括: int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) * biz 层调用 dao,封装成 Pagination * jsonrpc4j 需要扩展支持 pagination, ObjectMapper -
frombegin revised this gist
Dec 8, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,4 +5,6 @@ int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) * biz 层调用 dao,封装成 Pagination * jsonrpc4j 需要扩展支持 pagination, ObjectMapper -
frombegin revised this gist
Dec 8, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ * 将数据操作移到 dao 层,包括: int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) * biz 层调用 dao,封装成 Pagination -
frombegin created this gist
Dec 8, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ 分页器处理: * 将数据操作移到 dao 层,包括: int getTotalCount(DSLContext create, ...) List<Record-Or-CustomItem> getList(DSLContext create, ..., limit, offset) * biz 层调用 dao,封装成 Pagination