hrms-mgt/src/modules/14_KPI/interface/response/KPI.ts

44 lines
967 B
TypeScript
Raw Normal View History

2024-06-17 16:01:54 +07:00
interface ResUserEvaluation {
capacityPoint: null;
commanderHighId: null | string;
commanderId: null | string;
createdAt: string;
durationKPI: string;
evaluationReqEdit: null | string;
evaluationResults: string;
evaluationStatus: string;
evaluatorId: string;
firstName: string;
id: string;
kpiPeriodId: string;
lastName: string;
plannedPoint: null | string;
posExecutiveName: null | string;
posLevelName: string;
posTypeName: string;
position: string;
prefix: string;
profileId: string;
rolePoint: null | string;
specialPoint: null | string;
year: number;
}
2024-09-20 13:02:15 +07:00
interface DevelopListType {
id: string;
evaluationId: string;
target: string;
summary: string | null;
point: number | null;
name: string;
achievement10: string;
achievement5: string;
achievement0: string;
isDevelopment70: boolean;
isDevelopment20: boolean;
isDevelopment10: boolean;
}
export type { ResUserEvaluation,DevelopListType };