根据手机号和姓名查询接口添加注释

This commit is contained in:
youxilong 2024-07-04 09:26:14 +08:00
parent 77b2d8ef4b
commit 6411620eaf

View File

@ -70,6 +70,12 @@ public interface ResidentInfoMapper {
*/
ResidentInfo getResidentInfoByPhoneAndOpenId(@Param("phone") String phone, @Param("openId") String openId);
/**
* 根据电话号码和居民姓名查询居民基本信息
*
* @param phone 手机号
* @param patientName 姓名
* @return 居民基本信息
*/
List<ResidentInfo> getResidentInfoByPhoneAndName(@Param("phone") String phone, @Param("patientName") String patientName);
}