Commit 0e9e809c by 王召彬

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

parents 10275072 fde60455
# 1.0.84
- 添加通过店铺id列表获取店铺信息的接口
# 1.0.83
- 添加服务模版消息
......
......@@ -21,6 +21,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferGetStoreByStoreName(string $storeName)
* @method ResultInterface deferGetStoreBySellerId(int $sellerId)
* @method ResultInterface deferGetListBySellerIds(array $sellerIds, array $fields = [])
* @method ResultInterface deferGetListByStoreIds(array $storeIds, array $fields = [])
* @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = [])
* @method ResultInterface deferUpdateStore(int $storeId, array $data)
* @method ResultInterface deferAddVipTime(int $storeId, int $days)
......@@ -81,6 +82,15 @@ interface StoreInterface
public function getListBySellerIds(array $sellerIds, array $fields = []);
/**
* 根据店铺ID列表获取店铺信息列表
*
* @param array $storeIds
* @param array $fields
* @return array
*/
public function getListByStoreIds(array $storeIds, array $fields = []);
/**
* 根据注册手机号获取店铺信息
*
* @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