Commit 45d1cb8d by 徐高华

门店查询

parent eedf272d
......@@ -1639,6 +1639,9 @@ public class WxStaffController extends WebBaseController {
totalCount = storeIdList.size();
int start = pageSize * (currentPage-1) ;
int end = start +pageSize ;
if(end>totalCount) {
end = totalCount ;
}
List<String> subStoreIdList = storeIdList.subList(start, end) ;
if(CollectionUtils.isNotEmpty(subStoreIdList)) {
logger.info("分页当前页storeid数={}",subStoreIdList.size());
......
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