huminmin
7 天以前 0fdd0bf60b7d98d21c9b5ff95bb55f0fa6495007
yudao-module-mdm/src/main/java/cn/iocoder/yudao/module/mdm/service/item/MdmItemService.java
@@ -15,7 +15,7 @@
/**
 * MDM 物料主数据 Service 接口
 *
 * @author 芋道源码
 * @author 超级管理员
 */
public interface MdmItemService {
@@ -48,6 +48,13 @@
     * @param id 编号
     */
    void deleteItem(Long id);
    /**
     * 批量删除物料
     *
     * @param ids 编号列表
     */
    void deleteItemList(Collection<Long> ids);
    /**
     * 获得物料
@@ -131,4 +138,11 @@
     */
    MdmItemDO getItemByCode(String code);
    /**
     * 获得物料精简列表(启用状态,用于下拉选择)
     *
     * @return 物料列表
     */
    List<MdmItemDO> getItemSimpleList();
}