Commit a92c2a27 by xmy

添加累计金额

parent 18f61b42
......@@ -14,6 +14,7 @@ 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)
* Interface SellerDistributionInterface
* @package App\Lib
*/
......@@ -81,4 +82,13 @@ interface SellerDistributionInterface{
* @author Administrator
*/
public function updateBill($storeId,$id,$balanceState);
/**
* 增加累计提现
* @param $sellerId
* @param $money
* @return mixed
* @author Administrator
*/
public function addTotal($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