Examples of PaginationCriteria


Examples of com.iflytek.framework.pagination.PaginationCriteria

  private AccountMapper accountMapper;

  @Override
  public PaginationResult<Account> accountList(Integer page, Integer pageSize) {
    // 设置分页信息
    final PaginationCriteria criteria = new PaginationCriteria();
    criteria.setStart((page - 1) * pageSize);
    criteria.setNumber(pageSize);

    // 返回请求页的信息列表
    return accountMapper.pageAccounts(criteria);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.