IterablePage.php 294 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 分页结果
  4. * @author auto create
  5. */
  6. class IterablePage
  7. {
  8. /**
  9. * 是否有下一页
  10. **/
  11. public $has_more;
  12. /**
  13. * 下一页的游标
  14. **/
  15. public $next_cursor;
  16. /**
  17. * 分页大小
  18. **/
  19. public $page_size;
  20. /**
  21. * 数据列表
  22. **/
  23. public $values;
  24. }
  25. ?>