12345678910111213141516171819202122232425 |
- <?php
- /**
- * 请求对象
- * @author auto create
- */
- class VideoLiveDeptSummaryRequest
- {
-
- /**
- * 分页游标;首页请使用0,之后直接使用返回结果中的next_cursor
- **/
- public $cursor;
-
- /**
- * 日期标识
- **/
- public $data_id;
-
- /**
- * 分页大小;不超过100
- **/
- public $size;
- }
- ?>
|