fixing bug kpi detail
This commit is contained in:
parent
a4a59f8729
commit
3af2d9c5fa
1 changed files with 44 additions and 0 deletions
44
src/modules/14_KPI/interface/response/index.ts
Normal file
44
src/modules/14_KPI/interface/response/index.ts
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
interface ResEvaluator {
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
id: string;
|
||||
kpiUserEvaluationId: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
reason: string;
|
||||
topic: string;
|
||||
type: string;
|
||||
}
|
||||
|
||||
interface ResRound {
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
durationKPI: string;
|
||||
endDate: string;
|
||||
id: string;
|
||||
isActive: boolean;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
startDate: string;
|
||||
year: number;
|
||||
}
|
||||
interface ResEvaluatorAssessor {
|
||||
commanderHighId: string | null;
|
||||
commanderId: string | null;
|
||||
createdAt: string;
|
||||
evaluationResults: string;
|
||||
evaluationStatus: string;
|
||||
evaluatorId: string;
|
||||
firstname: string;
|
||||
id: string;
|
||||
kpiPeriodId: string;
|
||||
lastname: string;
|
||||
prefix: string;
|
||||
profileId: string;
|
||||
}
|
||||
|
||||
export type { ResEvaluator, ResRound, ResEvaluatorAssessor };
|
||||
Loading…
Add table
Add a link
Reference in a new issue