RegisterMember.php 496 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: dingran
  5. * Date: 2020/3/6
  6. * Time: 下午3:40
  7. */
  8. namespace app\common\events\member;
  9. use app\common\events\Event;
  10. class RegisterMember extends Event
  11. {
  12. private $uid = '';
  13. private $mid = '';
  14. public function __construct($mid, $uid)
  15. {
  16. $this->uid = $uid;
  17. $this->mid = $mid;
  18. }
  19. public function getUid()
  20. {
  21. return $this->uid;
  22. }
  23. public function getMid()
  24. {
  25. return $this->mid;
  26. }
  27. }