Commit dcb41fbc by zhangsong

修改接口

parent f8d40a0a
...@@ -20,7 +20,7 @@ use Swoft\Core\ResultInterface; ...@@ -20,7 +20,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferReturnCardMoney(int $storeId,int $buyerId,int $itemOrderId,string $itemTitle,int $payMoney, int $parentOrderId) * @method ResultInterface deferReturnCardMoney(int $storeId,int $buyerId,int $itemOrderId,string $itemTitle,int $payMoney, int $parentOrderId)
* @method ResultInterface deferStatisNum(int $storeId) * @method ResultInterface deferStatisNum(int $storeId)
* @method ResultInterface deferGetRecharge(int $storeId, int $buyerId) * @method ResultInterface deferGetRecharge(int $storeId, int $buyerId)
* @method ResultInterface deferDeductMoney($storeId, $buyerId, $money) * @method ResultInterface deferDeductMoney($storeId, $buyerId, $money, $message)
*/ */
interface RechargeInterface interface RechargeInterface
{ {
...@@ -95,9 +95,10 @@ interface RechargeInterface ...@@ -95,9 +95,10 @@ interface RechargeInterface
* @param int $storeId * @param int $storeId
* @param int $buyerId * @param int $buyerId
* @param $money * @param $money
* @param $message
* @return mixed * @return mixed
*/ */
public function deductMoney($storeId, $buyerId, $money); public function deductMoney($storeId, $buyerId, $money, $message);
} }
......
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