GetAbnormalDataRes.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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.GetAbnormalDataRes</code>
  11. */
  12. class GetAbnormalDataRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 当天的异常数据
  16. *
  17. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.AbnormalData today_abnormal_data = 1;</code>
  18. */
  19. protected $today_abnormal_data = null;
  20. /**
  21. * 电池环比数据
  22. *
  23. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.CompareData battery_compare_data = 2;</code>
  24. */
  25. protected $battery_compare_data = null;
  26. /**
  27. * 充电桩的环比数据
  28. *
  29. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.CompareData chrpannel_compare_data = 3;</code>
  30. */
  31. protected $chrpannel_compare_data = null;
  32. /**
  33. * 前十天的异常数据
  34. *
  35. * Generated from protobuf field <code>repeated .proto.api.GetAbnormalDataRes.AbnormalData abnormal_data = 4;</code>
  36. */
  37. private $abnormal_data;
  38. /**
  39. * Constructor.
  40. *
  41. * @param array $data {
  42. * Optional. Data for populating the Message object.
  43. *
  44. * @type \Proto\Api\GetAbnormalDataRes\AbnormalData $today_abnormal_data
  45. * 当天的异常数据
  46. * @type \Proto\Api\GetAbnormalDataRes\CompareData $battery_compare_data
  47. * 电池环比数据
  48. * @type \Proto\Api\GetAbnormalDataRes\CompareData $chrpannel_compare_data
  49. * 充电桩的环比数据
  50. * @type array<\Proto\Api\GetAbnormalDataRes\AbnormalData>|\Google\Protobuf\Internal\RepeatedField $abnormal_data
  51. * 前十天的异常数据
  52. * }
  53. */
  54. public function __construct($data = NULL) {
  55. \GPBMetadata\Api\LargeScreenData::initOnce();
  56. parent::__construct($data);
  57. }
  58. /**
  59. * 当天的异常数据
  60. *
  61. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.AbnormalData today_abnormal_data = 1;</code>
  62. * @return \Proto\Api\GetAbnormalDataRes\AbnormalData|null
  63. */
  64. public function getTodayAbnormalData()
  65. {
  66. return $this->today_abnormal_data;
  67. }
  68. public function hasTodayAbnormalData()
  69. {
  70. return isset($this->today_abnormal_data);
  71. }
  72. public function clearTodayAbnormalData()
  73. {
  74. unset($this->today_abnormal_data);
  75. }
  76. /**
  77. * 当天的异常数据
  78. *
  79. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.AbnormalData today_abnormal_data = 1;</code>
  80. * @param \Proto\Api\GetAbnormalDataRes\AbnormalData $var
  81. * @return $this
  82. */
  83. public function setTodayAbnormalData($var)
  84. {
  85. GPBUtil::checkMessage($var, \Proto\Api\GetAbnormalDataRes\AbnormalData::class);
  86. $this->today_abnormal_data = $var;
  87. return $this;
  88. }
  89. /**
  90. * 电池环比数据
  91. *
  92. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.CompareData battery_compare_data = 2;</code>
  93. * @return \Proto\Api\GetAbnormalDataRes\CompareData|null
  94. */
  95. public function getBatteryCompareData()
  96. {
  97. return $this->battery_compare_data;
  98. }
  99. public function hasBatteryCompareData()
  100. {
  101. return isset($this->battery_compare_data);
  102. }
  103. public function clearBatteryCompareData()
  104. {
  105. unset($this->battery_compare_data);
  106. }
  107. /**
  108. * 电池环比数据
  109. *
  110. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.CompareData battery_compare_data = 2;</code>
  111. * @param \Proto\Api\GetAbnormalDataRes\CompareData $var
  112. * @return $this
  113. */
  114. public function setBatteryCompareData($var)
  115. {
  116. GPBUtil::checkMessage($var, \Proto\Api\GetAbnormalDataRes\CompareData::class);
  117. $this->battery_compare_data = $var;
  118. return $this;
  119. }
  120. /**
  121. * 充电桩的环比数据
  122. *
  123. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.CompareData chrpannel_compare_data = 3;</code>
  124. * @return \Proto\Api\GetAbnormalDataRes\CompareData|null
  125. */
  126. public function getChrpannelCompareData()
  127. {
  128. return $this->chrpannel_compare_data;
  129. }
  130. public function hasChrpannelCompareData()
  131. {
  132. return isset($this->chrpannel_compare_data);
  133. }
  134. public function clearChrpannelCompareData()
  135. {
  136. unset($this->chrpannel_compare_data);
  137. }
  138. /**
  139. * 充电桩的环比数据
  140. *
  141. * Generated from protobuf field <code>.proto.api.GetAbnormalDataRes.CompareData chrpannel_compare_data = 3;</code>
  142. * @param \Proto\Api\GetAbnormalDataRes\CompareData $var
  143. * @return $this
  144. */
  145. public function setChrpannelCompareData($var)
  146. {
  147. GPBUtil::checkMessage($var, \Proto\Api\GetAbnormalDataRes\CompareData::class);
  148. $this->chrpannel_compare_data = $var;
  149. return $this;
  150. }
  151. /**
  152. * 前十天的异常数据
  153. *
  154. * Generated from protobuf field <code>repeated .proto.api.GetAbnormalDataRes.AbnormalData abnormal_data = 4;</code>
  155. * @return \Google\Protobuf\Internal\RepeatedField
  156. */
  157. public function getAbnormalData()
  158. {
  159. return $this->abnormal_data;
  160. }
  161. /**
  162. * 前十天的异常数据
  163. *
  164. * Generated from protobuf field <code>repeated .proto.api.GetAbnormalDataRes.AbnormalData abnormal_data = 4;</code>
  165. * @param array<\Proto\Api\GetAbnormalDataRes\AbnormalData>|\Google\Protobuf\Internal\RepeatedField $var
  166. * @return $this
  167. */
  168. public function setAbnormalData($var)
  169. {
  170. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\GetAbnormalDataRes\AbnormalData::class);
  171. $this->abnormal_data = $arr;
  172. return $this;
  173. }
  174. }