KPI => ประกาศผล, report

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-07-15 17:05:33 +07:00
parent 4419b41a39
commit 823fe93528
8 changed files with 372 additions and 147 deletions

View file

@ -2,6 +2,10 @@ interface DataOption {
id: string;
name: string;
}
interface OptionCheckbox {
label: string;
value: string;
}
interface ItemsTab {
label: string;
name: string;
@ -64,6 +68,7 @@ interface FormData {
email: string;
qualification: string;
}
interface DataCapacity {}
export type {
DataOption,
@ -74,4 +79,6 @@ export type {
tableType,
FormData,
ItemsTab,
OptionCheckbox,
DataCapacity,
};

View file

@ -41,4 +41,19 @@ interface ResEvaluatorAssessor {
profileId: string;
}
export type { ResEvaluator, ResRound, ResEvaluatorAssessor };
interface ResDevelopment {
developmentName: string;
durationKPI: string;
firstname: string;
id: string;
kpiPeriodId: string;
lastname: string;
organization: string;
posLevelName: string;
posTypeName: string;
position: string;
prefix: string;
root: string;
}
export type { ResEvaluator, ResRound, ResEvaluatorAssessor, ResDevelopment };