2023-06-01 12:54:58 +07:00
|
|
|
//ข้อมูล
|
|
|
|
|
interface ResponseObject {
|
|
|
|
|
id: string;
|
|
|
|
|
educationLevel: string;
|
|
|
|
|
educationLevelId: string;
|
|
|
|
|
positionPath: string;
|
2023-07-10 10:10:46 +07:00
|
|
|
isEducation: boolean;
|
2023-06-01 12:54:58 +07:00
|
|
|
institute: string;
|
|
|
|
|
degree: string;
|
|
|
|
|
field: string;
|
|
|
|
|
gpa: string;
|
|
|
|
|
country: string;
|
|
|
|
|
duration: string;
|
|
|
|
|
durationYear: number;
|
|
|
|
|
other: string;
|
|
|
|
|
fundName: string;
|
2023-07-10 10:10:46 +07:00
|
|
|
isDate: string;
|
2023-06-01 12:54:58 +07:00
|
|
|
finishDate: Date;
|
|
|
|
|
startDate: number;
|
|
|
|
|
endDate: number;
|
2023-07-10 10:10:46 +07:00
|
|
|
startDate2: Date;
|
|
|
|
|
endDate2: Date;
|
2023-06-01 12:54:58 +07:00
|
|
|
createdFullName: string;
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { ResponseObject };
|