You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
296 B
30 lines
296 B
<?php
|
|
|
|
/**
|
|
* 调用结果
|
|
* @author auto create
|
|
*/
|
|
class PageInfo
|
|
{
|
|
|
|
/**
|
|
* 分页数组
|
|
**/
|
|
public $list;
|
|
|
|
/**
|
|
* 当前页数
|
|
**/
|
|
public $page;
|
|
|
|
/**
|
|
* 分页属性 - 分页大小
|
|
**/
|
|
public $page_size;
|
|
|
|
/**
|
|
* 分页属性 - 总共数量
|
|
**/
|
|
public $total;
|
|
}
|
|
?>
|