生成定制简历部分默认优化选项全选
This commit is contained in:
+14
-2
@@ -435,6 +435,16 @@ export interface SkillGapResume {
|
||||
targetPosition: string
|
||||
}
|
||||
|
||||
/** 技能差距分析 — 差距项 */
|
||||
export interface SkillGapItem {
|
||||
/** 关键词 */
|
||||
keyword: string
|
||||
/** 差距标题 */
|
||||
title: string
|
||||
/** 差距描述 */
|
||||
description: string
|
||||
}
|
||||
|
||||
/** 技能差距分析返回数据 */
|
||||
export interface SkillGapData {
|
||||
/** 匹配度分数 */
|
||||
@@ -443,8 +453,10 @@ export interface SkillGapData {
|
||||
job: SkillGapJob
|
||||
/** 简历信息 */
|
||||
resume: SkillGapResume
|
||||
/** 缺少的技能列表 */
|
||||
missingSkills: string[]
|
||||
/** 缺少的技能列表(兼容旧版) */
|
||||
missingSkills?: string[]
|
||||
/** 差距分析列表(新版) */
|
||||
gaps?: SkillGapItem[]
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user