更新:添加岗位匹配简历接口
This commit is contained in:
@@ -114,4 +114,6 @@ public interface IJobService
|
||||
public Integer getTotals(Job job);
|
||||
|
||||
Long updateReviewStatus(Long jobId, String reviewStatus);
|
||||
|
||||
List<AppUser> getRecommendByJobId(Long jobId);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user