Commit 4b5b3e32 by liwotian

ff

parent ff420e6c
...@@ -17,11 +17,11 @@ use Swoft\Core\ResultInterface; ...@@ -17,11 +17,11 @@ use Swoft\Core\ResultInterface;
* The interface of demo service * The interface of demo service
* *
* @method ResultInterface deferpayStatus(string $storeId,int $bargainbranchId,int $status,int $orderId) * @method ResultInterface deferpayStatus(string $storeId,int $bargainbranchId,int $status,int $orderId)
* @method ResultInterface deferspendCardMoney(string $storeId,string $buyerId,int $goodOrderId,int $payMoney) * @method ResultInterface deferspendCardMoney( int $storeId,int $buyerId,int $itemOrderId,int $itemTitle,int $payMoney)
*/ */
interface RechargeInterface interface RechargeInterface
{ {
/** /**
* 支付 状态 回馈接口 * 支付 状态 回馈接口
...@@ -45,7 +45,8 @@ interface RechargeInterface ...@@ -45,7 +45,8 @@ interface RechargeInterface
public function spendCardMoney( public function spendCardMoney(
int $storeId, int $storeId,
int $buyerId, int $buyerId,
int $goodOrderId, int $itemOrderId,
int $itemTitle,
int $payMoney 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