123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntOrder.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * 订单实体
- *
- * Generated from protobuf message <code>proto.api.EntOrder</code>
- */
- class EntOrder extends \Google\Protobuf\Internal\Message
- {
- /**
- * 订单编号
- *
- * Generated from protobuf field <code>string order_sn = 1;</code>
- */
- protected $order_sn = '';
- /**
- * 订单ID
- *
- * Generated from protobuf field <code>int32 order_id = 2;</code>
- */
- protected $order_id = 0;
- /**
- * 用户信息
- *
- * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
- */
- protected $user_info = null;
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
- */
- protected $shop_info = null;
- /**
- * 订单时间
- *
- * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
- */
- protected $order_time = null;
- /**
- * 支付方式
- *
- * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
- */
- protected $pay_method = 0;
- /**
- * 订单来源
- *
- * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
- */
- protected $order_source = 0;
- /**
- * 支付状态
- *
- * Generated from protobuf field <code>int32 pay_status = 8;</code>
- */
- protected $pay_status = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $order_sn
- * 订单编号
- * @type int $order_id
- * 订单ID
- * @type \Proto\Api\EntUser $user_info
- * 用户信息
- * @type \Proto\Api\EntAdmin $shop_info
- * 门店信息
- * @type \Proto\Api\OrderTime $order_time
- * 订单时间
- * @type int $pay_method
- * 支付方式
- * @type int $order_source
- * 订单来源
- * @type int $pay_status
- * 支付状态
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntOrder::initOnce();
- parent::__construct($data);
- }
- /**
- * 订单编号
- *
- * Generated from protobuf field <code>string order_sn = 1;</code>
- * @return string
- */
- public function getOrderSn()
- {
- return $this->order_sn;
- }
- /**
- * 订单编号
- *
- * Generated from protobuf field <code>string order_sn = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setOrderSn($var)
- {
- GPBUtil::checkString($var, True);
- $this->order_sn = $var;
- return $this;
- }
- /**
- * 订单ID
- *
- * Generated from protobuf field <code>int32 order_id = 2;</code>
- * @return int
- */
- public function getOrderId()
- {
- return $this->order_id;
- }
- /**
- * 订单ID
- *
- * Generated from protobuf field <code>int32 order_id = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setOrderId($var)
- {
- GPBUtil::checkInt32($var);
- $this->order_id = $var;
- return $this;
- }
- /**
- * 用户信息
- *
- * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
- * @return \Proto\Api\EntUser|null
- */
- public function getUserInfo()
- {
- return $this->user_info;
- }
- public function hasUserInfo()
- {
- return isset($this->user_info);
- }
- public function clearUserInfo()
- {
- unset($this->user_info);
- }
- /**
- * 用户信息
- *
- * Generated from protobuf field <code>.proto.api.EntUser user_info = 3;</code>
- * @param \Proto\Api\EntUser $var
- * @return $this
- */
- public function setUserInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntUser::class);
- $this->user_info = $var;
- return $this;
- }
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
- * @return \Proto\Api\EntAdmin|null
- */
- public function getShopInfo()
- {
- return $this->shop_info;
- }
- public function hasShopInfo()
- {
- return isset($this->shop_info);
- }
- public function clearShopInfo()
- {
- unset($this->shop_info);
- }
- /**
- * 门店信息
- *
- * Generated from protobuf field <code>.proto.api.EntAdmin shop_info = 4;</code>
- * @param \Proto\Api\EntAdmin $var
- * @return $this
- */
- public function setShopInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntAdmin::class);
- $this->shop_info = $var;
- return $this;
- }
- /**
- * 订单时间
- *
- * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
- * @return \Proto\Api\OrderTime|null
- */
- public function getOrderTime()
- {
- return $this->order_time;
- }
- public function hasOrderTime()
- {
- return isset($this->order_time);
- }
- public function clearOrderTime()
- {
- unset($this->order_time);
- }
- /**
- * 订单时间
- *
- * Generated from protobuf field <code>.proto.api.OrderTime order_time = 5;</code>
- * @param \Proto\Api\OrderTime $var
- * @return $this
- */
- public function setOrderTime($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\OrderTime::class);
- $this->order_time = $var;
- return $this;
- }
- /**
- * 支付方式
- *
- * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
- * @return int
- */
- public function getPayMethod()
- {
- return $this->pay_method;
- }
- /**
- * 支付方式
- *
- * Generated from protobuf field <code>.proto.api.PAY_METHOD pay_method = 6;</code>
- * @param int $var
- * @return $this
- */
- public function setPayMethod($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\PAY_METHOD::class);
- $this->pay_method = $var;
- return $this;
- }
- /**
- * 订单来源
- *
- * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
- * @return int
- */
- public function getOrderSource()
- {
- return $this->order_source;
- }
- /**
- * 订单来源
- *
- * Generated from protobuf field <code>.proto.api.REQUEST_SOURCE order_source = 7;</code>
- * @param int $var
- * @return $this
- */
- public function setOrderSource($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\REQUEST_SOURCE::class);
- $this->order_source = $var;
- return $this;
- }
- /**
- * 支付状态
- *
- * Generated from protobuf field <code>int32 pay_status = 8;</code>
- * @return int
- */
- public function getPayStatus()
- {
- return $this->pay_status;
- }
- /**
- * 支付状态
- *
- * Generated from protobuf field <code>int32 pay_status = 8;</code>
- * @param int $var
- * @return $this
- */
- public function setPayStatus($var)
- {
- GPBUtil::checkInt32($var);
- $this->pay_status = $var;
- return $this;
- }
- }
|