diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/residentinfo/ResidentInfoMapper.java b/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/residentinfo/ResidentInfoMapper.java index cceea607..fa2b0598 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/residentinfo/ResidentInfoMapper.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/residentinfo/ResidentInfoMapper.java @@ -70,6 +70,12 @@ public interface ResidentInfoMapper { */ ResidentInfo getResidentInfoByPhoneAndOpenId(@Param("phone") String phone, @Param("openId") String openId); - + /** + * 根据电话号码和居民姓名查询居民基本信息 + * + * @param phone 手机号 + * @param patientName 姓名 + * @return 居民基本信息 + */ List getResidentInfoByPhoneAndName(@Param("phone") String phone, @Param("patientName") String patientName); }