Commit 0623313c by 王召彬

添加批量查询店铺的接口

parent cea44d1e
...@@ -19,6 +19,7 @@ use Swoft\Core\ResultInterface; ...@@ -19,6 +19,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferIsNormal(int $storeId) * @method ResultInterface deferIsNormal(int $storeId)
* @method ResultInterface deferGetStoreByStoreId(int $storeId) * @method ResultInterface deferGetStoreByStoreId(int $storeId)
* @method ResultInterface deferGetStoreBySellerId(int $sellerId) * @method ResultInterface deferGetStoreBySellerId(int $sellerId)
* @method ResultInterface deferGetListBySellerIds(array $sellerIds)
* @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = []) * @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = [])
* @method ResultInterface deferUpdateStore(int $storeId, array $data) * @method ResultInterface deferUpdateStore(int $storeId, array $data)
* @method ResultInterface deferDeleteStore(int $storeId) * @method ResultInterface deferDeleteStore(int $storeId)
...@@ -59,6 +60,14 @@ interface StoreInterface ...@@ -59,6 +60,14 @@ interface StoreInterface
public function getStoreBySellerId(int $sellerId); public function getStoreBySellerId(int $sellerId);
/** /**
* 根据卖家ID列表获取店铺信息列表
*
* @param array $sellerIds
* @return array
*/
public function getListBySellerIds(array $sellerIds);
/**
* 根据注册手机号获取店铺信息 * 根据注册手机号获取店铺信息
* *
* @param integer $mobile * @param integer $mobile
......
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