简历解析结构修改和字典逻辑修改
This commit is contained in:
@@ -28,17 +28,17 @@ public class HotakeCvInfoDto {
|
||||
@ApiModelProperty("地点")
|
||||
private String location;
|
||||
@ApiModelProperty("链接对象集合")
|
||||
private List<VcLinksDto> linksList;
|
||||
private List<VcLinksDto> links;
|
||||
@ApiModelProperty("自我介绍")
|
||||
private String about;
|
||||
@ApiModelProperty("技能工具-许可证、注册/会员资格、认证")
|
||||
private List<VcSkillsToolsDto> skillsToolsList;
|
||||
private List<VcSkillsToolsDto> skillsTools;
|
||||
@ApiModelProperty("语言")
|
||||
private List<VcLanguagesDto> languagesList;
|
||||
private List<VcLanguagesDto> languages;
|
||||
@ApiModelProperty("工作经验集合")
|
||||
private List<VcExperienceDto> experienceList;
|
||||
private List<VcExperienceDto> experience;
|
||||
@ApiModelProperty("教育经历")
|
||||
private List<VcEducationDto> educationList;
|
||||
private List<VcEducationDto> education;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
package com.vetti.hotake.domain.dto.VcDto;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
/**
|
||||
* 简历-教育经历-证书-信息对象
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-30
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class VcCertificateDto {
|
||||
|
||||
@ApiModelProperty("文件名称")
|
||||
private String fileName;
|
||||
|
||||
@ApiModelProperty("文件后缀(doc/pdf)")
|
||||
private String fileSuffix;
|
||||
|
||||
@ApiModelProperty("文件地址")
|
||||
private String fileUrl;
|
||||
|
||||
@ApiModelProperty("文件大小")
|
||||
private String fileSizeShow;
|
||||
|
||||
}
|
||||
@@ -22,4 +22,8 @@ public class VcEducationDto {
|
||||
|
||||
@ApiModelProperty("时间")
|
||||
private String date;
|
||||
|
||||
@ApiModelProperty("证书附件")
|
||||
private VcCertificateDto certificate;
|
||||
|
||||
}
|
||||
|
||||
@@ -29,6 +29,6 @@ public class VcExperienceDto {
|
||||
private String duration;
|
||||
|
||||
@ApiModelProperty("描述集合")
|
||||
private List<VcExperienceDescriptionDto> descriptionList;
|
||||
private List<VcExperienceDescriptionDto> description;
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,4 @@ public class VcSkillsToolsDto {
|
||||
|
||||
@ApiModelProperty("内容")
|
||||
private String content;
|
||||
|
||||
@ApiModelProperty("证书附件URL")
|
||||
private String fileUrl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user