26 lines
479 B
TypeScript
26 lines
479 B
TypeScript
interface FormQueryRound {
|
|
page: number;
|
|
pageSize: number;
|
|
year: number;
|
|
keyword: string;
|
|
}
|
|
|
|
interface FormRound {
|
|
durationKPI: string;
|
|
startDate: Date | null;
|
|
endDate: Date | null;
|
|
}
|
|
|
|
interface FormCompetency {
|
|
competencyType: string;
|
|
competencyName: string;
|
|
definition: string;
|
|
level_1: string;
|
|
level_2: string;
|
|
level_3: string;
|
|
level_4: string;
|
|
level_5: string;
|
|
evaluation: string;
|
|
}
|
|
|
|
export type { FormQueryRound, FormRound, FormCompetency };
|