empAddress and fix durationYear
This commit is contained in:
parent
da4eb54a59
commit
ffb5b38936
6 changed files with 274 additions and 7 deletions
|
|
@ -189,7 +189,7 @@ export class CreateProfileEducation {
|
|||
country: string | null;
|
||||
degree: string | null;
|
||||
duration: string | null;
|
||||
durationYear: number;
|
||||
durationYear?: number | null;
|
||||
field: string | null;
|
||||
finishDate: Date | null;
|
||||
fundName: string | null;
|
||||
|
|
@ -212,7 +212,7 @@ export class CreateProfileEducationEmployee {
|
|||
country: string | null;
|
||||
degree: string | null;
|
||||
duration: string | null;
|
||||
durationYear: number;
|
||||
durationYear?: number | null;
|
||||
field: string | null;
|
||||
finishDate: Date | null;
|
||||
fundName: string | null;
|
||||
|
|
@ -234,7 +234,7 @@ export type UpdateProfileEducation = {
|
|||
country?: string | null;
|
||||
degree?: string | null;
|
||||
duration?: string | null;
|
||||
durationYear?: number;
|
||||
durationYear?: number | null;
|
||||
field?: string | null;
|
||||
finishDate?: Date | null;
|
||||
fundName?: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue