Commit 94baa6ce authored by 王源's avatar 王源 🎧

更新三方平台产品rpc接口文件

parent 8d51f978
...@@ -12,12 +12,27 @@ interface ThirdPlatformProductServiceInterface ...@@ -12,12 +12,27 @@ interface ThirdPlatformProductServiceInterface
{ {
/** /**
* 通过三方平台子产品的三方平台子产品 * 通过id数组获取shopify子产品数组
* @param array $ids 默认去重 * @param array $ids 默认去重
* @param string $type
* @return array 默认keyBy * @return array 默认keyBy
* @author Zero * @author Zero
*/ */
public function getChildrenByIds(array $ids, string $type): array; public function getShopifyChildrenByIds(array $ids): array;
/**
* 通过id数组获取速卖通子产品数组
* @param array $ids 默认去重
* @return array 默认keyBy
* @author Zero
*/
public function getAliExpressChildrenByIds(array $ids): array;
/**
* 通过id数组获取Magento子产品数组
* @param array $ids 默认去重
* @return array 默认keyBy
* @author Zero
*/
public function getMagentoChildrenByIds(array $ids): array;
} }
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