123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/LargeScreenData.proto
- namespace Proto\Api\GetAbnormalDataRes;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * 环比数据
- *
- * Generated from protobuf message <code>proto.api.GetAbnormalDataRes.CompareData</code>
- */
- class CompareData extends \Google\Protobuf\Internal\Message
- {
- /**
- * 日环比 %
- *
- * Generated from protobuf field <code>float day_compare = 1;</code>
- */
- protected $day_compare = 0.0;
- /**
- * 周环比 %
- *
- * Generated from protobuf field <code>float week_compare = 2;</code>
- */
- protected $week_compare = 0.0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type float $day_compare
- * 日环比 %
- * @type float $week_compare
- * 周环比 %
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\LargeScreenData::initOnce();
- parent::__construct($data);
- }
- /**
- * 日环比 %
- *
- * Generated from protobuf field <code>float day_compare = 1;</code>
- * @return float
- */
- public function getDayCompare()
- {
- return $this->day_compare;
- }
- /**
- * 日环比 %
- *
- * Generated from protobuf field <code>float day_compare = 1;</code>
- * @param float $var
- * @return $this
- */
- public function setDayCompare($var)
- {
- GPBUtil::checkFloat($var);
- $this->day_compare = $var;
- return $this;
- }
- /**
- * 周环比 %
- *
- * Generated from protobuf field <code>float week_compare = 2;</code>
- * @return float
- */
- public function getWeekCompare()
- {
- return $this->week_compare;
- }
- /**
- * 周环比 %
- *
- * Generated from protobuf field <code>float week_compare = 2;</code>
- * @param float $var
- * @return $this
- */
- public function setWeekCompare($var)
- {
- GPBUtil::checkFloat($var);
- $this->week_compare = $var;
- return $this;
- }
- }
|