更新:查询岗位时,学历不准的问题。

This commit is contained in:
chenyanchang
2026-06-17 11:26:55 +08:00
parent f5f77327b4
commit c19091a68b

View File

@@ -615,7 +615,7 @@ public class ESJobSearchImpl implements IESJobSearchService
.match(ESJobDocument::getDescription,jobQuery.getJobTitle().trim(),1.0f));
}
if(hasText(jobQuery.getEducation())){
wrapper.and(a->a.le(ESJobDocument::getEducation,jobQuery.getEducation().trim()));
wrapper.and(a->a.eq(ESJobDocument::getEducation,jobQuery.getEducation().trim()));
}
if(hasText(jobQuery.getArea())){
List<Integer> integers = StringUtil.convertStringToIntegerList(jobQuery.getArea().trim());