123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api\GetBatteryMileageAndCyclesRes;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.GetBatteryMileageAndCyclesRes.BatteryMileage</code>
- */
- class BatteryMileage extends \Google\Protobuf\Internal\Message
- {
- /**
- * 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
- *
- * Generated from protobuf field <code>int32 begin = 1;</code>
- */
- protected $begin = 0;
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 data = 2;</code>
- */
- protected $data = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $begin
- * 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
- * @type int $data
- * 电池数量
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
- *
- * Generated from protobuf field <code>int32 begin = 1;</code>
- * @return int
- */
- public function getBegin()
- {
- return $this->begin;
- }
- /**
- * 行驶公里范围 起始值 0 (0-2.5w)2.5 (2.5w - 5w) 5(5w-7.5w) 7.5 (7.5w - 10w) 10w (10w - ∞)
- *
- * Generated from protobuf field <code>int32 begin = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setBegin($var)
- {
- GPBUtil::checkInt32($var);
- $this->begin = $var;
- return $this;
- }
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 data = 2;</code>
- * @return int
- */
- public function getData()
- {
- return $this->data;
- }
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 data = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setData($var)
- {
- GPBUtil::checkInt32($var);
- $this->data = $var;
- return $this;
- }
- }
|