123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api\GetDeviceCountRes;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.GetDeviceCountRes.BatteryCountArea</code>
- */
- class BatteryCountArea extends \Google\Protobuf\Internal\Message
- {
- /**
- * 地区
- *
- * Generated from protobuf field <code>string area = 1;</code>
- */
- protected $area = '';
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 count = 2;</code>
- */
- protected $count = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $area
- * 地区
- * @type int $count
- * 电池数量
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 地区
- *
- * Generated from protobuf field <code>string area = 1;</code>
- * @return string
- */
- public function getArea()
- {
- return $this->area;
- }
- /**
- * 地区
- *
- * Generated from protobuf field <code>string area = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setArea($var)
- {
- GPBUtil::checkString($var, True);
- $this->area = $var;
- return $this;
- }
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 count = 2;</code>
- * @return int
- */
- public function getCount()
- {
- return $this->count;
- }
- /**
- * 电池数量
- *
- * Generated from protobuf field <code>int32 count = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setCount($var)
- {
- GPBUtil::checkInt32($var);
- $this->count = $var;
- return $this;
- }
- }
|