crud emp myinfo
This commit is contained in:
parent
2d582be2a1
commit
ac82b6351f
10 changed files with 1050 additions and 2 deletions
|
|
@ -206,6 +206,29 @@ export class CreateProfileEducation {
|
|||
note: string | null;
|
||||
}
|
||||
|
||||
export class CreateProfileEducationEmployee {
|
||||
profileEmployeeId: string | null;
|
||||
country: string | null;
|
||||
degree: string | null;
|
||||
duration: string | null;
|
||||
durationYear: number;
|
||||
field: string | null;
|
||||
finishDate: Date | null;
|
||||
fundName: string | null;
|
||||
gpa: string | null;
|
||||
institute: string | null;
|
||||
other: string | null;
|
||||
startDate: Date | null;
|
||||
endDate: Date | null;
|
||||
educationLevel: string | null;
|
||||
educationLevelId: string | null;
|
||||
positionPath: string | null;
|
||||
positionPathId: string | null;
|
||||
isDate: boolean | null;
|
||||
isEducation: boolean | null;
|
||||
note: string | null;
|
||||
}
|
||||
|
||||
export type UpdateProfileEducation = {
|
||||
country?: string | null;
|
||||
degree?: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue