API ประเมืน
This commit is contained in:
parent
0e5d15dc7c
commit
257b4a1424
16 changed files with 700 additions and 186 deletions
|
|
@ -30,4 +30,36 @@ interface FormCommandRef {
|
|||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type { FormCommand, FormCommandRef, FormSpec };
|
||||
interface EducationForm {
|
||||
country: string;
|
||||
degree: string;
|
||||
duration: string;
|
||||
durationYear: number;
|
||||
educationLevel: string;
|
||||
endDate: Date;
|
||||
field: string;
|
||||
finishDate: Date;
|
||||
fundName: string;
|
||||
gpa: string;
|
||||
institute: string;
|
||||
isDate: boolean;
|
||||
isEducation: boolean;
|
||||
other: string;
|
||||
startDate: Date;
|
||||
}
|
||||
|
||||
interface CertificatesForm {
|
||||
certificateNo: string;
|
||||
certificateType: string;
|
||||
expireDate: Date;
|
||||
issueDate: Date;
|
||||
issuer: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
FormCommand,
|
||||
FormCommandRef,
|
||||
FormSpec,
|
||||
EducationForm,
|
||||
CertificatesForm,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue