申请岗位列表信息查询以及简历解析评分计算和工作年限添加

This commit is contained in:
2025-12-18 00:06:18 +08:00
parent 2b61159038
commit efc6c6e5a9
11 changed files with 339 additions and 14 deletions

View File

@@ -5,6 +5,7 @@ import com.vetti.common.core.controller.BaseController;
import com.vetti.common.core.domain.R;
import com.vetti.common.core.page.TableWebDataInfo;
import com.vetti.common.enums.BusinessType;
import com.vetti.common.utils.SecurityUtils;
import com.vetti.hotake.domain.HotakeRolesApplyInfo;
import com.vetti.hotake.service.IHotakeRolesApplyInfoService;
import io.swagger.annotations.Api;
@@ -36,6 +37,8 @@ public class HotakeRolesApplyInfoController extends BaseController
public TableWebDataInfo<HotakeRolesApplyInfo> pageList(HotakeRolesApplyInfo hotakeRolesApplyInfo)
{
startPage();
//招聘人列表数据
hotakeRolesApplyInfo.setRecruiterId(SecurityUtils.getUserId());
List<HotakeRolesApplyInfo> list = hotakeRolesApplyInfoService.selectHotakeRolesApplyInfoList(hotakeRolesApplyInfo);
return getWebDataTable(list);
}