16 lines
286 B
PHP
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);
|
|
} |