proto.api.PageArg
*/
class PageArg extends \Google\Protobuf\Internal\Message
{
/**
* 页码 默认1
*
* Generated from protobuf field int32 page = 1;
*/
protected $page = 0;
/**
* 每页条数 默认10
*
* Generated from protobuf field int32 limit = 2;
*/
protected $limit = 0;
/**
* 排序字段 默认创建时间
*
* Generated from protobuf field string order_by = 3;
*/
protected $order_by = '';
/**
* 排序方式 asc/desc 默认asc
*
* Generated from protobuf field string order_type = 4;
*/
protected $order_type = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $page
* 页码 默认1
* @type int $limit
* 每页条数 默认10
* @type string $order_by
* 排序字段 默认创建时间
* @type string $order_type
* 排序方式 asc/desc 默认asc
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\Common::initOnce();
parent::__construct($data);
}
/**
* 页码 默认1
*
* Generated from protobuf field int32 page = 1;
* @return int
*/
public function getPage()
{
return $this->page;
}
/**
* 页码 默认1
*
* Generated from protobuf field int32 page = 1;
* @param int $var
* @return $this
*/
public function setPage($var)
{
GPBUtil::checkInt32($var);
$this->page = $var;
return $this;
}
/**
* 每页条数 默认10
*
* Generated from protobuf field int32 limit = 2;
* @return int
*/
public function getLimit()
{
return $this->limit;
}
/**
* 每页条数 默认10
*
* Generated from protobuf field int32 limit = 2;
* @param int $var
* @return $this
*/
public function setLimit($var)
{
GPBUtil::checkInt32($var);
$this->limit = $var;
return $this;
}
/**
* 排序字段 默认创建时间
*
* Generated from protobuf field string order_by = 3;
* @return string
*/
public function getOrderBy()
{
return $this->order_by;
}
/**
* 排序字段 默认创建时间
*
* Generated from protobuf field string order_by = 3;
* @param string $var
* @return $this
*/
public function setOrderBy($var)
{
GPBUtil::checkString($var, True);
$this->order_by = $var;
return $this;
}
/**
* 排序方式 asc/desc 默认asc
*
* Generated from protobuf field string order_type = 4;
* @return string
*/
public function getOrderType()
{
return $this->order_type;
}
/**
* 排序方式 asc/desc 默认asc
*
* Generated from protobuf field string order_type = 4;
* @param string $var
* @return $this
*/
public function setOrderType($var)
{
GPBUtil::checkString($var, True);
$this->order_type = $var;
return $this;
}
}