ทะเบียนประวัติ: ประวัติการศึกษา interface
This commit is contained in:
parent
c3260940ea
commit
7ccc1a5808
3 changed files with 105 additions and 54 deletions
22
src/modules/04_registryNew/interface/request/Education.ts
Normal file
22
src/modules/04_registryNew/interface/request/Education.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
interface RequestItemsObject {
|
||||
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;
|
||||
}
|
||||
|
||||
export type { RequestItemsObject };
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue