Commit c664748d by xmy

统计VIP数

parent c152fad1
...@@ -16,6 +16,7 @@ use Swoft\Core\ResultInterface; ...@@ -16,6 +16,7 @@ use Swoft\Core\ResultInterface;
* method ResultInterface deferListByOrderId($storeId, $orderId,$sellerId) * method ResultInterface deferListByOrderId($storeId, $orderId,$sellerId)
* method ResultInterface deferAddTotal($sellerId, $money) * method ResultInterface deferAddTotal($sellerId, $money)
* method ResultInterface deferRefundAddBalance($sellerId, $money) * method ResultInterface deferRefundAddBalance($sellerId, $money)
* method ResultInterface deferCountVip($storeId, $sellerId)
* Interface SellerDistributionInterface * Interface SellerDistributionInterface
* @package App\Lib * @package App\Lib
*/ */
...@@ -102,4 +103,13 @@ interface SellerDistributionInterface{ ...@@ -102,4 +103,13 @@ interface SellerDistributionInterface{
* @author Administrator * @author Administrator
*/ */
public function refundAddBalance($sellerId, $money); public function refundAddBalance($sellerId, $money);
/**
* 统计VIP数量
* @param $storeId
* @param $sellerId
* @return mixed
* @author Administrator
*/
public function countVip($storeId, $sellerId);
} }
\ 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