Commit 4dc80a26 by feixiang

创建订单接口参数增加goodsId接收

parent 73e7c1dc
...@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface; ...@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface;
/** /**
* The interface of demo service * The interface of demo service
* *
* @method ResultInterface deferCreateOrder( string $token,int $consignee_id,int $activity_id,int $selected_num,int $order_type,float $total,float $goods_price,string $goods_name,string $goods_image,string $activity_name,string $reservation_time = '') * @method ResultInterface deferCreateOrder( string $token,int $consignee_id,int $activity_id,int $selected_num,int $order_type,float $total,float $goods_price,string $goods_name,string $goods_image,string $activity_name,int $goodsId,string $reservation_time = '')
* @method ResultInterface deferGetOrderInfoBySn(int $storeId, string $orderSn) * @method ResultInterface deferGetOrderInfoBySn(int $storeId, string $orderSn)
* @method ResultInterface deferGetOrderInfo(int $storeId,int $orderId) * @method ResultInterface deferGetOrderInfo(int $storeId,int $orderId)
* @method ResultInterface deferUpdateInfoById(int $storeId,int $orderId, array $updateInfo) * @method ResultInterface deferUpdateInfoById(int $storeId,int $orderId, array $updateInfo)
...@@ -35,6 +35,7 @@ interface OrderInterface ...@@ -35,6 +35,7 @@ interface OrderInterface
* @param string $goods_name * @param string $goods_name
* @param string $goods_image * @param string $goods_image
* @param string $activity_name * @param string $activity_name
* @param int $goodsId,
* @param string $reservation_time * @param string $reservation_time
* @return mixed * @return mixed
*/ */
...@@ -50,6 +51,7 @@ interface OrderInterface ...@@ -50,6 +51,7 @@ interface OrderInterface
string $goods_name, string $goods_name,
string $goods_image, string $goods_image,
string $activity_name, string $activity_name,
int $goodsId,
string $reservation_time = ''); string $reservation_time = '');
public function getOrderInfo(int $storeId,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