| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.PatArchiveOut; |
| | | import com.smartor.domain.PerSonWorkbenchDto; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 外部患者档案Mapper接口 |
| | |
| | | * @date 2024-04-29 |
| | | */ |
| | | @Mapper |
| | | public interface PatArchiveOutMapper |
| | | { |
| | | public interface PatArchiveOutMapper { |
| | | /** |
| | | * 查询外部患者档案 |
| | | * |
| | |
| | | */ |
| | | public PatArchiveOut selectPatArchiveOutByPatid(Long patid); |
| | | |
| | | public List<PerSonWorkbenchDto> selectPatArchiveCount(@Param("deptIds") long[] deptIds,@Param("drCodes") String[] drCodes); |
| | | |
| | | /** |
| | | * 查询外部患者档案列表 |
| | | * |