Commit fea00c80 by qiuweili123

modify

parent fc774023
......@@ -22,11 +22,11 @@ public class ReqPage<T> {
}
public Long getPageSize() {
return pageSize;
return pageSize == null ? PageConstant.DEFAULT_PAGE_SIZE : pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize == null ? PageConstant.DEFAULT_PAGE_SIZE : pageSize;
this.pageSize = 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