客户端集成简历生成器
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
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:
24
src/types/jobportal/user.d.ts
vendored
24
src/types/jobportal/user.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user