Commit 51b4a7df authored by zhangdongying's avatar zhangdongying

获取组合产品列表(批量)

parent 38030c74
...@@ -155,10 +155,20 @@ interface ProductChildServiceInterface ...@@ -155,10 +155,20 @@ interface ProductChildServiceInterface
/** /**
* 获取组合产品列表 * 获取组合产品列表
* *
* @param int $childProductId 仓库子SKU-ID * @param int $childProductId 仓库子产品ID
* @param array $columns 子SKU表的字段,默认显示全部 * @param array $columns 子SKU表的字段,默认显示全部
* @param array $relations 子SKU的关联关系,可传入['brand', 'category', 'product_name', 'images', 'cost', 'weight', 'packs'] * @param array $relations 子SKU的关联关系,可传入['brand', 'category', 'product_name', 'images', 'cost', 'weight', 'packs']
* @return array * @return array
*/ */
public function getPackListById(int $childProductId, array $columns = ['*'], array $relations = []): array; public function getPackListById(int $childProductId, array $columns = ['*'], array $relations = []): array;
/**
* 获取组合产品列表(批量)
*
* @param array $childProductIds 仓库子产品ID数组
* @param array $columns 子SKU表的字段,默认显示全部
* @param array $relations 子SKU的关联关系,可传入['brand', 'category', 'product_name', 'images', 'cost', 'weight', 'packs']
* @return array
*/
public function getPackListByIds(array $childProductIds, array $columns = ['*'], array $relations = []): 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