ai助手投递偏好设置修复

This commit is contained in:
2026-07-10 16:29:31 +08:00
parent e8e2e09e62
commit 8cd21e7b98
11 changed files with 219 additions and 51 deletions
+4 -2
View File
@@ -23,7 +23,7 @@ export interface AgentConfig {
autoOptimizeResume?: number
/** 自动匹配分析 0=关闭 1=开启 */
autoMatchAnalysis?: number
/** 是否愿意接受部门调剂 */
/** 是否开启深度人岗匹配分析,可选值:是/否(null或空字符串视为关闭) */
acceptDeptTransfer?: string
/** 是否接受地点调剂 */
acceptLocationTransfer?: string
@@ -312,7 +312,9 @@ export function optimizeAgentResume(params: OptimizeResumeParams) {
/** 匹配度评分请求参数 */
export interface MatchScoreParams {
/** 定制简历 ID(字符串,避免大整数精度丢失) */
customizeResumeId: string
customizeResumeId?: string
/** 普通简历 ID(关闭优化时使用) */
resumeId?: string
/** 岗位 ID(字符串,避免大整数精度丢失) */
jobId: string
}