Commit 00c96295 by dzhang

添加getSubOrderListBySubIds

parent 6f09d11a
......@@ -23,6 +23,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferUpdateInfoById(int $storeId,int $orderId, array $updateInfo)
* @method ResultInterface deferUpdateInfoByIds(int $storeId,array $orderIds, array $updateInfo)
* @method ResultInterface deferCollectionClose(int $storeId, int $orderId)
* @method ResultInterface deferGetSubOrderListBySubIds(int $storeId,array $subIds)
* @method ResultInterface deferUnconfirmedCount(int $storeId)
*/
interface OrderInterface
......@@ -152,4 +153,13 @@ interface OrderInterface
* @return array
*/
public function unconfirmedCount(int $storeId);
/**
* 批量查询子订单信息
*
* @param integer $storeId
* @param array $subIds
* @return void
*/
public function getSubOrderListBySubIds(int $storeId,array $subIds);
}
\ 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