Commit 9f2a75ad by xmy

1.0.23

cmq seller 枚举
parent e5f28d04
......@@ -11,11 +11,11 @@ use Swoft\Core\ResultInterface;
/**
* @method ResultInterface deferSaveBill($orderId, $sellerId, $money)
* @method ResultInterface deferGetCommission($sellerId)
* @method ResultInterface deferAddBalance($sellerId, $money, $orderSn)
* @method ResultInterface deferReduceBalance($sellerId, $money, $orderSn)
* @method ResultInterface deferAddBalance($sellerId, $money, $orderSn='')
* @method ResultInterface deferReduceBalance($sellerId, $money, $orderSn='')
* @method ResultInterface deferListByOrderId($storeId, $orderId,$sellerId)
* @method ResultInterface deferAddTotal($sellerId, $money, $orderSn)
* @method ResultInterface deferRefundAddBalance($sellerId, $money, $orderSn)
* @method ResultInterface deferAddTotal($sellerId, $money, $orderSn='')
* @method ResultInterface deferRefundAddBalance($sellerId, $money, $orderSn='')
* @method ResultInterface deferCountVip($storeId, $sellerId)
* Interface SellerDistributionInterface
* @package App\Lib
......@@ -53,7 +53,7 @@ interface SellerDistributionInterface{
* @return mixed
* @author Administrator
*/
public function addBalance($sellerId, $money, $orderSn);
public function addBalance($sellerId, $money, $orderSn='');
/**
* 减少佣金
......@@ -62,7 +62,7 @@ interface SellerDistributionInterface{
* @return mixed
* @author Administrator
*/
public function reduceBalance($sellerId, $money, $orderSn);
public function reduceBalance($sellerId, $money, $orderSn='');
/**
......@@ -92,7 +92,7 @@ interface SellerDistributionInterface{
* @return mixed
* @author Administrator
*/
public function addTotal($sellerId, $money, $orderSn);
public function addTotal($sellerId, $money, $orderSn='');
/**
......@@ -102,7 +102,7 @@ interface SellerDistributionInterface{
* @return mixed
* @author Administrator
*/
public function refundAddBalance($sellerId, $money, $orderSn);
public function refundAddBalance($sellerId, $money, $orderSn='');
/**
......
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