Commit 05e953d4 by 王洁

Merge branch 'feature-notEndedActs' into test

parents b01ea6ad 0a3c1e93
...@@ -21,6 +21,7 @@ use Swoft\Core\ResultInterface; ...@@ -21,6 +21,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferGetLimitInfo(int $storeId, int $goodsId) * @method ResultInterface deferGetLimitInfo(int $storeId, int $goodsId)
* @method ResultInterface deferPayStatus(string $store_id,int $limit_id, int $status, int $orderId) * @method ResultInterface deferPayStatus(string $store_id,int $limit_id, int $status, int $orderId)
* @method ResultInterface deferGetLimitCounts(int $storeId) * @method ResultInterface deferGetLimitCounts(int $storeId)
* @method ResultInterface deferGetNotEndedActivityList($storeId)
* @method ResultInterface deferGetNewOrderNum(int $storeId,int $lastTime) * @method ResultInterface deferGetNewOrderNum(int $storeId,int $lastTime)
*/ */
interface LimitTimeBuyInterface interface LimitTimeBuyInterface
...@@ -86,6 +87,13 @@ interface LimitTimeBuyInterface ...@@ -86,6 +87,13 @@ interface LimitTimeBuyInterface
*/ */
public function getLimitCounts(int $storeId); public function getLimitCounts(int $storeId);
/**
* 获取店铺尚未结束的活动列表
*
* @return mixed
*/
public function getNotEndedActivityList($storeId);
/** /**
*获取自上次时间以来产生的新订单数 *获取自上次时间以来产生的新订单数
......
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