empAddress and fix durationYear

This commit is contained in:
AdisakKanthawilang 2024-05-16 10:32:51 +07:00
parent da4eb54a59
commit ffb5b38936
6 changed files with 274 additions and 7 deletions

View file

@ -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;