package com.ruoyi.inspect.service; import com.ruoyi.inspect.pojo.StaffCompetencyInspectItemConfig; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** * @author 27233 * @description 针对表【staff_competency_inspect_item_config(人员能力-检验项配置表)】的数据库操作Service * @createDate 2026-03-26 17:16:51 */ public interface StaffCompetencyInspectItemConfigService extends IService { List selectConfigList(StaffCompetencyInspectItemConfig config); StaffCompetencyInspectItemConfig selectConfigById(Long configId); boolean checkItemNameUnique(StaffCompetencyInspectItemConfig config); int insertConfig(StaffCompetencyInspectItemConfig config); int updateConfig(StaffCompetencyInspectItemConfig config); boolean hasChildByConfigId(Long configId); int deleteConfigById(Long configId); int selectNormalChildrenConfigById(Long configId); }