Commit 9993ccfc by liwotian

Merge branch 'test'

parents 4769390b 2fc57fc6
......@@ -18,13 +18,14 @@ use Swoft\Core\ResultInterface;
*
* @method ResultInterface deferpayStatus(string $storeId,int $bargainbranchId,int $status,int $orderId)
* @method ResultInterface deferspendCardMoney( int $storeId,int $buyerId,int $itemOrderId,string $itemTitle,int $payMoney)
* @method ResultInterface deferReturnCardMoney( int $storeId,int $buyerId,int $itemOrderId,string $itemTitle,int $payMoney)
*/
interface RechargeInterface
{
/**
* 支付 状态 回馈接口
* 微信支付 状态 回馈接口
* @param string $storeId //
* @param int $itemId // 项目ID $localorderId
* @param int $status // BuyCardPayStatus::HAVE_PAY 成功支付 BuyCardPayStatus::PAY_EXCEPTION:未支付 (已经过期或者支付异常)
......@@ -37,6 +38,7 @@ interface RechargeInterface
int $orderId);
/**
* 花费卡金额
* @param int $storeId
* @param int $buyerId
* @param int $goodOrderId
......@@ -49,6 +51,23 @@ interface RechargeInterface
string $itemTitle,
int $payMoney
);
/**
* 退回储值卡金额
* @param int $storeId
* @param int $buyerId
* @param int $itemOrderId
* @param string $itemTitle
* @param int $payMoney
* @return mixed
*/
public function ReturnCardMoney(
int $storeId,
int $buyerId,
int $itemOrderId,
string $itemTitle,
int $payMoney
);
}
......
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