Commit 817655bd by 王召彬

保赚服务

parent 92f55241
...@@ -16,7 +16,7 @@ use Swoft\Core\ResultInterface; ...@@ -16,7 +16,7 @@ use Swoft\Core\ResultInterface;
/** /**
* The interface of insurance service * The interface of insurance service
* *
* @method ResultInterface deferGetOrderInfo(int $orderId) * @method ResultInterface deferGetOrderInfo(int $storeId, int $orderId)
* @method ResultInterface deferPaySuccess(int $storeId, int $sellerId, $unionId, int $orderId) * @method ResultInterface deferPaySuccess(int $storeId, int $sellerId, $unionId, int $orderId)
*/ */
interface InsuranceInterface interface InsuranceInterface
...@@ -24,10 +24,11 @@ interface InsuranceInterface ...@@ -24,10 +24,11 @@ interface InsuranceInterface
/** /**
* 获取指定订单数据 * 获取指定订单数据
* *
* @param integer $storeId
* @param integer $orderId * @param integer $orderId
* @return array * @return array
*/ */
public function getOrderInfo(int $orderId); public function getOrderInfo(int $storeId, int $orderId);
/** /**
* 支付成功回调 * 支付成功回调
......
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