DeptDauSummaryRequest.php 443 B

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