Commit 20e2a67e authored by chenzhao's avatar chenzhao

修改bug

parent 40939e95
......@@ -159,7 +159,7 @@ public class AlertCalledController extends BaseController {
if (StringUtils.isBlank(pageNum) || StringUtils.isBlank(pageSize)) {
page = new Page<>();
page.setCurrent(0L);
page.setSize(10L);
page.setSize(Long.MAX_VALUE);
} else {
page.setCurrent( (Long.parseLong(pageNum) - 1) * Long.parseLong(pageSize));
page.setSize(Long.parseLong(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