123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api\GetBatteryInfoRes;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.GetBatteryInfoRes.Alarm</code>
- */
- class Alarm extends \Google\Protobuf\Internal\Message
- {
- /**
- * 告警说明
- *
- * Generated from protobuf field <code>string desc = 1;</code>
- */
- protected $desc = '';
- /**
- * 告警等级
- *
- * Generated from protobuf field <code>int32 level = 2;</code>
- */
- protected $level = 0;
- /**
- * 告警时间
- *
- * Generated from protobuf field <code>int64 alarm_time = 3;</code>
- */
- protected $alarm_time = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $desc
- * 告警说明
- * @type int $level
- * 告警等级
- * @type int|string $alarm_time
- * 告警时间
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 告警说明
- *
- * Generated from protobuf field <code>string desc = 1;</code>
- * @return string
- */
- public function getDesc()
- {
- return $this->desc;
- }
- /**
- * 告警说明
- *
- * Generated from protobuf field <code>string desc = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setDesc($var)
- {
- GPBUtil::checkString($var, True);
- $this->desc = $var;
- return $this;
- }
- /**
- * 告警等级
- *
- * Generated from protobuf field <code>int32 level = 2;</code>
- * @return int
- */
- public function getLevel()
- {
- return $this->level;
- }
- /**
- * 告警等级
- *
- * Generated from protobuf field <code>int32 level = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setLevel($var)
- {
- GPBUtil::checkInt32($var);
- $this->level = $var;
- return $this;
- }
- /**
- * 告警时间
- *
- * Generated from protobuf field <code>int64 alarm_time = 3;</code>
- * @return int|string
- */
- public function getAlarmTime()
- {
- return $this->alarm_time;
- }
- /**
- * 告警时间
- *
- * Generated from protobuf field <code>int64 alarm_time = 3;</code>
- * @param int|string $var
- * @return $this
- */
- public function setAlarmTime($var)
- {
- GPBUtil::checkInt64($var);
- $this->alarm_time = $var;
- return $this;
- }
- }
|