You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
517 B
30 lines
517 B
<?php
|
|
|
|
namespace App\Service;
|
|
|
|
interface OrderServiceInterface
|
|
{
|
|
/**
|
|
* 线上订单下单
|
|
* 外卖
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function addOnlineOrder($data);
|
|
|
|
/**
|
|
* 线下订单下单
|
|
* 扫码支付
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function addOfflineOrder($data);
|
|
|
|
/**
|
|
* 订单是否已经存在
|
|
* @param $global_order_id
|
|
* @return mixed
|
|
*/
|
|
public function existsByGlobalOrderId($global_order_id);
|
|
|
|
}
|