Commit a3174663 by guojuxing

分页参数代码完善

parent e43e70a5
......@@ -23,6 +23,9 @@ public class PageQO implements Serializable {
private Integer pageSize = 20;
public Integer getCurrentPage() {
if (currentPage == null) {
currentPage = 1;
}
return currentPage;
}
......@@ -31,6 +34,9 @@ public class PageQO implements Serializable {
}
public Integer getPageSize() {
if (pageSize == null) {
pageSize = 20;
}
return pageSize;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment