BatteryCountArea.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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\GetDeviceCountRes;
  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.BatteryCountArea</code>
  11. */
  12. class BatteryCountArea extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 地区
  16. *
  17. * Generated from protobuf field <code>string area = 1;</code>
  18. */
  19. protected $area = '';
  20. /**
  21. * 电池数量
  22. *
  23. * Generated from protobuf field <code>int32 count = 2;</code>
  24. */
  25. protected $count = 0;
  26. /**
  27. * Constructor.
  28. *
  29. * @param array $data {
  30. * Optional. Data for populating the Message object.
  31. *
  32. * @type string $area
  33. * 地区
  34. * @type int $count
  35. * 电池数量
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\LargeScreenData::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 地区
  44. *
  45. * Generated from protobuf field <code>string area = 1;</code>
  46. * @return string
  47. */
  48. public function getArea()
  49. {
  50. return $this->area;
  51. }
  52. /**
  53. * 地区
  54. *
  55. * Generated from protobuf field <code>string area = 1;</code>
  56. * @param string $var
  57. * @return $this
  58. */
  59. public function setArea($var)
  60. {
  61. GPBUtil::checkString($var, True);
  62. $this->area = $var;
  63. return $this;
  64. }
  65. /**
  66. * 电池数量
  67. *
  68. * Generated from protobuf field <code>int32 count = 2;</code>
  69. * @return int
  70. */
  71. public function getCount()
  72. {
  73. return $this->count;
  74. }
  75. /**
  76. * 电池数量
  77. *
  78. * Generated from protobuf field <code>int32 count = 2;</code>
  79. * @param int $var
  80. * @return $this
  81. */
  82. public function setCount($var)
  83. {
  84. GPBUtil::checkInt32($var);
  85. $this->count = $var;
  86. return $this;
  87. }
  88. }