Files
hyperf_service/app/Service/Amqp/Refund/BalanceOrderRefundService.php
2025-02-21 19:10:58 +08:00

24 lines
328 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Amqp\Refund;
class BalanceOrderRefundService
{
/**
* @var int
*/
public int $orderId;
public function handle()
{
return true;
}
}