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.
25 lines
226 B
25 lines
226 B
<?php
|
|
|
|
/**
|
|
* 分页信息
|
|
* @author auto create
|
|
*/
|
|
class PageInfoRs
|
|
{
|
|
|
|
/**
|
|
* 当前页
|
|
**/
|
|
public $page;
|
|
|
|
/**
|
|
* 每页大小
|
|
**/
|
|
public $page_size;
|
|
|
|
/**
|
|
* 总记录数
|
|
**/
|
|
public $total_number;
|
|
}
|
|
?>
|