Files
hyperf_service/app/Event/PayGoodOrderFinishEvent.php
2025-03-26 16:05:12 +08:00

29 lines
458 B
PHP

<?php
declare(strict_types=1);
namespace App\Event;
class PayGoodOrderFinishEvent
{
/**
* @var int 订单 id
*/
public int $orderId;
/**
* @var int 支付订单 id
*/
public int $payOrderId;
/**
* @param int $orderId
* @param int $payOrderId
*/
public function __construct(int $orderId, int $payOrderId)
{
$this->orderId = $orderId;
$this->payOrderId = $payOrderId;
}
}