Commit ec4d62ae by 王洁

短信消费场景传id

parent 4661c2d5
......@@ -18,7 +18,7 @@ use Swoft\Core\ResultInterface;
/**
* The interface of SMS service
*
* @method ResultInterface deferCreateCost(int $storeId,string $scene,int $decnum,string $nickname,string $phone)
* @method ResultInterface deferCreateCost(int $storeId,int $sceneId,int $decnum,string $nickname,string $phone)
* @method ResultInterface deferPayOrder(int $storeId,string $orderSn,int $payStatus)
* @method ResultInterface deferGetOrder(int $storeId,int $smsOId)
* @method ResultInterface deferGetOrderBySn(int $storeId,string $sn)
......@@ -29,15 +29,13 @@ interface SMSInterface
* 消费短信
*
* @param integer $storeId
* @param string $scene
* @param int $sceneId
* @param integer $decnum
* @param string $nickname
* @param string $phone
* @return int
*/
public function createCost(int $storeId,string $scene,int $decnum,string $nickname,string $phone);
public function createCost(int $storeId,int $sceneId,int $decnum,string $nickname,string $phone);
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment