GetDeviceCountRes.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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.GetDeviceCountRes</code>
  11. */
  12. class GetDeviceCountRes extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 电池数量
  16. *
  17. * Generated from protobuf field <code>int32 battery_count = 1;</code>
  18. */
  19. protected $battery_count = 0;
  20. /**
  21. * 换电柜数量
  22. *
  23. * Generated from protobuf field <code>int32 exchange_cabinet_count = 2;</code>
  24. */
  25. protected $exchange_cabinet_count = 0;
  26. /**
  27. * 充电桩数量
  28. *
  29. * Generated from protobuf field <code>int32 charge_pile_count = 3;</code>
  30. */
  31. protected $charge_pile_count = 0;
  32. /**
  33. * 电池数量的地区分布数组
  34. *
  35. * Generated from protobuf field <code>repeated .proto.api.GetDeviceCountRes.AreaCount battery_count_areas = 4;</code>
  36. */
  37. private $battery_count_areas;
  38. /**
  39. * Constructor.
  40. *
  41. * @param array $data {
  42. * Optional. Data for populating the Message object.
  43. *
  44. * @type int $battery_count
  45. * 电池数量
  46. * @type int $exchange_cabinet_count
  47. * 换电柜数量
  48. * @type int $charge_pile_count
  49. * 充电桩数量
  50. * @type array<\Proto\Api\GetDeviceCountRes\AreaCount>|\Google\Protobuf\Internal\RepeatedField $battery_count_areas
  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>int32 battery_count = 1;</code>
  62. * @return int
  63. */
  64. public function getBatteryCount()
  65. {
  66. return $this->battery_count;
  67. }
  68. /**
  69. * 电池数量
  70. *
  71. * Generated from protobuf field <code>int32 battery_count = 1;</code>
  72. * @param int $var
  73. * @return $this
  74. */
  75. public function setBatteryCount($var)
  76. {
  77. GPBUtil::checkInt32($var);
  78. $this->battery_count = $var;
  79. return $this;
  80. }
  81. /**
  82. * 换电柜数量
  83. *
  84. * Generated from protobuf field <code>int32 exchange_cabinet_count = 2;</code>
  85. * @return int
  86. */
  87. public function getExchangeCabinetCount()
  88. {
  89. return $this->exchange_cabinet_count;
  90. }
  91. /**
  92. * 换电柜数量
  93. *
  94. * Generated from protobuf field <code>int32 exchange_cabinet_count = 2;</code>
  95. * @param int $var
  96. * @return $this
  97. */
  98. public function setExchangeCabinetCount($var)
  99. {
  100. GPBUtil::checkInt32($var);
  101. $this->exchange_cabinet_count = $var;
  102. return $this;
  103. }
  104. /**
  105. * 充电桩数量
  106. *
  107. * Generated from protobuf field <code>int32 charge_pile_count = 3;</code>
  108. * @return int
  109. */
  110. public function getChargePileCount()
  111. {
  112. return $this->charge_pile_count;
  113. }
  114. /**
  115. * 充电桩数量
  116. *
  117. * Generated from protobuf field <code>int32 charge_pile_count = 3;</code>
  118. * @param int $var
  119. * @return $this
  120. */
  121. public function setChargePileCount($var)
  122. {
  123. GPBUtil::checkInt32($var);
  124. $this->charge_pile_count = $var;
  125. return $this;
  126. }
  127. /**
  128. * 电池数量的地区分布数组
  129. *
  130. * Generated from protobuf field <code>repeated .proto.api.GetDeviceCountRes.AreaCount battery_count_areas = 4;</code>
  131. * @return \Google\Protobuf\Internal\RepeatedField
  132. */
  133. public function getBatteryCountAreas()
  134. {
  135. return $this->battery_count_areas;
  136. }
  137. /**
  138. * 电池数量的地区分布数组
  139. *
  140. * Generated from protobuf field <code>repeated .proto.api.GetDeviceCountRes.AreaCount battery_count_areas = 4;</code>
  141. * @param array<\Proto\Api\GetDeviceCountRes\AreaCount>|\Google\Protobuf\Internal\RepeatedField $var
  142. * @return $this
  143. */
  144. public function setBatteryCountAreas($var)
  145. {
  146. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\GetDeviceCountRes\AreaCount::class);
  147. $this->battery_count_areas = $arr;
  148. return $this;
  149. }
  150. }