| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.smartor.domain.PatArchivetag; |
| | | import org.apache.ibatis.annotations.MapKey; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 患者档案标签Mapper接口 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deletePatArchivetagByIds(Long[] ids); |
| | | |
| | | /** |
| | | * 获取患者标签字符串 |
| | | * |
| | | * @param patIds 患者档案标签主键集合 |
| | | * @return 结果 |
| | | */ |
| | | @MapKey("patid") |
| | | public Map<Long,String> getTagsByPatIds(@Param("orgid") String orgid, @Param("patIds") List<Long> patIds); |
| | | } |