PageArg.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/Common.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * PageArg 分页参数
  11. *
  12. * Generated from protobuf message <code>proto.api.PageArg</code>
  13. */
  14. class PageArg extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 页码 默认1
  18. *
  19. * Generated from protobuf field <code>int32 page = 1;</code>
  20. */
  21. protected $page = 0;
  22. /**
  23. * 每页条数 默认10
  24. *
  25. * Generated from protobuf field <code>int32 limit = 2;</code>
  26. */
  27. protected $limit = 0;
  28. /**
  29. * 排序字段 默认创建时间
  30. *
  31. * Generated from protobuf field <code>string order_by = 3;</code>
  32. */
  33. protected $order_by = '';
  34. /**
  35. * 排序方式 asc/desc 默认asc
  36. *
  37. * Generated from protobuf field <code>string order_type = 4;</code>
  38. */
  39. protected $order_type = '';
  40. /**
  41. * Constructor.
  42. *
  43. * @param array $data {
  44. * Optional. Data for populating the Message object.
  45. *
  46. * @type int $page
  47. * 页码 默认1
  48. * @type int $limit
  49. * 每页条数 默认10
  50. * @type string $order_by
  51. * 排序字段 默认创建时间
  52. * @type string $order_type
  53. * 排序方式 asc/desc 默认asc
  54. * }
  55. */
  56. public function __construct($data = NULL) {
  57. \GPBMetadata\Api\Common::initOnce();
  58. parent::__construct($data);
  59. }
  60. /**
  61. * 页码 默认1
  62. *
  63. * Generated from protobuf field <code>int32 page = 1;</code>
  64. * @return int
  65. */
  66. public function getPage()
  67. {
  68. return $this->page;
  69. }
  70. /**
  71. * 页码 默认1
  72. *
  73. * Generated from protobuf field <code>int32 page = 1;</code>
  74. * @param int $var
  75. * @return $this
  76. */
  77. public function setPage($var)
  78. {
  79. GPBUtil::checkInt32($var);
  80. $this->page = $var;
  81. return $this;
  82. }
  83. /**
  84. * 每页条数 默认10
  85. *
  86. * Generated from protobuf field <code>int32 limit = 2;</code>
  87. * @return int
  88. */
  89. public function getLimit()
  90. {
  91. return $this->limit;
  92. }
  93. /**
  94. * 每页条数 默认10
  95. *
  96. * Generated from protobuf field <code>int32 limit = 2;</code>
  97. * @param int $var
  98. * @return $this
  99. */
  100. public function setLimit($var)
  101. {
  102. GPBUtil::checkInt32($var);
  103. $this->limit = $var;
  104. return $this;
  105. }
  106. /**
  107. * 排序字段 默认创建时间
  108. *
  109. * Generated from protobuf field <code>string order_by = 3;</code>
  110. * @return string
  111. */
  112. public function getOrderBy()
  113. {
  114. return $this->order_by;
  115. }
  116. /**
  117. * 排序字段 默认创建时间
  118. *
  119. * Generated from protobuf field <code>string order_by = 3;</code>
  120. * @param string $var
  121. * @return $this
  122. */
  123. public function setOrderBy($var)
  124. {
  125. GPBUtil::checkString($var, True);
  126. $this->order_by = $var;
  127. return $this;
  128. }
  129. /**
  130. * 排序方式 asc/desc 默认asc
  131. *
  132. * Generated from protobuf field <code>string order_type = 4;</code>
  133. * @return string
  134. */
  135. public function getOrderType()
  136. {
  137. return $this->order_type;
  138. }
  139. /**
  140. * 排序方式 asc/desc 默认asc
  141. *
  142. * Generated from protobuf field <code>string order_type = 4;</code>
  143. * @param string $var
  144. * @return $this
  145. */
  146. public function setOrderType($var)
  147. {
  148. GPBUtil::checkString($var, True);
  149. $this->order_type = $var;
  150. return $this;
  151. }
  152. }