支持按身份证查询推送岗位

This commit is contained in:
2026-07-30 10:21:31 +08:00
parent df6d3a7220
commit 99bb6ca5b2
4 changed files with 106 additions and 2 deletions

View File

@@ -66,4 +66,10 @@ public interface AppNoticeMapper extends BaseMapper<AppNotice>
public int deleteNoticeByIds(Long[] noticeIds);
List<Job> recommend(@Param("jobTitle")String jobTitle,@Param("userId") Long userId);
/**
* 按身份证号查询人才服务系统推送的有效岗位。
*/
List<Job> recommendByIdNumber(@Param("jobTitle") String jobTitle,
@Param("idNumber") String idNumber);
}