生成定制简历部分默认优化选项全选

This commit is contained in:
2026-07-06 18:58:16 +08:00
parent 6024ea27e9
commit 78bf7fbebc
8 changed files with 655 additions and 409 deletions
+14 -2
View File
@@ -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[]
}
/**