Commit 8c9fb173 by feixiang

Merge remote-tracking branch 'origin/master'

parents dbdaac3e c152fad1
......@@ -14,6 +14,8 @@ use Swoft\Core\ResultInterface;
* method ResultInterface deferAddBalance($sellerId, $money)
* method ResultInterface deferReduceBalance($sellerId, $money)
* method ResultInterface deferListByOrderId($storeId, $orderId,$sellerId)
* method ResultInterface deferAddTotal($sellerId, $money)
* method ResultInterface deferRefundAddBalance($sellerId, $money)
* Interface SellerDistributionInterface
* @package App\Lib
*/
......@@ -81,4 +83,23 @@ interface SellerDistributionInterface{
* @author Administrator
*/
public function updateBill($storeId,$id,$balanceState);
/**
* 增加累计提现
* @param $sellerId
* @param $money
* @return mixed
* @author Administrator
*/
public function addTotal($sellerId, $money);
/**
* 退款增加佣金(不增加累计金额)
* @param $sellerId
* @param $money
* @return mixed
* @author Administrator
*/
public function refundAddBalance($sellerId, $money);
}
\ 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