123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- class OrderTime extends \Google\Protobuf\Internal\Message
- {
-
- protected $ordering_time = 0;
-
- protected $pay_time = 0;
-
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntOrder::initOnce();
- parent::__construct($data);
- }
-
- public function getOrderingTime()
- {
- return $this->ordering_time;
- }
-
- public function setOrderingTime($var)
- {
- GPBUtil::checkInt32($var);
- $this->ordering_time = $var;
- return $this;
- }
-
- public function getPayTime()
- {
- return $this->pay_time;
- }
-
- public function setPayTime($var)
- {
- GPBUtil::checkInt32($var);
- $this->pay_time = $var;
- return $this;
- }
- }
|