Update PmsProductAttributeService.java

This commit is contained in:
macro 2021-01-24 15:57:09 +08:00
parent 39a2393bf1
commit a704ebf72c

View File

@ -41,5 +41,8 @@ public interface PmsProductAttributeService {
@Transactional @Transactional
int delete(List<Long> ids); int delete(List<Long> ids);
/**
* 获取商品分类对应属性列表
*/
List<ProductAttrInfo> getProductAttrInfo(Long productCategoryId); List<ProductAttrInfo> getProductAttrInfo(Long productCategoryId);
} }