EntOrder.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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.EntOrder</code>
  13. */
  14. class EntOrder extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 订单编号
  18. *
  19. * Generated from protobuf field <code>string order_sn = 1;</code>
  20. */
  21. protected $order_sn = '';
  22. /**
  23. * 订单ID
  24. *
  25. * Generated from protobuf field <code>int32 order_id = 2;</code>
  26. */
  27. protected $order_id = 0;
  28. /**
  29. * 用户信息
  30. *
  31. * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
  32. */
  33. protected $user_info = null;
  34. /**
  35. * 门店信息
  36. *
  37. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
  38. */
  39. protected $shop_info = null;
  40. /**
  41. * 订单时间
  42. *
  43. * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
  44. */
  45. protected $order_time = null;
  46. /**
  47. * 支付方式
  48. *
  49. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
  50. */
  51. protected $pay_method = 0;
  52. /**
  53. * 订单来源
  54. *
  55. * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
  56. */
  57. protected $order_source = 0;
  58. /**
  59. * Constructor.
  60. *
  61. * @param array $data {
  62. * Optional. Data for populating the Message object.
  63. *
  64. * @type string $order_sn
  65. * 订单编号
  66. * @type int $order_id
  67. * 订单ID
  68. * @type \Proto\Api\EntUser $user_info
  69. * 用户信息
  70. * @type \Proto\Api\EntAdmin $shop_info
  71. * 门店信息
  72. * @type \Proto\Api\OrderTime $order_time
  73. * 订单时间
  74. * @type int $pay_method
  75. * 支付方式
  76. * @type int $order_source
  77. * 订单来源
  78. * }
  79. */
  80. public function __construct($data = NULL) {
  81. \GPBMetadata\Api\EntOrder::initOnce();
  82. parent::__construct($data);
  83. }
  84. /**
  85. * 订单编号
  86. *
  87. * Generated from protobuf field <code>string order_sn = 1;</code>
  88. * @return string
  89. */
  90. public function getOrderSn()
  91. {
  92. return $this->order_sn;
  93. }
  94. /**
  95. * 订单编号
  96. *
  97. * Generated from protobuf field <code>string order_sn = 1;</code>
  98. * @param string $var
  99. * @return $this
  100. */
  101. public function setOrderSn($var)
  102. {
  103. GPBUtil::checkString($var, True);
  104. $this->order_sn = $var;
  105. return $this;
  106. }
  107. /**
  108. * 订单ID
  109. *
  110. * Generated from protobuf field <code>int32 order_id = 2;</code>
  111. * @return int
  112. */
  113. public function getOrderId()
  114. {
  115. return $this->order_id;
  116. }
  117. /**
  118. * 订单ID
  119. *
  120. * Generated from protobuf field <code>int32 order_id = 2;</code>
  121. * @param int $var
  122. * @return $this
  123. */
  124. public function setOrderId($var)
  125. {
  126. GPBUtil::checkInt32($var);
  127. $this->order_id = $var;
  128. return $this;
  129. }
  130. /**
  131. * 用户信息
  132. *
  133. * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
  134. * @return \Proto\Api\EntUser|null
  135. */
  136. public function getUserInfo()
  137. {
  138. return $this->user_info;
  139. }
  140. public function hasUserInfo()
  141. {
  142. return isset($this->user_info);
  143. }
  144. public function clearUserInfo()
  145. {
  146. unset($this->user_info);
  147. }
  148. /**
  149. * 用户信息
  150. *
  151. * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
  152. * @param \Proto\Api\EntUser $var
  153. * @return $this
  154. */
  155. public function setUserInfo($var)
  156. {
  157. GPBUtil::checkMessage($var, \Proto\Api\EntUser::class);
  158. $this->user_info = $var;
  159. return $this;
  160. }
  161. /**
  162. * 门店信息
  163. *
  164. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
  165. * @return \Proto\Api\EntAdmin|null
  166. */
  167. public function getShopInfo()
  168. {
  169. return $this->shop_info;
  170. }
  171. public function hasShopInfo()
  172. {
  173. return isset($this->shop_info);
  174. }
  175. public function clearShopInfo()
  176. {
  177. unset($this->shop_info);
  178. }
  179. /**
  180. * 门店信息
  181. *
  182. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
  183. * @param \Proto\Api\EntAdmin $var
  184. * @return $this
  185. */
  186. public function setShopInfo($var)
  187. {
  188. GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
  189. $this->shop_info = $var;
  190. return $this;
  191. }
  192. /**
  193. * 订单时间
  194. *
  195. * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
  196. * @return \Proto\Api\OrderTime|null
  197. */
  198. public function getOrderTime()
  199. {
  200. return $this->order_time;
  201. }
  202. public function hasOrderTime()
  203. {
  204. return isset($this->order_time);
  205. }
  206. public function clearOrderTime()
  207. {
  208. unset($this->order_time);
  209. }
  210. /**
  211. * 订单时间
  212. *
  213. * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
  214. * @param \Proto\Api\OrderTime $var
  215. * @return $this
  216. */
  217. public function setOrderTime($var)
  218. {
  219. GPBUtil::checkMessage($var, \Proto\Api\OrderTime::class);
  220. $this->order_time = $var;
  221. return $this;
  222. }
  223. /**
  224. * 支付方式
  225. *
  226. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
  227. * @return int
  228. */
  229. public function getPayMethod()
  230. {
  231. return $this->pay_method;
  232. }
  233. /**
  234. * 支付方式
  235. *
  236. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
  237. * @param int $var
  238. * @return $this
  239. */
  240. public function setPayMethod($var)
  241. {
  242. GPBUtil::checkEnum($var, \Proto\Api\PAY_METHOD::class);
  243. $this->pay_method = $var;
  244. return $this;
  245. }
  246. /**
  247. * 订单来源
  248. *
  249. * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
  250. * @return int
  251. */
  252. public function getOrderSource()
  253. {
  254. return $this->order_source;
  255. }
  256. /**
  257. * 订单来源
  258. *
  259. * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
  260. * @param int $var
  261. * @return $this
  262. */
  263. public function setOrderSource($var)
  264. {
  265. GPBUtil::checkEnum($var, \Proto\Api\REQUEST_SOURCE::class);
  266. $this->order_source = $var;
  267. return $this;
  268. }
  269. }