优惠券订单及其他脚本

OrderPage.php 427B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * PublisherOrderDto
  4. * @author auto create
  5. */
  6. class OrderPage
  7. {
  8. /**
  9. * 是否还有下一页
  10. **/
  11. public $has_next;
  12. /**
  13. * 是否还有上一页
  14. **/
  15. public $has_pre;
  16. /**
  17. * 页码
  18. **/
  19. public $page_no;
  20. /**
  21. * 页大小
  22. **/
  23. public $page_size;
  24. /**
  25. * 位点字段,由调用方原样传递
  26. **/
  27. public $position_index;
  28. /**
  29. * PublisherOrderDto
  30. **/
  31. public $results;
  32. }
  33. ?>