GetAlarmListRes.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/LargeScreenData.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * Generated from protobuf message <code>proto.api.GetAlarmListRes</code>
  11. */
  12. class GetAlarmListRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 告警说明
  16. *
  17. * Generated from protobuf field <code>string desc = 1;</code>
  18. */
  19. protected $desc = '';
  20. /**
  21. * 设备编号
  22. *
  23. * Generated from protobuf field <code>string dev_id = 2;</code>
  24. */
  25. protected $dev_id = '';
  26. /**
  27. * 告警时间
  28. *
  29. * Generated from protobuf field <code>int64 alarm_time = 3;</code>
  30. */
  31. protected $alarm_time = 0;
  32. /**
  33. * 经度
  34. *
  35. * Generated from protobuf field <code>float longitude = 4;</code>
  36. */
  37. protected $longitude = 0.0;
  38. /**
  39. * 纬度
  40. *
  41. * Generated from protobuf field <code>string latitude = 5;</code>
  42. */
  43. protected $latitude = '';
  44. /**
  45. * Constructor.
  46. *
  47. * @param array $data {
  48. * Optional. Data for populating the Message object.
  49. *
  50. * @type string $desc
  51. * 告警说明
  52. * @type string $dev_id
  53. * 设备编号
  54. * @type int|string $alarm_time
  55. * 告警时间
  56. * @type float $longitude
  57. * 经度
  58. * @type string $latitude
  59. * 纬度
  60. * }
  61. */
  62. public function __construct($data = NULL) {
  63. \GPBMetadata\Api\LargeScreenData::initOnce();
  64. parent::__construct($data);
  65. }
  66. /**
  67. * 告警说明
  68. *
  69. * Generated from protobuf field <code>string desc = 1;</code>
  70. * @return string
  71. */
  72. public function getDesc()
  73. {
  74. return $this->desc;
  75. }
  76. /**
  77. * 告警说明
  78. *
  79. * Generated from protobuf field <code>string desc = 1;</code>
  80. * @param string $var
  81. * @return $this
  82. */
  83. public function setDesc($var)
  84. {
  85. GPBUtil::checkString($var, True);
  86. $this->desc = $var;
  87. return $this;
  88. }
  89. /**
  90. * 设备编号
  91. *
  92. * Generated from protobuf field <code>string dev_id = 2;</code>
  93. * @return string
  94. */
  95. public function getDevId()
  96. {
  97. return $this->dev_id;
  98. }
  99. /**
  100. * 设备编号
  101. *
  102. * Generated from protobuf field <code>string dev_id = 2;</code>
  103. * @param string $var
  104. * @return $this
  105. */
  106. public function setDevId($var)
  107. {
  108. GPBUtil::checkString($var, True);
  109. $this->dev_id = $var;
  110. return $this;
  111. }
  112. /**
  113. * 告警时间
  114. *
  115. * Generated from protobuf field <code>int64 alarm_time = 3;</code>
  116. * @return int|string
  117. */
  118. public function getAlarmTime()
  119. {
  120. return $this->alarm_time;
  121. }
  122. /**
  123. * 告警时间
  124. *
  125. * Generated from protobuf field <code>int64 alarm_time = 3;</code>
  126. * @param int|string $var
  127. * @return $this
  128. */
  129. public function setAlarmTime($var)
  130. {
  131. GPBUtil::checkInt64($var);
  132. $this->alarm_time = $var;
  133. return $this;
  134. }
  135. /**
  136. * 经度
  137. *
  138. * Generated from protobuf field <code>float longitude = 4;</code>
  139. * @return float
  140. */
  141. public function getLongitude()
  142. {
  143. return $this->longitude;
  144. }
  145. /**
  146. * 经度
  147. *
  148. * Generated from protobuf field <code>float longitude = 4;</code>
  149. * @param float $var
  150. * @return $this
  151. */
  152. public function setLongitude($var)
  153. {
  154. GPBUtil::checkFloat($var);
  155. $this->longitude = $var;
  156. return $this;
  157. }
  158. /**
  159. * 纬度
  160. *
  161. * Generated from protobuf field <code>string latitude = 5;</code>
  162. * @return string
  163. */
  164. public function getLatitude()
  165. {
  166. return $this->latitude;
  167. }
  168. /**
  169. * 纬度
  170. *
  171. * Generated from protobuf field <code>string latitude = 5;</code>
  172. * @param string $var
  173. * @return $this
  174. */
  175. public function setLatitude($var)
  176. {
  177. GPBUtil::checkString($var, True);
  178. $this->latitude = $var;
  179. return $this;
  180. }
  181. }