zhaowenxuan
2025-01-20 7cc549d5f33e4fd500469455c055d0a4a71cf5e9
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.domain.DictIcd;
 
import java.util.List;
 
 
/**
 * 疾病字典Service接口
 *
 * @author ltkj
 * @date 2023-03-22
 */
public interface IDictIcdService extends IService<DictIcd> {
    /**
     * 查询疾病字典
     *
     * @param id 疾病字典主键
     * @return 疾病字典
     */
    public DictIcd selectDictIcdById(Long id);
 
    /**
     * 查询疾病字典列表
     *
     * @param dictIcd 疾病字典
     * @return 疾病字典集合
     */
    public List<DictIcd> selectDictIcdList(DictIcd dictIcd);
 
 
 
    /**
     * 新增疾病字典
     *
     * @param dictIcd 疾病字典
     * @return 结果
     */
    public int insertDictIcd(DictIcd dictIcd);
 
    /**
     * 修改疾病字典
     *
     * @param dictIcd 疾病字典
     * @return 结果
     */
    public int updateDictIcd(DictIcd dictIcd);
 
    /**
     * 批量删除疾病字典
     *
     * @param ids 需要删除的疾病字典主键集合
     * @return 结果
     */
    public int deleteDictIcdByIds(Long[] ids);
 
    /**
     * 删除疾病字典信息
     *
     * @param id 疾病字典主键
     * @return 结果
     */
    public int deleteDictIcdById(Long id);
}