REAPI/extend/sdk/taobao/top/domain/BasePageQuery.php

20 lines
181 B
PHP
Raw Permalink Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* 分页参数
* @author auto create
*/
class BasePageQuery
{
/**
* 当前页数
**/
public $current;
/**
* 分页大小
**/
public $page_size;
}
?>