Commit 03de447b by songyinghui

feat: 分页参数

parent 7285b76c
......@@ -93,6 +93,8 @@ public class InteractRecordController {
Page<InteractRecordVO> result = new Page<>();
result.setTotalCount(serviceResponse.getResult().getTotalCount());
result.setResult(interactRecordVos);
result.setCurrentPage(interactRecordQO.getPageNum());
result.setPageSize(interactRecordQO.getPageSize());
return RestResponse.successResult(result);
}
......
......@@ -113,6 +113,8 @@ public class PotentialCustomerController {
Page<PotentialCustomerVO> result = new Page<>();
result.setTotalCount(serviceResponse.getResult().getTotalCount());
result.setResult(customerVOS);
result.setCurrentPage(potentialCustomerQO.getPageNum());
result.setPageSize(potentialCustomerQO.getPageSize());
return RestResponse.successResult(result);
}
......
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