12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * result
- * @author auto create
- */
- class BillBatchQueryOpenResponse
- {
-
- /**
- * billList
- **/
- public $bill_list;
-
- /**
- * 当前页码
- **/
- public $current_page_num;
-
- /**
- * 如果nextKey不为空,说明还有翻页数据
- **/
- public $next_key;
-
- /**
- * 每页大小
- **/
- public $page_size;
-
- /**
- * 总记录条数
- **/
- public $total_count;
-
- /**
- * 总页数
- **/
- public $total_page;
- }
- ?>
|