EntExchangeOrder.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntOrder.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * 换电订单实体
  11. *
  12. * Generated from protobuf message <code>proto.api.EntExchangeOrder</code>
  13. */
  14. class EntExchangeOrder extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 设备用途类型.
  18. *
  19. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE device_use_type = 1;</code>
  20. */
  21. protected $device_use_type = 0;
  22. /**
  23. * 租金 分
  24. *
  25. * Generated from protobuf field <code>int32 hire_money = 2;</code>
  26. */
  27. protected $hire_money = 0;
  28. /**
  29. * 租赁时长
  30. *
  31. * Generated from protobuf field <code>string hire_duration_str = 3;</code>
  32. */
  33. protected $hire_duration_str = '';
  34. /**
  35. * 租赁单价
  36. *
  37. * Generated from protobuf field <code>int32 hire_price = 4;</code>
  38. */
  39. protected $hire_price = 0;
  40. /**
  41. * 订单编号
  42. *
  43. * Generated from protobuf field <code>string order_sn = 5;</code>
  44. */
  45. protected $order_sn = '';
  46. /**
  47. * 租电类型
  48. *
  49. * Generated from protobuf field <code>.proto.api.DEVICE_HIRE_SOURCE device_hire_source = 6;</code>
  50. */
  51. protected $device_hire_source = 0;
  52. /**
  53. * Constructor.
  54. *
  55. * @param array $data {
  56. * Optional. Data for populating the Message object.
  57. *
  58. * @type int $device_use_type
  59. * 设备用途类型.
  60. * @type int $hire_money
  61. * 租金 分
  62. * @type string $hire_duration_str
  63. * 租赁时长
  64. * @type int $hire_price
  65. * 租赁单价
  66. * @type string $order_sn
  67. * 订单编号
  68. * @type int $device_hire_source
  69. * 租电类型
  70. * }
  71. */
  72. public function __construct($data = NULL) {
  73. \GPBMetadata\Api\EntOrder::initOnce();
  74. parent::__construct($data);
  75. }
  76. /**
  77. * 设备用途类型.
  78. *
  79. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE device_use_type = 1;</code>
  80. * @return int
  81. */
  82. public function getDeviceUseType()
  83. {
  84. return $this->device_use_type;
  85. }
  86. /**
  87. * 设备用途类型.
  88. *
  89. * Generated from protobuf field <code>.proto.api.DEVICE_USE_TYPE device_use_type = 1;</code>
  90. * @param int $var
  91. * @return $this
  92. */
  93. public function setDeviceUseType($var)
  94. {
  95. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_USE_TYPE::class);
  96. $this->device_use_type = $var;
  97. return $this;
  98. }
  99. /**
  100. * 租金 分
  101. *
  102. * Generated from protobuf field <code>int32 hire_money = 2;</code>
  103. * @return int
  104. */
  105. public function getHireMoney()
  106. {
  107. return $this->hire_money;
  108. }
  109. /**
  110. * 租金 分
  111. *
  112. * Generated from protobuf field <code>int32 hire_money = 2;</code>
  113. * @param int $var
  114. * @return $this
  115. */
  116. public function setHireMoney($var)
  117. {
  118. GPBUtil::checkInt32($var);
  119. $this->hire_money = $var;
  120. return $this;
  121. }
  122. /**
  123. * 租赁时长
  124. *
  125. * Generated from protobuf field <code>string hire_duration_str = 3;</code>
  126. * @return string
  127. */
  128. public function getHireDurationStr()
  129. {
  130. return $this->hire_duration_str;
  131. }
  132. /**
  133. * 租赁时长
  134. *
  135. * Generated from protobuf field <code>string hire_duration_str = 3;</code>
  136. * @param string $var
  137. * @return $this
  138. */
  139. public function setHireDurationStr($var)
  140. {
  141. GPBUtil::checkString($var, True);
  142. $this->hire_duration_str = $var;
  143. return $this;
  144. }
  145. /**
  146. * 租赁单价
  147. *
  148. * Generated from protobuf field <code>int32 hire_price = 4;</code>
  149. * @return int
  150. */
  151. public function getHirePrice()
  152. {
  153. return $this->hire_price;
  154. }
  155. /**
  156. * 租赁单价
  157. *
  158. * Generated from protobuf field <code>int32 hire_price = 4;</code>
  159. * @param int $var
  160. * @return $this
  161. */
  162. public function setHirePrice($var)
  163. {
  164. GPBUtil::checkInt32($var);
  165. $this->hire_price = $var;
  166. return $this;
  167. }
  168. /**
  169. * 订单编号
  170. *
  171. * Generated from protobuf field <code>string order_sn = 5;</code>
  172. * @return string
  173. */
  174. public function getOrderSn()
  175. {
  176. return $this->order_sn;
  177. }
  178. /**
  179. * 订单编号
  180. *
  181. * Generated from protobuf field <code>string order_sn = 5;</code>
  182. * @param string $var
  183. * @return $this
  184. */
  185. public function setOrderSn($var)
  186. {
  187. GPBUtil::checkString($var, True);
  188. $this->order_sn = $var;
  189. return $this;
  190. }
  191. /**
  192. * 租电类型
  193. *
  194. * Generated from protobuf field <code>.proto.api.DEVICE_HIRE_SOURCE device_hire_source = 6;</code>
  195. * @return int
  196. */
  197. public function getDeviceHireSource()
  198. {
  199. return $this->device_hire_source;
  200. }
  201. /**
  202. * 租电类型
  203. *
  204. * Generated from protobuf field <code>.proto.api.DEVICE_HIRE_SOURCE device_hire_source = 6;</code>
  205. * @param int $var
  206. * @return $this
  207. */
  208. public function setDeviceHireSource($var)
  209. {
  210. GPBUtil::checkEnum($var, \Proto\Api\DEVICE_HIRE_SOURCE::class);
  211. $this->device_hire_source = $var;
  212. return $this;
  213. }
  214. }