| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace App\Module\UrsPromotion\Events;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- /**
- * URS达人等级提升事件
- */
- class UrsTalentLevelUpEvent
- {
- use Dispatchable, SerializesModels;
- /**
- * 用户ID
- */
- public int $userId;
- /**
- * 旧等级
- */
- public int $oldLevel;
- /**
- * 新等级
- */
- public int $newLevel;
- /**
- * 直推人数
- */
- public int $directCount;
- /**
- * 团队总人数
- */
- public int $promotionCount;
- /**
- * 创建事件实例
- */
- public function __construct(int $userId, int $oldLevel, int $newLevel, int $directCount, int $promotionCount)
- {
- $this->userId = $userId;
- $this->oldLevel = $oldLevel;
- $this->newLevel = $newLevel;
- $this->directCount = $directCount;
- $this->promotionCount = $promotionCount;
- }
- }
|