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

22 lines
332 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;
use App\Model\Order;
use Hyperf\Di\Annotation\Inject;
class GoodOrderPartRefundService
{
public function handle()
{
//todo Write logic
}
}