Commit 86232faf by 王召彬

Merge branch 'xmy' of http://git.dev.2b3.cn/tencent/services into xmy

parents 156af474 051955a7
...@@ -14,6 +14,7 @@ use Swoft\Core\ResultInterface; ...@@ -14,6 +14,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferUpdateProfile(string $token, array $data) * @method ResultInterface deferUpdateProfile(string $token, array $data)
* @method ResultInterface deferSelectUser(int $storeId, array $buyerIds, array $fields= ['*']) * @method ResultInterface deferSelectUser(int $storeId, array $buyerIds, array $fields= ['*'])
* @method ResultInterface deferGetRefereeInfo($storeId,$buyerId) * @method ResultInterface deferGetRefereeInfo($storeId,$buyerId)
* @method ResultInterface deferGetByNickname($storeId, $nickname)
* Interface BuyerInterface * Interface BuyerInterface
* @package App\Lib * @package App\Lib
*/ */
...@@ -90,4 +91,14 @@ interface BuyerInterface ...@@ -90,4 +91,14 @@ interface BuyerInterface
* @return mixed * @return mixed
*/ */
public function getRefereeInfo($storeId,$buyerId); public function getRefereeInfo($storeId,$buyerId);
/**
* 获取买家信息 by nickname
* @param $storeId
* @param $nickname
* @return mixed
* @author work
*/
public function getByNickname($storeId, $nickname);
} }
\ 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