Commit 43948624 by dzhang

增加店铺每日订单统计数据

parent 42419483
......@@ -26,6 +26,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferUnconfirmedCount(int $storeId)
* @method ResultInterface deferGetSubOrderListBySubIds(int $storeId,array $subIds)
* @method ResultInterface deferOrderCount(int $storeId,int $orderType,array $itemIds)
* @method ResultInterface deferAddShopsDailyStatistic(int $storeId,int $pId)
*/
interface OrderInterface
{
......@@ -165,4 +166,13 @@ interface OrderInterface
* @return array
*/
public function orderCount(int $storeId,int $orderType,array $itemIds);
/**
* 增加店铺每日订单统计数据
*
* @param integer $storeId
* @param integer $pId
* @return bool
*/
public function addShopsDailyStatistic(int $storeId,int $pId);
}
\ No newline at end of file
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