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

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

@@ -29,6 +29,8 @@ public class HotakeCvInfoDto {
private String location;
@ApiModelProperty("当前工作公司")
private String currentWork;
@ApiModelProperty("工作年限")
private String experienceYear;
@ApiModelProperty("链接对象集合")
private List<VcLinksDto> links;
@ApiModelProperty("自我介绍")

View File

@@ -1,5 +1,6 @@
package com.vetti.hotake.domain.dto;
import com.vetti.common.core.domain.entity.SysUser;
import com.vetti.hotake.domain.HotakeAiInterviewQuestionsInfo;
import com.vetti.hotake.domain.HotakeInitialScreeningQuestionsInfo;
import com.vetti.hotake.domain.HotakeRolesInfo;
@@ -44,4 +45,7 @@ public class HotakeRolesInfoDto extends HotakeRolesInfo {
@ApiModelProperty("AI面试问题数据集合")
private List<HotakeAiInterviewQuestionsInfo> aiInterviewQuestionsInfoList;
@ApiModelProperty("招聘人详细信息")
private SysUser recruiterUser;
}