OrderInfoItem.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntCityPackage.proto
  5. namespace Proto\Api\CityPackageOrderEnt;
  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.CityPackageOrderEnt.OrderInfoItem</code>
  11. */
  12. class OrderInfoItem extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 基础信息
  16. *
  17. * Generated from protobuf field <code>.proto.api.EntOrder base_info = 1;</code>
  18. */
  19. protected $base_info = null;
  20. /**
  21. * 当前电池
  22. *
  23. * Generated from protobuf field <code>string current_battery_sn = 2;</code>
  24. */
  25. protected $current_battery_sn = '';
  26. /**
  27. * 购买绑定的电池
  28. *
  29. * Generated from protobuf field <code>string battery_sn = 3;</code>
  30. */
  31. protected $battery_sn = '';
  32. /**
  33. * 剩余用量
  34. *
  35. * Generated from protobuf field <code>string remain_capacity = 4;</code>
  36. */
  37. protected $remain_capacity = '';
  38. /**
  39. * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
  40. *
  41. * Generated from protobuf field <code>int32 pledge_status = 5;</code>
  42. */
  43. protected $pledge_status = 0;
  44. /**
  45. * Constructor.
  46. *
  47. * @param array $data {
  48. * Optional. Data for populating the Message object.
  49. *
  50. * @type \Proto\Api\EntOrder $base_info
  51. * 基础信息
  52. * @type string $current_battery_sn
  53. * 当前电池
  54. * @type string $battery_sn
  55. * 购买绑定的电池
  56. * @type string $remain_capacity
  57. * 剩余用量
  58. * @type int $pledge_status
  59. * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
  60. * }
  61. */
  62. public function __construct($data = NULL) {
  63. \GPBMetadata\Api\EntCityPackage::initOnce();
  64. parent::__construct($data);
  65. }
  66. /**
  67. * 基础信息
  68. *
  69. * Generated from protobuf field <code>.proto.api.EntOrder base_info = 1;</code>
  70. * @return \Proto\Api\EntOrder|null
  71. */
  72. public function getBaseInfo()
  73. {
  74. return $this->base_info;
  75. }
  76. public function hasBaseInfo()
  77. {
  78. return isset($this->base_info);
  79. }
  80. public function clearBaseInfo()
  81. {
  82. unset($this->base_info);
  83. }
  84. /**
  85. * 基础信息
  86. *
  87. * Generated from protobuf field <code>.proto.api.EntOrder base_info = 1;</code>
  88. * @param \Proto\Api\EntOrder $var
  89. * @return $this
  90. */
  91. public function setBaseInfo($var)
  92. {
  93. GPBUtil::checkMessage($var, \Proto\Api\EntOrder::class);
  94. $this->base_info = $var;
  95. return $this;
  96. }
  97. /**
  98. * 当前电池
  99. *
  100. * Generated from protobuf field <code>string current_battery_sn = 2;</code>
  101. * @return string
  102. */
  103. public function getCurrentBatterySn()
  104. {
  105. return $this->current_battery_sn;
  106. }
  107. /**
  108. * 当前电池
  109. *
  110. * Generated from protobuf field <code>string current_battery_sn = 2;</code>
  111. * @param string $var
  112. * @return $this
  113. */
  114. public function setCurrentBatterySn($var)
  115. {
  116. GPBUtil::checkString($var, True);
  117. $this->current_battery_sn = $var;
  118. return $this;
  119. }
  120. /**
  121. * 购买绑定的电池
  122. *
  123. * Generated from protobuf field <code>string battery_sn = 3;</code>
  124. * @return string
  125. */
  126. public function getBatterySn()
  127. {
  128. return $this->battery_sn;
  129. }
  130. /**
  131. * 购买绑定的电池
  132. *
  133. * Generated from protobuf field <code>string battery_sn = 3;</code>
  134. * @param string $var
  135. * @return $this
  136. */
  137. public function setBatterySn($var)
  138. {
  139. GPBUtil::checkString($var, True);
  140. $this->battery_sn = $var;
  141. return $this;
  142. }
  143. /**
  144. * 剩余用量
  145. *
  146. * Generated from protobuf field <code>string remain_capacity = 4;</code>
  147. * @return string
  148. */
  149. public function getRemainCapacity()
  150. {
  151. return $this->remain_capacity;
  152. }
  153. /**
  154. * 剩余用量
  155. *
  156. * Generated from protobuf field <code>string remain_capacity = 4;</code>
  157. * @param string $var
  158. * @return $this
  159. */
  160. public function setRemainCapacity($var)
  161. {
  162. GPBUtil::checkString($var, True);
  163. $this->remain_capacity = $var;
  164. return $this;
  165. }
  166. /**
  167. * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
  168. *
  169. * Generated from protobuf field <code>int32 pledge_status = 5;</code>
  170. * @return int
  171. */
  172. public function getPledgeStatus()
  173. {
  174. return $this->pledge_status;
  175. }
  176. /**
  177. * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
  178. *
  179. * Generated from protobuf field <code>int32 pledge_status = 5;</code>
  180. * @param int $var
  181. * @return $this
  182. */
  183. public function setPledgeStatus($var)
  184. {
  185. GPBUtil::checkInt32($var);
  186. $this->pledge_status = $var;
  187. return $this;
  188. }
  189. }