McsSummaryRequest.php 316 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 请求参数对象
  4. * @author auto create
  5. */
  6. class McsSummaryRequest
  7. {
  8. /**
  9. * 分页游标;首页请使用0,之后直接使用返回结果中的next_cursor
  10. **/
  11. public $cursor;
  12. /**
  13. * 日期标识
  14. **/
  15. public $data_id;
  16. /**
  17. * 分页大小;不超过100
  18. **/
  19. public $size;
  20. }
  21. ?>