123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * 分页查询结果
- * @author auto create
- */
- class PageQueryCursorResult
- {
-
- /**
- * 动作列表
- **/
- public $action_list;
-
- /**
- * 还有数据
- **/
- public $has_more;
-
- /**
- * 下一页的游标
- **/
- public $next_cursor;
-
- /**
- * 总数
- **/
- public $total;
- }
- ?>
|