客户端集成简历生成器
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
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:
francis-fh
2026-07-24 19:28:10 +08:00
parent 0b90547ceb
commit 279011e652
5 changed files with 566 additions and 1053 deletions

View File

@@ -16,6 +16,7 @@ declare namespace API {
education?: string;
politicalAffiliation?: string | null;
phone?: string;
email?: string;
avatar?: string;
salaryMin?: string;
salaryMax?: string;
@@ -37,9 +38,32 @@ declare namespace API {
company?: string | null;
experiencesList?: WorkExperience[];
appSkillsList?: AppSkill[];
educationsList?: AppUserEducation[];
trainsList?: AppUserTrain[];
fileList?: any[];
}
export interface AppUserEducation {
id?: number;
userId?: number;
schoolName?: string;
major?: string;
degree?: string;
startTime?: string;
endTime?: string;
content?: string;
}
export interface AppUserTrain {
id?: number;
userId?: number;
trainOrg?: string;
trainCourse?: string;
startTime?: string;
endTime?: string;
trainContent?: string;
}
export interface WorkExperience {
createTime?: string;
updateTime?: string;