Commit 881aa595 by dzhang

add getBuyerDistribution rpc interface

parent 08c535cf
......@@ -18,6 +18,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferGetBuyerAccountListByStoreId(int $storeId,array $buyerIds)
* @method ResultInterface deferGetSellerCommission(array $sellerIds)
* @method ResultInterface deferGetSellerFund(array $sellerIds)
* @method ResultInterface deferGetBuyerDistribution(int $storeId,array $buyerIds)
*/
interface WithdrawCashInterface{
/**
......@@ -67,4 +68,13 @@ interface WithdrawCashInterface{
* @return array
*/
public function getSellerFund(array $sellerIds);
/**
* 批量查询指定店铺下分销商钱包
*
* @param integer $storeId
* @param array $buyerIds
* @return array
*/
public function getBuyerDistribution(int $storeId,array $buyerIds);
}
\ 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