123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.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.GetAlarmListRes</code>
- */
- class GetAlarmListRes extends \Google\Protobuf\Internal\Message
- {
- /**
- * 告警说明
- *
- * Generated from protobuf field <code>string desc = 1;</code>
- */
- protected $desc = '';
- /**
- * 设备编号
- *
- * Generated from protobuf field <code>string dev_id = 2;</code>
- */
- protected $dev_id = '';
- /**
- * 告警时间
- *
- * Generated from protobuf field <code>int64 alarm_time = 3;</code>
- */
- protected $alarm_time = 0;
- /**
- * 经度
- *
- * Generated from protobuf field <code>float longitude = 4;</code>
- */
- protected $longitude = 0.0;
- /**
- * 纬度
- *
- * Generated from protobuf field <code>string latitude = 5;</code>
- */
- protected $latitude = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $desc
- * 告警说明
- * @type string $dev_id
- * 设备编号
- * @type int|string $alarm_time
- * 告警时间
- * @type float $longitude
- * 经度
- * @type string $latitude
- * 纬度
- * }
- */
- 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>string dev_id = 2;</code>
- * @return string
- */
- public function getDevId()
- {
- return $this->dev_id;
- }
- /**
- * 设备编号
- *
- * Generated from protobuf field <code>string dev_id = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setDevId($var)
- {
- GPBUtil::checkString($var, True);
- $this->dev_id = $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;
- }
- /**
- * 经度
- *
- * Generated from protobuf field <code>float longitude = 4;</code>
- * @return float
- */
- public function getLongitude()
- {
- return $this->longitude;
- }
- /**
- * 经度
- *
- * Generated from protobuf field <code>float longitude = 4;</code>
- * @param float $var
- * @return $this
- */
- public function setLongitude($var)
- {
- GPBUtil::checkFloat($var);
- $this->longitude = $var;
- return $this;
- }
- /**
- * 纬度
- *
- * Generated from protobuf field <code>string latitude = 5;</code>
- * @return string
- */
- public function getLatitude()
- {
- return $this->latitude;
- }
- /**
- * 纬度
- *
- * Generated from protobuf field <code>string latitude = 5;</code>
- * @param string $var
- * @return $this
- */
- public function setLatitude($var)
- {
- GPBUtil::checkString($var, True);
- $this->latitude = $var;
- return $this;
- }
- }
|