feat: Implement job title suggestion service with caching and tokenization

This commit is contained in:
2026-07-16 10:02:56 +08:00
parent 8dea752d48
commit 1e7853b9a4
8 changed files with 343 additions and 1 deletions

View File

@@ -43,6 +43,13 @@ public interface JobMapper extends BaseMapper<Job> {
List<Job> selectAllJob(Map<String, Object> params);
/**
* 查询去重后的有效岗位名称,供 IK 分词缓存构建使用。
*
* @return 有效岗位名称
*/
List<String> selectValidJobTitles();
void insertBatchRowWork(List<RowWork> batchList);
List<RowWork> selectAllInsertRowWork();