zouyu
2 天以前 2ea3b36a810adcb639f4d3c72c860f722f601927
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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<StaffCompetencyInspectItemConfig> {
 
    List<StaffCompetencyInspectItemConfig> 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);
}