优惠券订单及其他脚本

Data.php 261B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * data
  4. * @author auto create
  5. */
  6. class Data
  7. {
  8. /**
  9. * 是否有下一页
  10. **/
  11. public $has_next;
  12. /**
  13. * 页码
  14. **/
  15. public $page_no;
  16. /**
  17. * 每页大小
  18. **/
  19. public $page_size;
  20. /**
  21. * resultList
  22. **/
  23. public $results;
  24. }
  25. ?>