Commit db9686dc by feixiang

Merge remote-tracking branch 'origin/master'

parents cf6a453f 2797456b
<?php
/**
* This file is part of Swoft.
*
* @link https://swoft.org
* @document https://doc.swoft.org
* @contact group@swoft.org
* @license https://github.com/swoft-cloud/swoft/blob/master/LICENSE
*/
namespace Hdll\Services\ComoserProfiles\Lib;
use Swoft\Core\ResultInterface;
/**
* The interface of demo service
*
* @method ResultInterface deferAddOrder($storeId, $ordirId,$goodsId,$goodsName,$orderPrice,$orderType)
*/
interface ProfileInterface
{
/**
* 档案和消费信息入库
* @param $storeId
* @param $orderId
* @param $goodsId
* @param $goodsName
* @param $orderPrice
* @param $orderType
* @return mixed
*/
public function AddOrder($storeId, $orderId,$goodsId,$goodsName,$orderPrice,$orderType);
}
\ No newline at end of file
......@@ -30,6 +30,6 @@ interface ProfileInterface
* @param $orderType
* @return mixed
*/
public function AddOrder($storeId, $orderId,$goodsId,$goodsName,$orderPrice,$orderType,$consigneeName,$consigneePhone);
public function AddOrder($storeId, $orderId,$goodsId,$goodsName,$orderPrice,$orderType,$consigneeName,$consigneePhone);
}
\ No newline at end of file
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