PageQueryResponse.php 314 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 数据结果
  4. * @author auto create
  5. */
  6. class PageQueryResponse
  7. {
  8. /**
  9. * 是否还有更多数据
  10. **/
  11. public $has_more;
  12. /**
  13. * 学科元数据列表
  14. **/
  15. public $list;
  16. /**
  17. * 下一页游标
  18. **/
  19. public $next_cursor;
  20. /**
  21. * 总数据条数
  22. **/
  23. public $total_count;
  24. }
  25. ?>