Commit 31220dec by zhangsong

Merge branch 'ft-cus'

parents f322960c d27cfb98
...@@ -18,6 +18,7 @@ use Swoft\Core\ResultInterface; ...@@ -18,6 +18,7 @@ use Swoft\Core\ResultInterface;
* *
* @method ResultInterface deferAddOrder($storeId, $orderId, $goodsId, $goodsName, $orderPrice, $orderType, $orderTime, $consigneeName, $consigneePhone, $buyerId,$activityName) * @method ResultInterface deferAddOrder($storeId, $orderId, $goodsId, $goodsName, $orderPrice, $orderType, $orderTime, $consigneeName, $consigneePhone, $buyerId,$activityName)
* @method ResultInterface deferSinceAddVisitor(int $storeId, int $buyerId, int $time) * @method ResultInterface deferSinceAddVisitor(int $storeId, int $buyerId, int $time)
* @method ResultInterface deferGetProfile($storeId, $buyerId)
*/ */
interface ProfileInterface interface ProfileInterface
{ {
...@@ -42,4 +43,12 @@ interface ProfileInterface ...@@ -42,4 +43,12 @@ interface ProfileInterface
*/ */
public function sinceAddVisitor(int $storeId, int $buyerId, int $time); public function sinceAddVisitor(int $storeId, int $buyerId, int $time);
/**
* 获取买家信息
* @param $storeId // 店铺id
* @param $buyerId // 卖家id
* @return mixed
*/
public function getProfile($storeId, $buyerId);
} }
\ 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