liusheng
2 天以前 e6456d2196b3e57bd06be0fbc74dd3e0fc28fdeb
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
66
67
68
69
70
71
72
73
74
75
package com.smartor.mapper;
 
import com.ruoyi.common.annotation.DataSource;
import com.ruoyi.common.core.domain.entity.SysDept;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.enums.DataSourceType;
import com.smartor.domain.*;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 河南采集患者信息Mapper接口
 *
 * @author smartor
 * @date 2025-07-09
 */
@DataSource(value = DataSourceType.SLAVE)
@Mapper
public interface HNGatherPatArchiveMapper {
 
    /**
     * 查询患者档案列表
     *
     * @param patArchive 患者档案
     * @return 患者档案集合
     */
    public List<PatArchive> selectPatArchiveList(PatArchive patArchive);
 
    /**
     * 出入院信息
     *
     * @param patMedInhosp
     * @return
     */
    public List<PatMedInhosp> selectPatMedInhospList(PatMedInhosp patMedInhosp);
 
    public Long selectPatMedInhospListCount(PatMedInhosp patMedInhosp);
 
    /**
     * 门急诊信息
     *
     * @param patMedOuthosp
     * @return
     */
    public List<PatMedOuthosp> selectPatMedOuthospList(PatMedOuthosp patMedOuthosp);
 
 
    /**
     * /**
     * 查询疾病列表
     *
     * @param icd10 疾病
     * @return 疾病集合
     */
    public List<Icd10> selectIcd10List(Icd10 icd10);
 
    /**
     * 根据条件分页查询用户列表
     *
     * @param sysUser 用户信息
     * @return 用户信息集合信息
     */
    public List<SysUser> selectUserList(SysUser sysUser);
 
    /**
     * 查询部门管理数据
     *
     * @param dept 部门信息
     * @return 部门信息集合
     */
    public List<SysDept> selectDeptList(SysDept dept);
 
 
}