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