| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Created by PhpStorm.
- * User: dingran
- * Date: 2018/11/20
- * Time: 上午7:32
- */
- namespace app\common\events\member;
- use app\common\events\Event;
- class MemberChangeRelationEvent extends Event
- {
- protected $uid;
- protected $parent_id;
- public function __construct($uid, $parent_id)
- {
- $this->uid = $uid;
- $this->parent_id = $parent_id;
- }
- public function getUid()
- {
- return $this->uid;
- }
- public function getParentId()
- {
- return $this->parent_id;
- }
- }
|