Commit 362df90d by xmy

卖家服务:增加卖家钱包修改记录

parent 1165d196
...@@ -34,7 +34,7 @@ interface SellerFundInterface ...@@ -34,7 +34,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function addBalance($seller, $money, $orderSn); public function addBalance($seller, $money, $orderSn='');
/** /**
* 减少提现金额 * 减少提现金额
...@@ -43,7 +43,7 @@ interface SellerFundInterface ...@@ -43,7 +43,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function reduceBalance($seller, $money, $orderSn); public function reduceBalance($seller, $money, $orderSn='');
/** /**
* 增加总提现金额 * 增加总提现金额
...@@ -52,7 +52,7 @@ interface SellerFundInterface ...@@ -52,7 +52,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function addTotal($seller, $money, $orderSn); public function addTotal($seller, $money, $orderSn='');
/** /**
* 减少总提现金额 * 减少总提现金额
...@@ -61,7 +61,7 @@ interface SellerFundInterface ...@@ -61,7 +61,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function reduceTotal($seller, $money, $orderSn); public function reduceTotal($seller, $money, $orderSn='');
/** /**
* *
...@@ -83,7 +83,7 @@ interface SellerFundInterface ...@@ -83,7 +83,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function addExpectFund($sellerId, $money, $orderSn); public function addExpectFund($sellerId, $money, $orderSn='');
/** /**
* 减少冻结金额 * 减少冻结金额
...@@ -92,7 +92,7 @@ interface SellerFundInterface ...@@ -92,7 +92,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function reduceExpectFund($sellerId, $money, $orderSn); public function reduceExpectFund($sellerId, $money, $orderSn='');
/** /**
* 增加金额 * 增加金额
...@@ -102,7 +102,7 @@ interface SellerFundInterface ...@@ -102,7 +102,7 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function addFund($sellerId, $balanceFund, $commissionFund, $orderSn); public function addFund($sellerId, $balanceFund, $commissionFund, $orderSn='');
/** /**
...@@ -112,5 +112,5 @@ interface SellerFundInterface ...@@ -112,5 +112,5 @@ interface SellerFundInterface
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function addActualCommissionFund($sellerId, $money, $orderSn); public function addActualCommissionFund($sellerId, $money, $orderSn='');
} }
\ 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