Commit e8a1cfe5 by feixiang

Merge remote-tracking branch 'origin/master'

parents 1d443782 0f4e1b73
...@@ -15,6 +15,7 @@ use Swoft\Core\ResultInterface; ...@@ -15,6 +15,7 @@ use Swoft\Core\ResultInterface;
* method ResultInterface deferReduceBalance($sellerId, $money) * method ResultInterface deferReduceBalance($sellerId, $money)
* method ResultInterface deferAddTotal($sellerId, $money) * method ResultInterface deferAddTotal($sellerId, $money)
* method ResultInterface deferReduceTotal($sellerId, $money) * method ResultInterface deferReduceTotal($sellerId, $money)
* method ResultInterface deferListByOrderId($storeId, $orderId)
* Interface SellerDistributionInterface * Interface SellerDistributionInterface
* @package App\Lib * @package App\Lib
*/ */
...@@ -79,4 +80,13 @@ interface SellerDistributionInterface{ ...@@ -79,4 +80,13 @@ interface SellerDistributionInterface{
* @author Administrator * @author Administrator
*/ */
public function reduceTotal($sellerId, $money); public function reduceTotal($sellerId, $money);
/**
* 获取分销记录
* @param $storeId
* @param $orderId
* @return mixed
* @author Administrator
*/
public function listByOrderId($storeId, $orderId);
} }
\ 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