Commit c152fad1 by xmy

退款增加可提现

parent a2bdc027
......@@ -15,6 +15,7 @@ use Swoft\Core\ResultInterface;
* 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
*/
......@@ -91,4 +92,14 @@ interface SellerDistributionInterface{
* @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