123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntCityPackage.proto
- namespace Proto\Api\CityPackageOrderEnt;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.CityPackageOrderEnt.OrderInfoItem</code>
- */
- class OrderInfoItem extends \Google\Protobuf\Internal\Message
- {
- /**
- * 基础信息
- *
- * Generated from protobuf field <code>.proto.api.EntOrder base_info = 1;</code>
- */
- protected $base_info = null;
- /**
- * 当前电池
- *
- * Generated from protobuf field <code>string current_battery_sn = 2;</code>
- */
- protected $current_battery_sn = '';
- /**
- * 购买绑定的电池
- *
- * Generated from protobuf field <code>string battery_sn = 3;</code>
- */
- protected $battery_sn = '';
- /**
- * 剩余用量
- *
- * Generated from protobuf field <code>string remain_capacity = 4;</code>
- */
- protected $remain_capacity = '';
- /**
- * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
- *
- * Generated from protobuf field <code>int32 pledge_status = 5;</code>
- */
- protected $pledge_status = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\EntOrder $base_info
- * 基础信息
- * @type string $current_battery_sn
- * 当前电池
- * @type string $battery_sn
- * 购买绑定的电池
- * @type string $remain_capacity
- * 剩余用量
- * @type int $pledge_status
- * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntCityPackage::initOnce();
- parent::__construct($data);
- }
- /**
- * 基础信息
- *
- * Generated from protobuf field <code>.proto.api.EntOrder base_info = 1;</code>
- * @return \Proto\Api\EntOrder|null
- */
- public function getBaseInfo()
- {
- return $this->base_info;
- }
- public function hasBaseInfo()
- {
- return isset($this->base_info);
- }
- public function clearBaseInfo()
- {
- unset($this->base_info);
- }
- /**
- * 基础信息
- *
- * Generated from protobuf field <code>.proto.api.EntOrder base_info = 1;</code>
- * @param \Proto\Api\EntOrder $var
- * @return $this
- */
- public function setBaseInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\EntOrder::class);
- $this->base_info = $var;
- return $this;
- }
- /**
- * 当前电池
- *
- * Generated from protobuf field <code>string current_battery_sn = 2;</code>
- * @return string
- */
- public function getCurrentBatterySn()
- {
- return $this->current_battery_sn;
- }
- /**
- * 当前电池
- *
- * Generated from protobuf field <code>string current_battery_sn = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setCurrentBatterySn($var)
- {
- GPBUtil::checkString($var, True);
- $this->current_battery_sn = $var;
- return $this;
- }
- /**
- * 购买绑定的电池
- *
- * Generated from protobuf field <code>string battery_sn = 3;</code>
- * @return string
- */
- public function getBatterySn()
- {
- return $this->battery_sn;
- }
- /**
- * 购买绑定的电池
- *
- * Generated from protobuf field <code>string battery_sn = 3;</code>
- * @param string $var
- * @return $this
- */
- public function setBatterySn($var)
- {
- GPBUtil::checkString($var, True);
- $this->battery_sn = $var;
- return $this;
- }
- /**
- * 剩余用量
- *
- * Generated from protobuf field <code>string remain_capacity = 4;</code>
- * @return string
- */
- public function getRemainCapacity()
- {
- return $this->remain_capacity;
- }
- /**
- * 剩余用量
- *
- * Generated from protobuf field <code>string remain_capacity = 4;</code>
- * @param string $var
- * @return $this
- */
- public function setRemainCapacity($var)
- {
- GPBUtil::checkString($var, True);
- $this->remain_capacity = $var;
- return $this;
- }
- /**
- * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
- *
- * Generated from protobuf field <code>int32 pledge_status = 5;</code>
- * @return int
- */
- public function getPledgeStatus()
- {
- return $this->pledge_status;
- }
- /**
- * 押金状态 0待支付,1已支付,2免押,3无需支付 4 押金已退
- *
- * Generated from protobuf field <code>int32 pledge_status = 5;</code>
- * @param int $var
- * @return $this
- */
- public function setPledgeStatus($var)
- {
- GPBUtil::checkInt32($var);
- $this->pledge_status = $var;
- return $this;
- }
- }
|