Commit ff420e6c by liwotian

增加接口 用储值购买商品 接口

parent b49bddd6
...@@ -17,7 +17,7 @@ use Swoft\Core\ResultInterface; ...@@ -17,7 +17,7 @@ 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) * @method ResultInterface deferspendCardMoney(string $storeId,string $buyerId,int $goodOrderId,int $payMoney)
*/ */
interface RechargeInterface interface RechargeInterface
{ {
...@@ -36,11 +36,17 @@ interface RechargeInterface ...@@ -36,11 +36,17 @@ interface RechargeInterface
int $status , // int $status , //
int $orderId); int $orderId);
/**
* @param int $storeId
* @param int $buyerId
* @param int $goodOrderId
* @return mixed
*/
public function spendCardMoney( public function spendCardMoney(
int $storeId, int $storeId,
int $buyerId, int $buyerId,
int $goodOrderId int $goodOrderId,
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