SubShopListResItem.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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\SubShopListRes;
  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.SubShopListRes.SubShopListResItem</code>
  11. */
  12. class SubShopListResItem extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 门店信息
  16. *
  17. * Generated from protobuf field <code>.proto.api.AdminBaseInfo shop_info = 1;</code>
  18. */
  19. protected $shop_info = null;
  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_name = 3;</code>
  30. */
  31. protected $city_name = '';
  32. /**
  33. * 电池押金
  34. *
  35. * Generated from protobuf field <code>int32 battery_deposit = 4;</code>
  36. */
  37. protected $battery_deposit = 0;
  38. /**
  39. * 车辆押金
  40. *
  41. * Generated from protobuf field <code>int32 car_deposit = 5;</code>
  42. */
  43. protected $car_deposit = 0;
  44. /**
  45. * 车电一体押金
  46. *
  47. * Generated from protobuf field <code>int32 battery_car_deposit = 6;</code>
  48. */
  49. protected $battery_car_deposit = 0;
  50. /**
  51. * 选择的城市列表
  52. *
  53. * Generated from protobuf field <code>repeated string area_ids = 7;</code>
  54. */
  55. private $area_ids;
  56. /**
  57. * Constructor.
  58. *
  59. * @param array $data {
  60. * Optional. Data for populating the Message object.
  61. *
  62. * @type \Proto\Api\AdminBaseInfo $shop_info
  63. * 门店信息
  64. * @type string $province_name
  65. * 省份
  66. * @type string $city_name
  67. * 城市
  68. * @type int $battery_deposit
  69. * 电池押金
  70. * @type int $car_deposit
  71. * 车辆押金
  72. * @type int $battery_car_deposit
  73. * 车电一体押金
  74. * @type array<string>|\Google\Protobuf\Internal\RepeatedField $area_ids
  75. * 选择的城市列表
  76. * }
  77. */
  78. public function __construct($data = NULL) {
  79. \GPBMetadata\Api\CityPackage::initOnce();
  80. parent::__construct($data);
  81. }
  82. /**
  83. * 门店信息
  84. *
  85. * Generated from protobuf field <code>.proto.api.AdminBaseInfo shop_info = 1;</code>
  86. * @return \Proto\Api\AdminBaseInfo|null
  87. */
  88. public function getShopInfo()
  89. {
  90. return $this->shop_info;
  91. }
  92. public function hasShopInfo()
  93. {
  94. return isset($this->shop_info);
  95. }
  96. public function clearShopInfo()
  97. {
  98. unset($this->shop_info);
  99. }
  100. /**
  101. * 门店信息
  102. *
  103. * Generated from protobuf field <code>.proto.api.AdminBaseInfo shop_info = 1;</code>
  104. * @param \Proto\Api\AdminBaseInfo $var
  105. * @return $this
  106. */
  107. public function setShopInfo($var)
  108. {
  109. GPBUtil::checkMessage($var, \Proto\Api\AdminBaseInfo::class);
  110. $this->shop_info = $var;
  111. return $this;
  112. }
  113. /**
  114. * 省份
  115. *
  116. * Generated from protobuf field <code>string province_name = 2;</code>
  117. * @return string
  118. */
  119. public function getProvinceName()
  120. {
  121. return $this->province_name;
  122. }
  123. /**
  124. * 省份
  125. *
  126. * Generated from protobuf field <code>string province_name = 2;</code>
  127. * @param string $var
  128. * @return $this
  129. */
  130. public function setProvinceName($var)
  131. {
  132. GPBUtil::checkString($var, True);
  133. $this->province_name = $var;
  134. return $this;
  135. }
  136. /**
  137. * 城市
  138. *
  139. * Generated from protobuf field <code>string city_name = 3;</code>
  140. * @return string
  141. */
  142. public function getCityName()
  143. {
  144. return $this->city_name;
  145. }
  146. /**
  147. * 城市
  148. *
  149. * Generated from protobuf field <code>string city_name = 3;</code>
  150. * @param string $var
  151. * @return $this
  152. */
  153. public function setCityName($var)
  154. {
  155. GPBUtil::checkString($var, True);
  156. $this->city_name = $var;
  157. return $this;
  158. }
  159. /**
  160. * 电池押金
  161. *
  162. * Generated from protobuf field <code>int32 battery_deposit = 4;</code>
  163. * @return int
  164. */
  165. public function getBatteryDeposit()
  166. {
  167. return $this->battery_deposit;
  168. }
  169. /**
  170. * 电池押金
  171. *
  172. * Generated from protobuf field <code>int32 battery_deposit = 4;</code>
  173. * @param int $var
  174. * @return $this
  175. */
  176. public function setBatteryDeposit($var)
  177. {
  178. GPBUtil::checkInt32($var);
  179. $this->battery_deposit = $var;
  180. return $this;
  181. }
  182. /**
  183. * 车辆押金
  184. *
  185. * Generated from protobuf field <code>int32 car_deposit = 5;</code>
  186. * @return int
  187. */
  188. public function getCarDeposit()
  189. {
  190. return $this->car_deposit;
  191. }
  192. /**
  193. * 车辆押金
  194. *
  195. * Generated from protobuf field <code>int32 car_deposit = 5;</code>
  196. * @param int $var
  197. * @return $this
  198. */
  199. public function setCarDeposit($var)
  200. {
  201. GPBUtil::checkInt32($var);
  202. $this->car_deposit = $var;
  203. return $this;
  204. }
  205. /**
  206. * 车电一体押金
  207. *
  208. * Generated from protobuf field <code>int32 battery_car_deposit = 6;</code>
  209. * @return int
  210. */
  211. public function getBatteryCarDeposit()
  212. {
  213. return $this->battery_car_deposit;
  214. }
  215. /**
  216. * 车电一体押金
  217. *
  218. * Generated from protobuf field <code>int32 battery_car_deposit = 6;</code>
  219. * @param int $var
  220. * @return $this
  221. */
  222. public function setBatteryCarDeposit($var)
  223. {
  224. GPBUtil::checkInt32($var);
  225. $this->battery_car_deposit = $var;
  226. return $this;
  227. }
  228. /**
  229. * 选择的城市列表
  230. *
  231. * Generated from protobuf field <code>repeated string area_ids = 7;</code>
  232. * @return \Google\Protobuf\Internal\RepeatedField
  233. */
  234. public function getAreaIds()
  235. {
  236. return $this->area_ids;
  237. }
  238. /**
  239. * 选择的城市列表
  240. *
  241. * Generated from protobuf field <code>repeated string area_ids = 7;</code>
  242. * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
  243. * @return $this
  244. */
  245. public function setAreaIds($var)
  246. {
  247. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
  248. $this->area_ids = $arr;
  249. return $this;
  250. }
  251. }