Commit 60539896 by feixiang

卖家下单

parent 3fb741b3
...@@ -51,6 +51,22 @@ interface OrderInterface ...@@ -51,6 +51,22 @@ interface OrderInterface
string $activity_name, string $activity_name,
string $reservation_time = ''); string $reservation_time = '');
public function sellerCreateOrder(
int $sellerId,
int $storeId,
int $consigneeId,
int $itemId,
int $selectedNum,
int $orderType,
float $total,
float $goodsPrice,
string $goodsName,
string $goodsImage,
string $activityName,
string $reservationTime = ''
);
public function getOrderInfo(int $storeId,int $orderId); public function getOrderInfo(int $storeId,int $orderId);
public function getOrderInfoBySn(int $storeId, string $orderSn); public function getOrderInfoBySn(int $storeId, string $orderSn);
......
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