ทะเบียนประวัติ => ประวัติการศึกษา clear form

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-15 17:54:35 +07:00
parent 545fce692f
commit 5d25d9be8d
5 changed files with 124 additions and 78 deletions

View file

@ -1,27 +1,26 @@
interface RequestItemsObject {
profileId: string
educationLevel: string;
institute: string;
startYear: number;
endYear: number;
finishDate: Date;
startDate: Date;
endDate: Date;
isEducation: boolean | null;
degree: string;
field: string;
fundName: string;
gpa: string;
country: string;
other: string;
duration: string;
durationYear: number | null;
note: string;
educationLevelId: string,
positionPath: string,
positionPathId: string,
isDate: boolean
}
export type { RequestItemsObject };
profileId: string;
educationLevel: string;
institute: string;
startYear: number;
endYear: number;
finishDate: Date | null;
startDate: Date;
endDate: Date;
isEducation: boolean | null;
degree: string;
field: string;
fundName: string;
gpa: string;
country: string;
other: string;
duration: string;
durationYear: number | null;
note: string;
educationLevelId: string;
positionPath: string;
positionPathId: string;
isDate: boolean;
}
export type { RequestItemsObject };