HitRule.php 371 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: dingxiang-inc
  5. * Date: 2017/8/19
  6. * Time: 下午1:05
  7. */
  8. class HitRule
  9. {
  10. public $id;
  11. public $leftValue;
  12. /**
  13. * HitRule constructor.
  14. * @param $id
  15. * @param $leftValue
  16. */
  17. public function __construct($id, $leftValue)
  18. {
  19. $this->id = $id;
  20. $this->leftValue = $leftValue;
  21. }
  22. }