Commit e24845a8 by dzhang

Merge branch 'v4' into test

parents a0f44967 99091995
# 2.0.14
- Cls记日志忽略‘验证器不存在’的日志
# 2.0.13 # 2.0.13
- ClsLog延迟时判断协程模式 - ClsLog延迟时判断协程模式
......
...@@ -31,6 +31,7 @@ use Swoft\Core\ResultInterface; ...@@ -31,6 +31,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferGetShopDailyStatistic(int $storeId,int $startDate,int $endDate) * @method ResultInterface deferGetShopDailyStatistic(int $storeId,int $startDate,int $endDate)
* @method ResultInterface deferGetShopNewOrderNum(int $storeId) * @method ResultInterface deferGetShopNewOrderNum(int $storeId)
* @method ResultInterface deferOrderCountByCondition(int $storeId,array $condition) * @method ResultInterface deferOrderCountByCondition(int $storeId,array $condition)
* @method ResultInterface deferBuyerSpendAmount(int $storeId,int $buyerId)
*/ */
interface OrderInterface interface OrderInterface
{ {
...@@ -215,4 +216,13 @@ interface OrderInterface ...@@ -215,4 +216,13 @@ interface OrderInterface
* @return int * @return int
*/ */
public function orderCountByCondition(int $storeId,array $condition); public function orderCountByCondition(int $storeId,array $condition);
/**
* 获取用户微信总消费金额
*
* @param integer $storeId
* @param integer $buyerId
* @return int
*/
public function buyerSpendAmount(int $storeId,int $buyerId);
} }
\ 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