12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>proto.api.GetDeviceCountReq</code>
- */
- class GetDeviceCountReq extends \Google\Protobuf\Internal\Message
- {
- /**
- * 开始时间时间戳
- *int64 startTime = 1;
- * 结束时间时间戳
- *int64 endTime = 2;
- * 省份的code
- *
- * Generated from protobuf field <code>string province_code = 1;</code>
- */
- protected $province_code = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $province_code
- * 开始时间时间戳
- * int64 startTime = 1;
- * 结束时间时间戳
- * int64 endTime = 2;
- * 省份的code
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 开始时间时间戳
- *int64 startTime = 1;
- * 结束时间时间戳
- *int64 endTime = 2;
- * 省份的code
- *
- * Generated from protobuf field <code>string province_code = 1;</code>
- * @return string
- */
- public function getProvinceCode()
- {
- return $this->province_code;
- }
- /**
- * 开始时间时间戳
- *int64 startTime = 1;
- * 结束时间时间戳
- *int64 endTime = 2;
- * 省份的code
- *
- * Generated from protobuf field <code>string province_code = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setProvinceCode($var)
- {
- GPBUtil::checkString($var, True);
- $this->province_code = $var;
- return $this;
- }
- }
|