Commit c4039485 by xmy

增加实付佣金

parent 75ad0a26
......@@ -20,6 +20,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferAddExpectFund($seller, $money)
* @method ResultInterface deferReduceExpectFund($seller, $money)
* @method ResultInterface deferAddFund($seller, $money)
* @method ResultInterface deferAddActualCommissionFund($sellerId, $money)
* Interface SellerInterface
* @package App\Lib
*/
......@@ -103,4 +104,14 @@ interface SellerFundInterface
* @author Administrator
*/
public function addFund($sellerId, $balanceFund, $commissionFund);
/**
* 增加实付佣金
* @param $sellerId
* @param $money
* @return mixed
* @author Administrator
*/
public function addActualCommissionFund($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