Commit 6c7baa7d by zhangsong

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

parents bc07cc84 dff60238
# 1.0.82
- 添加根据店铺名称获取店铺信息的rpc接口
# 1.0.81
- 添加订单服务店主核销枚举
......
......@@ -18,6 +18,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferIsCertified(int $storeId)
* @method ResultInterface deferIsNormal(int $storeId)
* @method ResultInterface deferGetStoreByStoreId(int $storeId)
* @method ResultInterface deferGetStoreByStoreName(string $storeName)
* @method ResultInterface deferGetStoreBySellerId(int $sellerId)
* @method ResultInterface deferGetListBySellerIds(array $sellerIds, array $fields = [])
* @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = [])
......@@ -53,6 +54,14 @@ interface StoreInterface
public function getStoreByStoreId(int $storeId);
/**
* 根据店铺名称获取店铺信息
*
* @param string $storeName
* @return array
*/
public function getStoreByStoreName(string $storeName);
/**
* 根据卖家ID获取店铺信息
*
* @param integer $sellerId
......
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