Update PmsProductAttributeService.java

This commit is contained in:
macro
2020-03-06 20:37:48 +08:00
parent 44dc82d4d6
commit c6de75d6d8

View File

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