Commit 2f59f225 by liwotian name

up

parent 1ab19b37
...@@ -15,29 +15,22 @@ use Swoft\Core\ResultInterface; ...@@ -15,29 +15,22 @@ use Swoft\Core\ResultInterface;
/** /**
* The interface of demo service * The interface of demo service
* *
* @method ResultInterface deferBackNum(string $token, int $consignee_id, int $limit_id, int $selected_num, int $order_type, int $goods_id, string $reservation_time = '') * @method ResultInterface deferOrderMark(string $token, int $orderType, int $orderId, float $money)
*/ */
interface FlowMeteringInterface interface FlowMeteringInterface
{ {
/** /**
*
* 补回 未支付 限购活动 库存
* @param string $token * @param string $token
* @param int $consignee_id * @param int $orderType
* @param int $limit_id * @param int $orderId
* @param int $selected_num * @param float $money
* @param int $order_type
* @param int $goods_id
* @param string $reservation_time
* @return mixed * @return mixed
*/ */
public function backNum(
public function OrderMark(
string $token, string $token,
int $consignee_id, int $orderType,
int $limit_id, int $orderId,
int $selected_num, float $money);
int $order_type,
int $goods_id,
string $reservation_time = '');
} }
\ 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