updated kpi list & detail
This commit is contained in:
parent
8c829c03bd
commit
bd0835b0f1
32 changed files with 5970 additions and 2034 deletions
82
src/modules/14_KPI/interface/request/index.ts
Normal file
82
src/modules/14_KPI/interface/request/index.ts
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
interface FormProfile {
|
||||
fullName: string;
|
||||
|
||||
position: string;
|
||||
type: string;
|
||||
level: string;
|
||||
status: string | undefined;
|
||||
result: string | undefined;
|
||||
score: string;
|
||||
|
||||
avartar: string;
|
||||
}
|
||||
|
||||
interface FormDataAssigned {
|
||||
including: string;
|
||||
includingName: string;
|
||||
target: string;
|
||||
unit: string;
|
||||
weight: number | null;
|
||||
achievement1: string;
|
||||
achievement2: string;
|
||||
achievement3: string;
|
||||
achievement4: string;
|
||||
achievement5: string;
|
||||
meaning: string;
|
||||
formula: string;
|
||||
kpiUserEvaluationId: string;
|
||||
}
|
||||
|
||||
interface FormCapacityList {
|
||||
id: string | null;
|
||||
name: string;
|
||||
level: string;
|
||||
point: number;
|
||||
weight: number;
|
||||
summary: number;
|
||||
}
|
||||
|
||||
interface ListCriteria {
|
||||
id: string;
|
||||
level: number;
|
||||
description: string;
|
||||
}
|
||||
interface ListCapacity {
|
||||
id: string;
|
||||
level: number;
|
||||
description: string;
|
||||
capacityId: string;
|
||||
}
|
||||
|
||||
interface FormComment {
|
||||
topic: string;
|
||||
reason: string;
|
||||
}
|
||||
|
||||
interface FormCommentByRole {
|
||||
id: string;
|
||||
topic: string;
|
||||
reason: string;
|
||||
|
||||
reasonEvaluator: string;
|
||||
reasonCommander: string;
|
||||
reasonCommanderHigh: string;
|
||||
}
|
||||
|
||||
interface FormQuery {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
round: string;
|
||||
keyword: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
FormProfile,
|
||||
FormDataAssigned,
|
||||
FormCapacityList,
|
||||
ListCriteria,
|
||||
ListCapacity,
|
||||
FormComment,
|
||||
FormCommentByRole,
|
||||
FormQuery,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue