Package com.iflytek.framework.pagination

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

Related Classes of com.iflytek.framework.pagination.PaginationCriteria

Copyright © 2018 www.massapicom. 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.