SubItem.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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\SubAreaListRes;
  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.SubAreaListRes.SubItem</code>
  11. */
  12. class SubItem extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 省份
  16. *
  17. * Generated from protobuf field <code>string province_name = 2;</code>
  18. */
  19. protected $province_name = '';
  20. /**
  21. * 城市
  22. *
  23. * Generated from protobuf field <code>string city_name = 3;</code>
  24. */
  25. protected $city_name = '';
  26. /**
  27. * 电池押金
  28. *
  29. * Generated from protobuf field <code>int32 battery_deposit = 4;</code>
  30. */
  31. protected $battery_deposit = 0;
  32. /**
  33. * 车辆押金
  34. *
  35. * Generated from protobuf field <code>int32 car_deposit = 5;</code>
  36. */
  37. protected $car_deposit = 0;
  38. /**
  39. * 车电一体押金
  40. *
  41. * Generated from protobuf field <code>int32 battery_car_deposit = 6;</code>
  42. */
  43. protected $battery_car_deposit = 0;
  44. /**
  45. * Constructor.
  46. *
  47. * @param array $data {
  48. * Optional. Data for populating the Message object.
  49. *
  50. * @type string $province_name
  51. * 省份
  52. * @type string $city_name
  53. * 城市
  54. * @type int $battery_deposit
  55. * 电池押金
  56. * @type int $car_deposit
  57. * 车辆押金
  58. * @type int $battery_car_deposit
  59. * 车电一体押金
  60. * }
  61. */
  62. public function __construct($data = NULL) {
  63. \GPBMetadata\Api\CityPackage::initOnce();
  64. parent::__construct($data);
  65. }
  66. /**
  67. * 省份
  68. *
  69. * Generated from protobuf field <code>string province_name = 2;</code>
  70. * @return string
  71. */
  72. public function getProvinceName()
  73. {
  74. return $this->province_name;
  75. }
  76. /**
  77. * 省份
  78. *
  79. * Generated from protobuf field <code>string province_name = 2;</code>
  80. * @param string $var
  81. * @return $this
  82. */
  83. public function setProvinceName($var)
  84. {
  85. GPBUtil::checkString($var, True);
  86. $this->province_name = $var;
  87. return $this;
  88. }
  89. /**
  90. * 城市
  91. *
  92. * Generated from protobuf field <code>string city_name = 3;</code>
  93. * @return string
  94. */
  95. public function getCityName()
  96. {
  97. return $this->city_name;
  98. }
  99. /**
  100. * 城市
  101. *
  102. * Generated from protobuf field <code>string city_name = 3;</code>
  103. * @param string $var
  104. * @return $this
  105. */
  106. public function setCityName($var)
  107. {
  108. GPBUtil::checkString($var, True);
  109. $this->city_name = $var;
  110. return $this;
  111. }
  112. /**
  113. * 电池押金
  114. *
  115. * Generated from protobuf field <code>int32 battery_deposit = 4;</code>
  116. * @return int
  117. */
  118. public function getBatteryDeposit()
  119. {
  120. return $this->battery_deposit;
  121. }
  122. /**
  123. * 电池押金
  124. *
  125. * Generated from protobuf field <code>int32 battery_deposit = 4;</code>
  126. * @param int $var
  127. * @return $this
  128. */
  129. public function setBatteryDeposit($var)
  130. {
  131. GPBUtil::checkInt32($var);
  132. $this->battery_deposit = $var;
  133. return $this;
  134. }
  135. /**
  136. * 车辆押金
  137. *
  138. * Generated from protobuf field <code>int32 car_deposit = 5;</code>
  139. * @return int
  140. */
  141. public function getCarDeposit()
  142. {
  143. return $this->car_deposit;
  144. }
  145. /**
  146. * 车辆押金
  147. *
  148. * Generated from protobuf field <code>int32 car_deposit = 5;</code>
  149. * @param int $var
  150. * @return $this
  151. */
  152. public function setCarDeposit($var)
  153. {
  154. GPBUtil::checkInt32($var);
  155. $this->car_deposit = $var;
  156. return $this;
  157. }
  158. /**
  159. * 车电一体押金
  160. *
  161. * Generated from protobuf field <code>int32 battery_car_deposit = 6;</code>
  162. * @return int
  163. */
  164. public function getBatteryCarDeposit()
  165. {
  166. return $this->battery_car_deposit;
  167. }
  168. /**
  169. * 车电一体押金
  170. *
  171. * Generated from protobuf field <code>int32 battery_car_deposit = 6;</code>
  172. * @param int $var
  173. * @return $this
  174. */
  175. public function setBatteryCarDeposit($var)
  176. {
  177. GPBUtil::checkInt32($var);
  178. $this->battery_car_deposit = $var;
  179. return $this;
  180. }
  181. }