|
@@ -14,7 +14,8 @@ import java.util.List;
|
|
|
public interface PmsProductAttributeService {
|
|
|
/**
|
|
|
* 根据分类分页获取商品属性
|
|
|
- * @param cid 分类id
|
|
|
+ *
|
|
|
+ * @param cid 分类id
|
|
|
* @param type 0->属性;2->参数
|
|
|
*/
|
|
|
List<PmsProductAttribute> getList(Long cid, Integer type, Integer pageSize, Integer pageNum);
|
|
@@ -35,8 +36,14 @@ public interface PmsProductAttributeService {
|
|
|
*/
|
|
|
PmsProductAttribute getItem(Long id);
|
|
|
|
|
|
+ /**
|
|
|
+ * 批量删除商品属性
|
|
|
+ */
|
|
|
@Transactional
|
|
|
int delete(List<Long> ids);
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取和分类相关的商品属性
|
|
|
+ */
|
|
|
List<ProductAttrInfo> getProductAttrInfo(Long productCategoryId);
|
|
|
}
|