Commit d27cfb98 by zhangsong

添加获取顾客档案信息rpc

parent f322960c
......@@ -18,6 +18,7 @@ use Swoft\Core\ResultInterface;
*
* @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 deferGetProfile($storeId, $buyerId)
*/
interface ProfileInterface
{
......@@ -42,4 +43,12 @@ interface ProfileInterface
*/
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