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
254 B
25 lines
254 B
<?php
|
|
|
|
/**
|
|
* 列表查询对象
|
|
* @author auto create
|
|
*/
|
|
class PageQueryVo
|
|
{
|
|
|
|
/**
|
|
* 游标地址,第一页填0
|
|
**/
|
|
public $cursor;
|
|
|
|
/**
|
|
* 产品唯一编码
|
|
**/
|
|
public $pk;
|
|
|
|
/**
|
|
* 分页大小,最大20
|
|
**/
|
|
public $size;
|
|
}
|
|
?>
|