LoveChangeEvent.php 363 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Author: 芸众商城 www.yunzshop.com
  4. * Date: 2019-11-01
  5. * Time: 01:20
  6. */
  7. namespace app\common\events\finance;
  8. use app\common\events\Event;
  9. class LoveChangeEvent extends Event
  10. {
  11. public $uid;
  12. public function __construct($uid)
  13. {
  14. $this->uid = $uid;
  15. }
  16. public function getUid()
  17. {
  18. return $this->uid;
  19. }
  20. }