更新:添加岗位匹配简历接口

This commit is contained in:
chenyanchang
2026-06-27 03:06:16 +08:00
parent 65566c16d4
commit af953826e4
6 changed files with 78 additions and 13 deletions

View File

@@ -114,4 +114,6 @@ public interface IJobService
public Integer getTotals(Job job);
Long updateReviewStatus(Long jobId, String reviewStatus);
List<AppUser> getRecommendByJobId(Long jobId);
}

View File

@@ -29,6 +29,7 @@ import com.ruoyi.common.utils.SiteSecurityUtils;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.bean.BeanUtils;
import com.ruoyi.common.utils.spring.SpringUtils;
import io.swagger.models.auth.In;
import org.apache.commons.collections4.CollectionUtils;
import org.dromara.easyes.core.biz.EsPageInfo;
import org.slf4j.Logger;
@@ -1227,4 +1228,9 @@ public class JobServiceImpl extends ServiceImpl<JobMapper,Job> implements IJobSe
public Long updateReviewStatus(Long jobId, String reviewStatus) {
return jobMapper.updateReviewStatus(jobId, reviewStatus);
}
@Override
public List<AppUser> getRecommendByJobId(Long jobId) {
return jobMapper.getRecommendAppUser(jobId);
}
}