Commit 7f21e780 by feixiang

退款成功接口

parent 999b2d36
...@@ -105,9 +105,19 @@ interface OrderInterface ...@@ -105,9 +105,19 @@ interface OrderInterface
/** /**
* 退款成功 * 退款成功
* *
* @param array $storeId * @param int $storeId
* @param array $orderInfo * @param array $orderInfo
* @return mixed * @return mixed
*/ */
public function refundSuccess(array $storeId, array $orderInfo); public function refundSuccess(int $storeId, array $orderInfo);
/**
* 根据订单Id获取信息
*
* @param int $storeId
* @param int $orderId
* @return mixed
*/
public function getInfoById(int $storeId, int $orderId);
} }
\ 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