Commit 1a12f144 by xmy

Merge remote-tracking branch 'origin/master'

parents 63391d46 1e3ac8d2
# 1.0.16
- 佣金操作增加 orderSn字段
# 1.0.15
- 卖家服务:增加卖家钱包修改记录
# 1.0.14
......
......@@ -34,13 +34,14 @@ interface CommissionInterface
/**
* 增加可提现金额(仅限于对账服务使用,切记!!!)
*
*
* @param $storeId
* @param $buyerId
* @param $money
* @param string $orderSn
* @return bool
*/
public function addBalanceCommissionCompare($storeId, $buyerId, $money);
public function addBalanceCommissionCompare($storeId, $buyerId, $money, $orderSn='');
/**
* 增加累计现金额
......@@ -57,8 +58,9 @@ interface CommissionInterface
*
* @param int $storeId
* @param int $orderId
* @param string $orderSn
* @return mixed
*/
public function addExpectCommission(int $storeId, int $orderId);
public function addExpectCommission(int $storeId, int $orderId, $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