/trunk/springmvc/src/main/java/com/def/springmvc/util/Page.java

https://gitlab.com/BGCX262/zy-myjava-svn-to-git · Java · 145 lines · 107 code · 30 blank · 8 comment · 7 complexity · 40b495db96e1f2a87067bc629fe587e2 MD5 · raw file

  1. package com.def.springmvc.util;
  2. import java.util.List;
  3. /**
  4. *
  5. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  6. * @since 0.1.0
  7. * @create May 16, 2011 - 3:51:31 PM
  8. * <a href="http://www.opensourceforce.org">开源力量</a>
  9. */
  10. public class Page<T> {
  11. protected Integer pageNo = 1;
  12. protected Integer pageSize = -1;
  13. protected Boolean autoCount = Boolean.TRUE;
  14. protected List<String> orderList = CollectionUtil.newArrayList();
  15. protected List<String> ascOrderList = CollectionUtil.newArrayList();
  16. protected List<String> descOrderList = CollectionUtil.newArrayList();
  17. protected List<T> result = CollectionUtil.newArrayList();
  18. protected Long totalCount = -1L;
  19. public Page() {
  20. }
  21. public Page(int pageSize) {
  22. this.pageSize = pageSize;
  23. }
  24. public Integer getPageNo() {
  25. return pageNo;
  26. }
  27. public Page<T> setPageNo(Integer pageNo) {
  28. this.pageNo = pageNo;
  29. if (pageNo < 1) {
  30. this.pageNo = 1;
  31. }
  32. return this;
  33. }
  34. public Integer getPageSize() {
  35. return pageSize;
  36. }
  37. public Page<T> setPageSize(Integer pageSize) {
  38. this.pageSize = pageSize;
  39. return this;
  40. }
  41. public Integer getFirst() {
  42. return ((pageNo - 1) * pageSize) + 1;
  43. }
  44. public Boolean getAutoCount() {
  45. return autoCount;
  46. }
  47. public Page<T> setAutoCount(Boolean autoCount) {
  48. this.autoCount = autoCount;
  49. return this;
  50. }
  51. public List<T> getResult() {
  52. return result;
  53. }
  54. public Page<T> setResult(List<T> result) {
  55. this.result = result;
  56. return this;
  57. }
  58. public Long getTotalCount() {
  59. return totalCount;
  60. }
  61. public Page<T> setTotalCount(Long totalCount) {
  62. this.totalCount = totalCount;
  63. return this;
  64. }
  65. public Long getTotalPages() {
  66. if (totalCount < 0) {
  67. return -1L;
  68. }
  69. long count = totalCount / pageSize;
  70. if (totalCount % pageSize > 0) {
  71. count++;
  72. }
  73. return count;
  74. }
  75. public Boolean getHasNext() {
  76. return (pageNo + 1 <= getTotalPages());
  77. }
  78. public Integer getNextPage() {
  79. if (getHasNext()) {
  80. return pageNo + 1;
  81. } else {
  82. return pageNo;
  83. }
  84. }
  85. public Boolean getHasPre() {
  86. return (pageNo - 1 >= 1);
  87. }
  88. public Integer getPrePage() {
  89. if (getHasPre()) {
  90. return pageNo - 1;
  91. } else {
  92. return pageNo;
  93. }
  94. }
  95. //
  96. public List<String> getOrderList() {
  97. return orderList;
  98. }
  99. public List<String> getAscOrderList() {
  100. return ascOrderList;
  101. }
  102. public List<String> getDescOrderList() {
  103. return descOrderList;
  104. }
  105. public Page<T> asc(String column) {
  106. orderList.add(column + " ASC");
  107. ascOrderList.add(column);
  108. return this;
  109. }
  110. public Page<T> desc(String column) {
  111. orderList.add(column + " DESC");
  112. descOrderList.add(column);
  113. return this;
  114. }
  115. }