GetDeviceCountReq.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.GetDeviceCountReq</code>
  11. */
  12. class GetDeviceCountReq extends \Google\Protobuf\Internal\Message
  13. {
  14. /**
  15. * 开始时间时间戳
  16. *int64 startTime = 1;
  17. * 结束时间时间戳
  18. *int64 endTime = 2;
  19. * 省份的code
  20. *
  21. * Generated from protobuf field <code>string province_code = 1;</code>
  22. */
  23. protected $province_code = '';
  24. /**
  25. * Constructor.
  26. *
  27. * @param array $data {
  28. * Optional. Data for populating the Message object.
  29. *
  30. * @type string $province_code
  31. * 开始时间时间戳
  32. * int64 startTime = 1;
  33. * 结束时间时间戳
  34. * int64 endTime = 2;
  35. * 省份的code
  36. * }
  37. */
  38. public function __construct($data = NULL) {
  39. \GPBMetadata\Api\LargeScreenData::initOnce();
  40. parent::__construct($data);
  41. }
  42. /**
  43. * 开始时间时间戳
  44. *int64 startTime = 1;
  45. * 结束时间时间戳
  46. *int64 endTime = 2;
  47. * 省份的code
  48. *
  49. * Generated from protobuf field <code>string province_code = 1;</code>
  50. * @return string
  51. */
  52. public function getProvinceCode()
  53. {
  54. return $this->province_code;
  55. }
  56. /**
  57. * 开始时间时间戳
  58. *int64 startTime = 1;
  59. * 结束时间时间戳
  60. *int64 endTime = 2;
  61. * 省份的code
  62. *
  63. * Generated from protobuf field <code>string province_code = 1;</code>
  64. * @param string $var
  65. * @return $this
  66. */
  67. public function setProvinceCode($var)
  68. {
  69. GPBUtil::checkString($var, True);
  70. $this->province_code = $var;
  71. return $this;
  72. }
  73. }