SubAreaListReq.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/CityPackage.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. * Generated from protobuf message <code>proto.api.SubAreaListReq</code>
  11. */
  12. class SubAreaListReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 分页参数
  16. *
  17. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  18. */
  19. protected $page_arg = null;
  20. /**
  21. * 省份CODE
  22. *
  23. * Generated from protobuf field <code>string province_code = 2;</code>
  24. */
  25. protected $province_code = '';
  26. /**
  27. * 城市CODE
  28. *
  29. * Generated from protobuf field <code>string city_code = 3;</code>
  30. */
  31. protected $city_code = '';
  32. /**
  33. * 门店ID
  34. *
  35. * Generated from protobuf field <code>int32 shop_id = 4;</code>
  36. */
  37. protected $shop_id = 0;
  38. /**
  39. * Constructor.
  40. *
  41. * @param array $data {
  42. * Optional. Data for populating the Message object.
  43. *
  44. * @type \Proto\Api\PageArg $page_arg
  45. * 分页参数
  46. * @type string $province_code
  47. * 省份CODE
  48. * @type string $city_code
  49. * 城市CODE
  50. * @type int $shop_id
  51. * 门店ID
  52. * }
  53. */
  54. public function __construct($data = NULL) {
  55. \GPBMetadata\Api\CityPackage::initOnce();
  56. parent::__construct($data);
  57. }
  58. /**
  59. * 分页参数
  60. *
  61. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  62. * @return \Proto\Api\PageArg|null
  63. */
  64. public function getPageArg()
  65. {
  66. return $this->page_arg;
  67. }
  68. public function hasPageArg()
  69. {
  70. return isset($this->page_arg);
  71. }
  72. public function clearPageArg()
  73. {
  74. unset($this->page_arg);
  75. }
  76. /**
  77. * 分页参数
  78. *
  79. * Generated from protobuf field <code>.proto.api.PageArg page_arg = 1;</code>
  80. * @param \Proto\Api\PageArg $var
  81. * @return $this
  82. */
  83. public function setPageArg($var)
  84. {
  85. GPBUtil::checkMessage($var, \Proto\Api\PageArg::class);
  86. $this->page_arg = $var;
  87. return $this;
  88. }
  89. /**
  90. * 省份CODE
  91. *
  92. * Generated from protobuf field <code>string province_code = 2;</code>
  93. * @return string
  94. */
  95. public function getProvinceCode()
  96. {
  97. return $this->province_code;
  98. }
  99. /**
  100. * 省份CODE
  101. *
  102. * Generated from protobuf field <code>string province_code = 2;</code>
  103. * @param string $var
  104. * @return $this
  105. */
  106. public function setProvinceCode($var)
  107. {
  108. GPBUtil::checkString($var, True);
  109. $this->province_code = $var;
  110. return $this;
  111. }
  112. /**
  113. * 城市CODE
  114. *
  115. * Generated from protobuf field <code>string city_code = 3;</code>
  116. * @return string
  117. */
  118. public function getCityCode()
  119. {
  120. return $this->city_code;
  121. }
  122. /**
  123. * 城市CODE
  124. *
  125. * Generated from protobuf field <code>string city_code = 3;</code>
  126. * @param string $var
  127. * @return $this
  128. */
  129. public function setCityCode($var)
  130. {
  131. GPBUtil::checkString($var, True);
  132. $this->city_code = $var;
  133. return $this;
  134. }
  135. /**
  136. * 门店ID
  137. *
  138. * Generated from protobuf field <code>int32 shop_id = 4;</code>
  139. * @return int
  140. */
  141. public function getShopId()
  142. {
  143. return $this->shop_id;
  144. }
  145. /**
  146. * 门店ID
  147. *
  148. * Generated from protobuf field <code>int32 shop_id = 4;</code>
  149. * @param int $var
  150. * @return $this
  151. */
  152. public function setShopId($var)
  153. {
  154. GPBUtil::checkInt32($var);
  155. $this->shop_id = $var;
  156. return $this;
  157. }
  158. }