| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Module\UrsPromotion\Events;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- use App\Module\UrsPromotion\Models\UrsProfit;
- /**
- * URS团队收益生成事件
- */
- class UrsProfitGeneratedEvent
- {
- use Dispatchable, SerializesModels;
- /**
- * 收益记录
- */
- public UrsProfit $profit;
- /**
- * 创建事件实例
- */
- public function __construct(UrsProfit $profit)
- {
- $this->profit = $profit;
- }
- }
|