123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?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.OrderTime</code>
- */
- class OrderTime extends \Google\Protobuf\Internal\Message
- {
- /**
- * 下单时间 时间戳 秒
- *
- * Generated from protobuf field <code>int32 ordering_time = 1;</code>
- */
- protected $ordering_time = 0;
- /**
- * 支付/购买时间 时间戳 秒
- *
- * Generated from protobuf field <code>int32 pay_time = 2;</code>
- */
- protected $pay_time = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $ordering_time
- * 下单时间 时间戳 秒
- * @type int $pay_time
- * 支付/购买时间 时间戳 秒
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntOrder::initOnce();
- parent::__construct($data);
- }
- /**
- * 下单时间 时间戳 秒
- *
- * Generated from protobuf field <code>int32 ordering_time = 1;</code>
- * @return int
- */
- public function getOrderingTime()
- {
- return $this->ordering_time;
- }
- /**
- * 下单时间 时间戳 秒
- *
- * Generated from protobuf field <code>int32 ordering_time = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setOrderingTime($var)
- {
- GPBUtil::checkInt32($var);
- $this->ordering_time = $var;
- return $this;
- }
- /**
- * 支付/购买时间 时间戳 秒
- *
- * Generated from protobuf field <code>int32 pay_time = 2;</code>
- * @return int
- */
- public function getPayTime()
- {
- return $this->pay_time;
- }
- /**
- * 支付/购买时间 时间戳 秒
- *
- * Generated from protobuf field <code>int32 pay_time = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setPayTime($var)
- {
- GPBUtil::checkInt32($var);
- $this->pay_time = $var;
- return $this;
- }
- }
|