43 lines
967 B
TypeScript
43 lines
967 B
TypeScript
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;
|
|
}
|
|
|
|
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 };
|