AreaLevelEnt.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntArea.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.AreaLevelEnt</code>
  11. */
  12. class AreaLevelEnt extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 区域信息
  16. * 省编号
  17. *
  18. * Generated from protobuf field <code>string province_code = 1;</code>
  19. */
  20. protected $province_code = '';
  21. /**
  22. * 省名称
  23. *
  24. * Generated from protobuf field <code>string province_name = 2;</code>
  25. */
  26. protected $province_name = '';
  27. /**
  28. * 市编号
  29. *
  30. * Generated from protobuf field <code>string city_code = 3;</code>
  31. */
  32. protected $city_code = '';
  33. /**
  34. * 市名称
  35. *
  36. * Generated from protobuf field <code>string city_name = 4;</code>
  37. */
  38. protected $city_name = '';
  39. /**
  40. * 区编号
  41. *
  42. * Generated from protobuf field <code>string area_code = 5;</code>
  43. */
  44. protected $area_code = '';
  45. /**
  46. * 区名称
  47. *
  48. * Generated from protobuf field <code>string area_name = 6;</code>
  49. */
  50. protected $area_name = '';
  51. /**
  52. * 地区code
  53. *
  54. * Generated from protobuf field <code>string area_id = 7;</code>
  55. */
  56. protected $area_id = '';
  57. /**
  58. * 子级区域
  59. *
  60. * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 8;</code>
  61. */
  62. private $children;
  63. /**
  64. * Constructor.
  65. *
  66. * @param array $data {
  67. * Optional. Data for populating the Message object.
  68. *
  69. * @type string $province_code
  70. * 区域信息
  71. * 省编号
  72. * @type string $province_name
  73. * 省名称
  74. * @type string $city_code
  75. * 市编号
  76. * @type string $city_name
  77. * 市名称
  78. * @type string $area_code
  79. * 区编号
  80. * @type string $area_name
  81. * 区名称
  82. * @type string $area_id
  83. * 地区code
  84. * @type array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $children
  85. * 子级区域
  86. * }
  87. */
  88. public function __construct($data = NULL) {
  89. \GPBMetadata\Api\EntArea::initOnce();
  90. parent::__construct($data);
  91. }
  92. /**
  93. * 区域信息
  94. * 省编号
  95. *
  96. * Generated from protobuf field <code>string province_code = 1;</code>
  97. * @return string
  98. */
  99. public function getProvinceCode()
  100. {
  101. return $this->province_code;
  102. }
  103. /**
  104. * 区域信息
  105. * 省编号
  106. *
  107. * Generated from protobuf field <code>string province_code = 1;</code>
  108. * @param string $var
  109. * @return $this
  110. */
  111. public function setProvinceCode($var)
  112. {
  113. GPBUtil::checkString($var, True);
  114. $this->province_code = $var;
  115. return $this;
  116. }
  117. /**
  118. * 省名称
  119. *
  120. * Generated from protobuf field <code>string province_name = 2;</code>
  121. * @return string
  122. */
  123. public function getProvinceName()
  124. {
  125. return $this->province_name;
  126. }
  127. /**
  128. * 省名称
  129. *
  130. * Generated from protobuf field <code>string province_name = 2;</code>
  131. * @param string $var
  132. * @return $this
  133. */
  134. public function setProvinceName($var)
  135. {
  136. GPBUtil::checkString($var, True);
  137. $this->province_name = $var;
  138. return $this;
  139. }
  140. /**
  141. * 市编号
  142. *
  143. * Generated from protobuf field <code>string city_code = 3;</code>
  144. * @return string
  145. */
  146. public function getCityCode()
  147. {
  148. return $this->city_code;
  149. }
  150. /**
  151. * 市编号
  152. *
  153. * Generated from protobuf field <code>string city_code = 3;</code>
  154. * @param string $var
  155. * @return $this
  156. */
  157. public function setCityCode($var)
  158. {
  159. GPBUtil::checkString($var, True);
  160. $this->city_code = $var;
  161. return $this;
  162. }
  163. /**
  164. * 市名称
  165. *
  166. * Generated from protobuf field <code>string city_name = 4;</code>
  167. * @return string
  168. */
  169. public function getCityName()
  170. {
  171. return $this->city_name;
  172. }
  173. /**
  174. * 市名称
  175. *
  176. * Generated from protobuf field <code>string city_name = 4;</code>
  177. * @param string $var
  178. * @return $this
  179. */
  180. public function setCityName($var)
  181. {
  182. GPBUtil::checkString($var, True);
  183. $this->city_name = $var;
  184. return $this;
  185. }
  186. /**
  187. * 区编号
  188. *
  189. * Generated from protobuf field <code>string area_code = 5;</code>
  190. * @return string
  191. */
  192. public function getAreaCode()
  193. {
  194. return $this->area_code;
  195. }
  196. /**
  197. * 区编号
  198. *
  199. * Generated from protobuf field <code>string area_code = 5;</code>
  200. * @param string $var
  201. * @return $this
  202. */
  203. public function setAreaCode($var)
  204. {
  205. GPBUtil::checkString($var, True);
  206. $this->area_code = $var;
  207. return $this;
  208. }
  209. /**
  210. * 区名称
  211. *
  212. * Generated from protobuf field <code>string area_name = 6;</code>
  213. * @return string
  214. */
  215. public function getAreaName()
  216. {
  217. return $this->area_name;
  218. }
  219. /**
  220. * 区名称
  221. *
  222. * Generated from protobuf field <code>string area_name = 6;</code>
  223. * @param string $var
  224. * @return $this
  225. */
  226. public function setAreaName($var)
  227. {
  228. GPBUtil::checkString($var, True);
  229. $this->area_name = $var;
  230. return $this;
  231. }
  232. /**
  233. * 地区code
  234. *
  235. * Generated from protobuf field <code>string area_id = 7;</code>
  236. * @return string
  237. */
  238. public function getAreaId()
  239. {
  240. return $this->area_id;
  241. }
  242. /**
  243. * 地区code
  244. *
  245. * Generated from protobuf field <code>string area_id = 7;</code>
  246. * @param string $var
  247. * @return $this
  248. */
  249. public function setAreaId($var)
  250. {
  251. GPBUtil::checkString($var, True);
  252. $this->area_id = $var;
  253. return $this;
  254. }
  255. /**
  256. * 子级区域
  257. *
  258. * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 8;</code>
  259. * @return \Google\Protobuf\Internal\RepeatedField
  260. */
  261. public function getChildren()
  262. {
  263. return $this->children;
  264. }
  265. /**
  266. * 子级区域
  267. *
  268. * Generated from protobuf field <code>repeated .proto.api.AreaLevelEnt children = 8;</code>
  269. * @param array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $var
  270. * @return $this
  271. */
  272. public function setChildren($var)
  273. {
  274. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaLevelEnt::class);
  275. $this->children = $arr;
  276. return $this;
  277. }
  278. }