EntOrder.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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. * 支付状态
  60. *
  61. * Generated from protobuf field <code>int32 pay_status = 8;</code>
  62. */
  63. protected $pay_status = 0;
  64. /**
  65. * Constructor.
  66. *
  67. * @param array $data {
  68. * Optional. Data for populating the Message object.
  69. *
  70. * @type string $order_sn
  71. * 订单编号
  72. * @type int $order_id
  73. * 订单ID
  74. * @type \Proto\Api\EntUser $user_info
  75. * 用户信息
  76. * @type \Proto\Api\EntAdmin $shop_info
  77. * 门店信息
  78. * @type \Proto\Api\OrderTime $order_time
  79. * 订单时间
  80. * @type int $pay_method
  81. * 支付方式
  82. * @type int $order_source
  83. * 订单来源
  84. * @type int $pay_status
  85. * 支付状态
  86. * }
  87. */
  88. public function __construct($data = NULL) {
  89. \GPBMetadata\Api\EntOrder::initOnce();
  90. parent::__construct($data);
  91. }
  92. /**
  93. * 订单编号
  94. *
  95. * Generated from protobuf field <code>string order_sn = 1;</code>
  96. * @return string
  97. */
  98. public function getOrderSn()
  99. {
  100. return $this->order_sn;
  101. }
  102. /**
  103. * 订单编号
  104. *
  105. * Generated from protobuf field <code>string order_sn = 1;</code>
  106. * @param string $var
  107. * @return $this
  108. */
  109. public function setOrderSn($var)
  110. {
  111. GPBUtil::checkString($var, True);
  112. $this->order_sn = $var;
  113. return $this;
  114. }
  115. /**
  116. * 订单ID
  117. *
  118. * Generated from protobuf field <code>int32 order_id = 2;</code>
  119. * @return int
  120. */
  121. public function getOrderId()
  122. {
  123. return $this->order_id;
  124. }
  125. /**
  126. * 订单ID
  127. *
  128. * Generated from protobuf field <code>int32 order_id = 2;</code>
  129. * @param int $var
  130. * @return $this
  131. */
  132. public function setOrderId($var)
  133. {
  134. GPBUtil::checkInt32($var);
  135. $this->order_id = $var;
  136. return $this;
  137. }
  138. /**
  139. * 用户信息
  140. *
  141. * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
  142. * @return \Proto\Api\EntUser|null
  143. */
  144. public function getUserInfo()
  145. {
  146. return $this->user_info;
  147. }
  148. public function hasUserInfo()
  149. {
  150. return isset($this->user_info);
  151. }
  152. public function clearUserInfo()
  153. {
  154. unset($this->user_info);
  155. }
  156. /**
  157. * 用户信息
  158. *
  159. * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
  160. * @param \Proto\Api\EntUser $var
  161. * @return $this
  162. */
  163. public function setUserInfo($var)
  164. {
  165. GPBUtil::checkMessage($var, \Proto\Api\EntUser::class);
  166. $this->user_info = $var;
  167. return $this;
  168. }
  169. /**
  170. * 门店信息
  171. *
  172. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
  173. * @return \Proto\Api\EntAdmin|null
  174. */
  175. public function getShopInfo()
  176. {
  177. return $this->shop_info;
  178. }
  179. public function hasShopInfo()
  180. {
  181. return isset($this->shop_info);
  182. }
  183. public function clearShopInfo()
  184. {
  185. unset($this->shop_info);
  186. }
  187. /**
  188. * 门店信息
  189. *
  190. * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
  191. * @param \Proto\Api\EntAdmin $var
  192. * @return $this
  193. */
  194. public function setShopInfo($var)
  195. {
  196. GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
  197. $this->shop_info = $var;
  198. return $this;
  199. }
  200. /**
  201. * 订单时间
  202. *
  203. * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
  204. * @return \Proto\Api\OrderTime|null
  205. */
  206. public function getOrderTime()
  207. {
  208. return $this->order_time;
  209. }
  210. public function hasOrderTime()
  211. {
  212. return isset($this->order_time);
  213. }
  214. public function clearOrderTime()
  215. {
  216. unset($this->order_time);
  217. }
  218. /**
  219. * 订单时间
  220. *
  221. * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
  222. * @param \Proto\Api\OrderTime $var
  223. * @return $this
  224. */
  225. public function setOrderTime($var)
  226. {
  227. GPBUtil::checkMessage($var, \Proto\Api\OrderTime::class);
  228. $this->order_time = $var;
  229. return $this;
  230. }
  231. /**
  232. * 支付方式
  233. *
  234. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
  235. * @return int
  236. */
  237. public function getPayMethod()
  238. {
  239. return $this->pay_method;
  240. }
  241. /**
  242. * 支付方式
  243. *
  244. * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
  245. * @param int $var
  246. * @return $this
  247. */
  248. public function setPayMethod($var)
  249. {
  250. GPBUtil::checkEnum($var, \Proto\Api\PAY_METHOD::class);
  251. $this->pay_method = $var;
  252. return $this;
  253. }
  254. /**
  255. * 订单来源
  256. *
  257. * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
  258. * @return int
  259. */
  260. public function getOrderSource()
  261. {
  262. return $this->order_source;
  263. }
  264. /**
  265. * 订单来源
  266. *
  267. * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
  268. * @param int $var
  269. * @return $this
  270. */
  271. public function setOrderSource($var)
  272. {
  273. GPBUtil::checkEnum($var, \Proto\Api\REQUEST_SOURCE::class);
  274. $this->order_source = $var;
  275. return $this;
  276. }
  277. /**
  278. * 支付状态
  279. *
  280. * Generated from protobuf field <code>int32 pay_status = 8;</code>
  281. * @return int
  282. */
  283. public function getPayStatus()
  284. {
  285. return $this->pay_status;
  286. }
  287. /**
  288. * 支付状态
  289. *
  290. * Generated from protobuf field <code>int32 pay_status = 8;</code>
  291. * @param int $var
  292. * @return $this
  293. */
  294. public function setPayStatus($var)
  295. {
  296. GPBUtil::checkInt32($var);
  297. $this->pay_status = $var;
  298. return $this;
  299. }
  300. }