Commit ee8d6401 by dzhang

添加接口

parent 9b7fb0fc
...@@ -16,6 +16,8 @@ use Swoft\Core\ResultInterface; ...@@ -16,6 +16,8 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferPaySuccess(int $type,int $storeId,int $id,string $wxOrderSn,int $fee) * @method ResultInterface deferPaySuccess(int $type,int $storeId,int $id,string $wxOrderSn,int $fee)
* @method ResultInterface deferPayFailed(int $type,int $storeId,int $id,string $message) * @method ResultInterface deferPayFailed(int $type,int $storeId,int $id,string $message)
* @method ResultInterface deferGetBuyerAccountListByStoreId(int $storeId,array $buyerIds) * @method ResultInterface deferGetBuyerAccountListByStoreId(int $storeId,array $buyerIds)
* @method ResultInterface deferGetSellerCommission(array $sellerIds)
* @method ResultInterface deferGetSellerFund(array $sellerIds)
*/ */
interface WithdrawCashInterface{ interface WithdrawCashInterface{
/** /**
...@@ -49,4 +51,20 @@ interface WithdrawCashInterface{ ...@@ -49,4 +51,20 @@ interface WithdrawCashInterface{
* @return array * @return array
*/ */
public function getBuyerAccountListByStoreId(int $storeId,array $buyerIds); public function getBuyerAccountListByStoreId(int $storeId,array $buyerIds);
/**
* 批量查询卖家佣金钱包
*
* @param array $sellerId
* @return array
*/
public function getSellerCommission(array $sellerIds);
/**
* 批量查询卖家营收钱包
*
* @param array $sellerId
* @return array
*/
public function getSellerFund(array $sellerIds);
} }
\ 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