Commit 8e604d26 by xmy

feat:获取代理是否可用

parent 272010ad
......@@ -12,7 +12,7 @@ namespace Hdll\Services\Buyer\Lib;
use Swoft\Core\ResultInterface;
/**
* @method ResultInterface deferSaveBill(int $order_id, int $buyer_id, int $store_id, string $order_sn, int $money, string $orderName, int $orderType,int $agentId)
* @method ResultInterface deferSaveBill(int $order_id, int $buyer_id, int $store_id, string $order_sn, int $money, string $orderName, int $orderType, int $agentId, int $itemId)
* @method ResultInterface deferGetListByOrderId(int $storeId, int $orderId)
* Interface AgencyInterface
* @package App\Lib
......@@ -30,6 +30,7 @@ interface BillInterface
* @param string $orderName //订单名称
* @param int $orderType //订单类型
* @param int $agentId //代理商id
* @param int $itemId
* @return mixed
* @author Administrator
*/
......@@ -41,7 +42,8 @@ interface BillInterface
int $money,
string $orderName,
int $orderType,
int $agentId
int $agentId,
int $itemId
);
public function getListByOrderId(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