Commit a6b0db5d by feixiang

订单服务接受参数修改

parent 669918a9
......@@ -18,6 +18,7 @@ use Swoft\Core\ResultInterface;
* @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 deferGetOrderInfoBySn(int $storeId, string $orderSn)
* @method ResultInterface deferGetOrderInfo(int $storeId,int $orderId)
* @method ResultInterface deferUpdateInfoById(int $storeId,int $orderId, array $updateInfo)
*/
interface OrderInterface
{
......@@ -67,5 +68,5 @@ interface OrderInterface
public function getOrderInfoBySn(int $storeId, string $orderSn);
public function updateInfoById(int $orderId, array $updateInfo);
public function updateInfoById(int $storeId,int $orderId, array $updateInfo);
}
\ 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