PageResult.php 127 B

123456789101112131415
  1. <?php
  2. /**
  3. * 分页模型
  4. * @author auto create
  5. */
  6. class PageResult
  7. {
  8. /**
  9. * 数据列表
  10. **/
  11. public $results;
  12. }
  13. ?>