Commit 9b8f9ea7 by dzhang

查询店铺交易统计

parent 83c26e60
...@@ -27,6 +27,7 @@ use Swoft\Core\ResultInterface; ...@@ -27,6 +27,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferGetSubOrderListBySubIds(int $storeId,array $subIds) * @method ResultInterface deferGetSubOrderListBySubIds(int $storeId,array $subIds)
* @method ResultInterface deferOrderCount(int $storeId,int $orderType,array $itemIds) * @method ResultInterface deferOrderCount(int $storeId,int $orderType,array $itemIds)
* @method ResultInterface deferAddShopsDailyStatistic(int $storeId,int $pId) * @method ResultInterface deferAddShopsDailyStatistic(int $storeId,int $pId)
* @method ResultInterface deferGetShopStatistic(int $storeId)
*/ */
interface OrderInterface interface OrderInterface
{ {
...@@ -175,4 +176,12 @@ interface OrderInterface ...@@ -175,4 +176,12 @@ interface OrderInterface
* @return bool * @return bool
*/ */
public function addShopsDailyStatistic(int $storeId,int $pId); public function addShopsDailyStatistic(int $storeId,int $pId);
/**
* 查询店铺交易统计
*
* @param integer $storeId
* @return array
*/
public function getShopStatistic(int $storeId);
} }
\ 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