AreaEnt.php 5.7 KB

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