Commit 1d443782 by feixiang

买家佣金服务接口修改

parent 4dc80a26
...@@ -14,14 +14,23 @@ namespace Hdll\Services\Buyer\Lib; ...@@ -14,14 +14,23 @@ namespace Hdll\Services\Buyer\Lib;
interface CommissionInterface interface CommissionInterface
{ {
/** /**
* 扣除可提现金额(仅限于对账服务使用,切记!!!) * 扣除可提现金额
* *
* @param $storeId * @param $storeId
* @param $buyerId * @param $buyerId
* @param $money * @param $money
* @return bool * @return bool
*/ */
public function reduceBalanceCommissionCompare($storeId, $buyerId, $money); public function reduceBalanceCommission($storeId, $buyerId, $money);
/**
* 增加可提现金额
*
* @param $storeId
* @param $buyerId
* @param $money
* @return bool
*/
public function addBalanceCommission($storeId, $buyerId, $money);
/** /**
* 增加可提现金额(仅限于对账服务使用,切记!!!) * 增加可提现金额(仅限于对账服务使用,切记!!!)
......
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