PageQueryCursorResult.php 298 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 分页查询结果
  4. * @author auto create
  5. */
  6. class PageQueryCursorResult
  7. {
  8. /**
  9. * 动作列表
  10. **/
  11. public $action_list;
  12. /**
  13. * 还有数据
  14. **/
  15. public $has_more;
  16. /**
  17. * 下一页的游标
  18. **/
  19. public $next_cursor;
  20. /**
  21. * 总数
  22. **/
  23. public $total;
  24. }
  25. ?>