123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/Common.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * PageArg 分页参数
- *
- * Generated from protobuf message <code>proto.api.PageArg</code>
- */
- class PageArg extends \Google\Protobuf\Internal\Message
- {
- /**
- * 页码 默认1
- *
- * Generated from protobuf field <code>int32 page = 1;</code>
- */
- protected $page = 0;
- /**
- * 每页条数 默认10
- *
- * Generated from protobuf field <code>int32 limit = 2;</code>
- */
- protected $limit = 0;
- /**
- * 排序字段 默认创建时间
- *
- * Generated from protobuf field <code>string order_by = 3;</code>
- */
- protected $order_by = '';
- /**
- * 排序方式 asc/desc 默认asc
- *
- * Generated from protobuf field <code>string order_type = 4;</code>
- */
- 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 <code>int32 page = 1;</code>
- * @return int
- */
- public function getPage()
- {
- return $this->page;
- }
- /**
- * 页码 默认1
- *
- * Generated from protobuf field <code>int32 page = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setPage($var)
- {
- GPBUtil::checkInt32($var);
- $this->page = $var;
- return $this;
- }
- /**
- * 每页条数 默认10
- *
- * Generated from protobuf field <code>int32 limit = 2;</code>
- * @return int
- */
- public function getLimit()
- {
- return $this->limit;
- }
- /**
- * 每页条数 默认10
- *
- * Generated from protobuf field <code>int32 limit = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setLimit($var)
- {
- GPBUtil::checkInt32($var);
- $this->limit = $var;
- return $this;
- }
- /**
- * 排序字段 默认创建时间
- *
- * Generated from protobuf field <code>string order_by = 3;</code>
- * @return string
- */
- public function getOrderBy()
- {
- return $this->order_by;
- }
- /**
- * 排序字段 默认创建时间
- *
- * Generated from protobuf field <code>string order_by = 3;</code>
- * @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 <code>string order_type = 4;</code>
- * @return string
- */
- public function getOrderType()
- {
- return $this->order_type;
- }
- /**
- * 排序方式 asc/desc 默认asc
- *
- * Generated from protobuf field <code>string order_type = 4;</code>
- * @param string $var
- * @return $this
- */
- public function setOrderType($var)
- {
- GPBUtil::checkString($var, True);
- $this->order_type = $var;
- return $this;
- }
- }
|