123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntBattery.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.EntBattery</code>
- */
- class EntBattery extends \Google\Protobuf\Internal\Message
- {
- /**
- * 电池编号
- *
- * Generated from protobuf field <code>string battery_sn = 1;</code>
- */
- protected $battery_sn = '';
- /**
- * 租赁方式
- *
- * Generated from protobuf field <code>.proto.api.BATTERY_HIRE_TYPE battery_hire_type = 2;</code>
- */
- protected $battery_hire_type = 0;
- /**
- * 电池类型
- *
- * Generated from protobuf field <code>string battery_type = 3;</code>
- */
- protected $battery_type = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $battery_sn
- * 电池编号
- * @type int $battery_hire_type
- * 租赁方式
- * @type string $battery_type
- * 电池类型
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntBattery::initOnce();
- parent::__construct($data);
- }
- /**
- * 电池编号
- *
- * Generated from protobuf field <code>string battery_sn = 1;</code>
- * @return string
- */
- public function getBatterySn()
- {
- return $this->battery_sn;
- }
- /**
- * 电池编号
- *
- * Generated from protobuf field <code>string battery_sn = 1;</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>.proto.api.BATTERY_HIRE_TYPE battery_hire_type = 2;</code>
- * @return int
- */
- public function getBatteryHireType()
- {
- return $this->battery_hire_type;
- }
- /**
- * 租赁方式
- *
- * Generated from protobuf field <code>.proto.api.BATTERY_HIRE_TYPE battery_hire_type = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setBatteryHireType($var)
- {
- GPBUtil::checkEnum($var, \Proto\Api\BATTERY_HIRE_TYPE::class);
- $this->battery_hire_type = $var;
- return $this;
- }
- /**
- * 电池类型
- *
- * Generated from protobuf field <code>string battery_type = 3;</code>
- * @return string
- */
- public function getBatteryType()
- {
- return $this->battery_type;
- }
- /**
- * 电池类型
- *
- * Generated from protobuf field <code>string battery_type = 3;</code>
- * @param string $var
- * @return $this
- */
- public function setBatteryType($var)
- {
- GPBUtil::checkString($var, True);
- $this->battery_type = $var;
- return $this;
- }
- }
|