From e6456d2196b3e57bd06be0fbc74dd3e0fc28fdeb Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 22 七月 2025 19:17:55 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/java/com/smartor/mapper/HNGatherPatArchiveMapper.java | 75 +++++++++++++++++++++++++++++++++++++ 1 files changed, 75 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/java/com/smartor/mapper/HNGatherPatArchiveMapper.java b/smartor/src/main/java/com/smartor/mapper/HNGatherPatArchiveMapper.java new file mode 100644 index 0000000..171fa9f --- /dev/null +++ b/smartor/src/main/java/com/smartor/mapper/HNGatherPatArchiveMapper.java @@ -0,0 +1,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; + +/** + * 娌冲崡閲囬泦鎮h�呬俊鎭疢apper鎺ュ彛 + * + * @author smartor + * @date 2025-07-09 + */ +@DataSource(value = DataSourceType.SLAVE) +@Mapper +public interface HNGatherPatArchiveMapper { + + /** + * 鏌ヨ鎮h�呮。妗堝垪琛� + * + * @param patArchive 鎮h�呮。妗� + * @return 鎮h�呮。妗堥泦鍚� + */ + 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); + + +} -- Gitblit v1.9.3