| 123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Module\Mex\Events;
- use App\Module\Mex\Models\MexTransaction;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- /**
- * 成交记录创建事件
- *
- * 当新的成交记录创建时触发此事件
- */
- class TransactionCreatedEvent
- {
- use Dispatchable, SerializesModels;
- public MexTransaction $transaction;
- /**
- * 创建事件实例
- */
- public function __construct(MexTransaction $transaction)
- {
- $this->transaction = $transaction;
- }
- }
|