Item.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/OrderExchange.proto
  5. namespace Proto\Api\ApplyRefundListRes;
  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.ApplyRefundListRes.Item</code>
  11. */
  12. class Item extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 订单信息
  16. *
  17. * Generated from protobuf field <code>.proto.api.EntExchangeOrder order_info = 1;</code>
  18. */
  19. protected $order_info = null;
  20. /**
  21. * 门店信息
  22. *
  23. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
  24. */
  25. protected $shop_info = null;
  26. /**
  27. * 电池信息
  28. *
  29. * Generated from protobuf field <code>.proto.api.EntBattery battery_info = 3;</code>
  30. */
  31. protected $battery_info = null;
  32. /**
  33. * 申请退款id
  34. *
  35. * Generated from protobuf field <code>int32 refund_id = 4;</code>
  36. */
  37. protected $refund_id = 0;
  38. /**
  39. * 申请退款状态
  40. *
  41. * Generated from protobuf field <code>.proto.api.APPLY_REFUND_STATUS refund_status = 5;</code>
  42. */
  43. protected $refund_status = 0;
  44. /**
  45. * Constructor.
  46. *
  47. * @param array $data {
  48. * Optional. Data for populating the Message object.
  49. *
  50. * @type \Proto\Api\EntExchangeOrder $order_info
  51. * 订单信息
  52. * @type \Proto\Api\EntAdmin $shop_info
  53. * 门店信息
  54. * @type \Proto\Api\EntBattery $battery_info
  55. * 电池信息
  56. * @type int $refund_id
  57. * 申请退款id
  58. * @type int $refund_status
  59. * 申请退款状态
  60. * }
  61. */
  62. public function __construct($data = NULL) {
  63. \GPBMetadata\Api\OrderExchange::initOnce();
  64. parent::__construct($data);
  65. }
  66. /**
  67. * 订单信息
  68. *
  69. * Generated from protobuf field <code>.proto.api.EntExchangeOrder order_info = 1;</code>
  70. * @return \Proto\Api\EntExchangeOrder|null
  71. */
  72. public function getOrderInfo()
  73. {
  74. return $this->order_info;
  75. }
  76. public function hasOrderInfo()
  77. {
  78. return isset($this->order_info);
  79. }
  80. public function clearOrderInfo()
  81. {
  82. unset($this->order_info);
  83. }
  84. /**
  85. * 订单信息
  86. *
  87. * Generated from protobuf field <code>.proto.api.EntExchangeOrder order_info = 1;</code>
  88. * @param \Proto\Api\EntExchangeOrder $var
  89. * @return $this
  90. */
  91. public function setOrderInfo($var)
  92. {
  93. GPBUtil::checkMessage($var, \Proto\Api\EntExchangeOrder::class);
  94. $this->order_info = $var;
  95. return $this;
  96. }
  97. /**
  98. * 门店信息
  99. *
  100. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
  101. * @return \Proto\Api\EntAdmin|null
  102. */
  103. public function getShopInfo()
  104. {
  105. return $this->shop_info;
  106. }
  107. public function hasShopInfo()
  108. {
  109. return isset($this->shop_info);
  110. }
  111. public function clearShopInfo()
  112. {
  113. unset($this->shop_info);
  114. }
  115. /**
  116. * 门店信息
  117. *
  118. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 2;</code>
  119. * @param \Proto\Api\EntAdmin $var
  120. * @return $this
  121. */
  122. public function setShopInfo($var)
  123. {
  124. GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
  125. $this->shop_info = $var;
  126. return $this;
  127. }
  128. /**
  129. * 电池信息
  130. *
  131. * Generated from protobuf field <code>.proto.api.EntBattery battery_info = 3;</code>
  132. * @return \Proto\Api\EntBattery|null
  133. */
  134. public function getBatteryInfo()
  135. {
  136. return $this->battery_info;
  137. }
  138. public function hasBatteryInfo()
  139. {
  140. return isset($this->battery_info);
  141. }
  142. public function clearBatteryInfo()
  143. {
  144. unset($this->battery_info);
  145. }
  146. /**
  147. * 电池信息
  148. *
  149. * Generated from protobuf field <code>.proto.api.EntBattery battery_info = 3;</code>
  150. * @param \Proto\Api\EntBattery $var
  151. * @return $this
  152. */
  153. public function setBatteryInfo($var)
  154. {
  155. GPBUtil::checkMessage($var, \Proto\Api\EntBattery::class);
  156. $this->battery_info = $var;
  157. return $this;
  158. }
  159. /**
  160. * 申请退款id
  161. *
  162. * Generated from protobuf field <code>int32 refund_id = 4;</code>
  163. * @return int
  164. */
  165. public function getRefundId()
  166. {
  167. return $this->refund_id;
  168. }
  169. /**
  170. * 申请退款id
  171. *
  172. * Generated from protobuf field <code>int32 refund_id = 4;</code>
  173. * @param int $var
  174. * @return $this
  175. */
  176. public function setRefundId($var)
  177. {
  178. GPBUtil::checkInt32($var);
  179. $this->refund_id = $var;
  180. return $this;
  181. }
  182. /**
  183. * 申请退款状态
  184. *
  185. * Generated from protobuf field <code>.proto.api.APPLY_REFUND_STATUS refund_status = 5;</code>
  186. * @return int
  187. */
  188. public function getRefundStatus()
  189. {
  190. return $this->refund_status;
  191. }
  192. /**
  193. * 申请退款状态
  194. *
  195. * Generated from protobuf field <code>.proto.api.APPLY_REFUND_STATUS refund_status = 5;</code>
  196. * @param int $var
  197. * @return $this
  198. */
  199. public function setRefundStatus($var)
  200. {
  201. GPBUtil::checkEnum($var, \Proto\Api\APPLY_REFUND_STATUS::class);
  202. $this->refund_status = $var;
  203. return $this;
  204. }
  205. }