CompareData.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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\GetAbnormalDataRes;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * 环比数据
  11. *
  12. * Generated from protobuf message <code>proto.api.GetAbnormalDataRes.CompareData</code>
  13. */
  14. class CompareData extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * 日环比 %
  18. *
  19. * Generated from protobuf field <code>float day_compare = 1;</code>
  20. */
  21. protected $day_compare = 0.0;
  22. /**
  23. * 周环比 %
  24. *
  25. * Generated from protobuf field <code>float week_compare = 2;</code>
  26. */
  27. protected $week_compare = 0.0;
  28. /**
  29. * Constructor.
  30. *
  31. * @param array $data {
  32. * Optional. Data for populating the Message object.
  33. *
  34. * @type float $day_compare
  35. * 日环比 %
  36. * @type float $week_compare
  37. * 周环比 %
  38. * }
  39. */
  40. public function __construct($data = NULL) {
  41. \GPBMetadata\Api\LargeScreenData::initOnce();
  42. parent::__construct($data);
  43. }
  44. /**
  45. * 日环比 %
  46. *
  47. * Generated from protobuf field <code>float day_compare = 1;</code>
  48. * @return float
  49. */
  50. public function getDayCompare()
  51. {
  52. return $this->day_compare;
  53. }
  54. /**
  55. * 日环比 %
  56. *
  57. * Generated from protobuf field <code>float day_compare = 1;</code>
  58. * @param float $var
  59. * @return $this
  60. */
  61. public function setDayCompare($var)
  62. {
  63. GPBUtil::checkFloat($var);
  64. $this->day_compare = $var;
  65. return $this;
  66. }
  67. /**
  68. * 周环比 %
  69. *
  70. * Generated from protobuf field <code>float week_compare = 2;</code>
  71. * @return float
  72. */
  73. public function getWeekCompare()
  74. {
  75. return $this->week_compare;
  76. }
  77. /**
  78. * 周环比 %
  79. *
  80. * Generated from protobuf field <code>float week_compare = 2;</code>
  81. * @param float $var
  82. * @return $this
  83. */
  84. public function setWeekCompare($var)
  85. {
  86. GPBUtil::checkFloat($var);
  87. $this->week_compare = $var;
  88. return $this;
  89. }
  90. }