简历推荐功能开发
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
冯辉
2026-06-27 17:57:45 +08:00
parent f248d9a409
commit e13cea8c36
9 changed files with 1000 additions and 143 deletions

View File

@@ -86,4 +86,64 @@ declare namespace API.ManagementList {
total: number;
rows: Array<Manage>;
}
/** 推荐简历 - 技能 */
export interface RecommendSkill {
id?: number;
userId?: number;
name?: string;
levels?: string;
}
/** 推荐简历 - 工作经历 */
export interface RecommendExperience {
id?: number;
companyName?: string;
position?: string;
userId?: number;
startDate?: string;
endDate?: string;
description?: string;
}
/** 推荐简历 - 用户记录 */
export interface RecommendUser {
userId?: number;
name?: string;
age?: string;
sex?: string;
birthDate?: string;
education?: string;
politicalAffiliation?: string;
phone?: string;
avatar?: string;
salaryMin?: string;
salaryMax?: string;
area?: string;
status?: string;
loginIp?: string;
loginDate?: string;
jobTitleId?: string;
experience?: string;
idCard?: string;
isCompanyUser?: string;
nation?: string;
workExperience?: string;
matchLevelDesc?: string;
experiencesList?: RecommendExperience[];
appSkillsList?: RecommendSkill[];
}
export interface RecommendPageResult {
code: number;
msg: string;
data: RecommendUser[];
}
export interface SkillPageResult {
code: number;
msg: string;
total: number;
rows: RecommendSkill[];
}
}