Commit a94629a1 by 王召彬

获取最近一个月登录的店铺列表

parent a91d7e52
......@@ -22,6 +22,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferGetStoreBySellerId(int $sellerId)
* @method ResultInterface deferGetListBySellerIds(array $sellerIds, array $fields = [])
* @method ResultInterface deferGetListByStoreIds(array $storeIds, array $fields = [])
* @method ResultInterface deferGetListByLastMonth()
* @method ResultInterface deferGetStoreByMobile(int $mobile, array $fields = [])
* @method ResultInterface deferUpdateStore(int $storeId, array $data)
* @method ResultInterface deferAddVipTime(int $storeId, int $days)
......@@ -92,6 +93,13 @@ interface StoreInterface
public function getListByStoreIds(array $storeIds, array $fields = []);
/**
* 获取最近一个月登录的店铺列表
*
* @return array
*/
public function getListByLastMonth();
/**
* 根据注册手机号获取店铺信息
*
* @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