Files
hyperf_service/app/Service/Common/Pay/ThirdPayInterface.php
2025-02-17 16:46:41 +08:00

16 lines
286 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Common\Pay;
interface ThirdPayInterface
{
public function pay(float $money,int $orderId,string $outTradeNo,int $userId);
}