yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/service/category/MdmItemCategoryService.java
@@ -15,7 +15,7 @@ /** * MDM 物料分类 Service 接口 * * @author 芋道源码 * @author 超级管理员 */ public interface MdmItemCategoryService { @@ -99,4 +99,19 @@ */ List<MdmItemCategoryDO> getItemCategoryChildrenList(Long id); /** * 获得启用的分类列表 * * @return 分类列表 */ List<MdmItemCategoryDO> getSimpleItemList(); /** * 根据物料/产品标识获取分类 * * @param itemOrProduct 物料/产品标识 * @return 物料分类 */ MdmItemCategoryDO getItemCategoryByItemOrProduct(String itemOrProduct); }