BillBatchQueryOpenResponse.php 436 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class BillBatchQueryOpenResponse
  7. {
  8. /**
  9. * billList
  10. **/
  11. public $bill_list;
  12. /**
  13. * 当前页码
  14. **/
  15. public $current_page_num;
  16. /**
  17. * 如果nextKey不为空,说明还有翻页数据
  18. **/
  19. public $next_key;
  20. /**
  21. * 每页大小
  22. **/
  23. public $page_size;
  24. /**
  25. * 总记录条数
  26. **/
  27. public $total_count;
  28. /**
  29. * 总页数
  30. **/
  31. public $total_page;
  32. }
  33. ?>