KPI => ปรับ load
This commit is contained in:
parent
a04cc7a2e8
commit
1b060856c1
8 changed files with 773 additions and 117 deletions
|
|
@ -2,6 +2,10 @@ interface DataOption {
|
|||
id: string;
|
||||
name: string;
|
||||
}
|
||||
interface ItemsTab {
|
||||
label: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface ItemsMenu {
|
||||
label: string;
|
||||
|
|
@ -61,4 +65,13 @@ interface FormData {
|
|||
qualification: string;
|
||||
}
|
||||
|
||||
export type { DataOption, ItemsMenu,NewPagination,typeOp,ResponsePreson,tableType,FormData };
|
||||
export type {
|
||||
DataOption,
|
||||
ItemsMenu,
|
||||
NewPagination,
|
||||
typeOp,
|
||||
ResponsePreson,
|
||||
tableType,
|
||||
FormData,
|
||||
ItemsTab,
|
||||
};
|
||||
|
|
|
|||
27
src/modules/14_KPI/interface/response/KPI.ts
Normal file
27
src/modules/14_KPI/interface/response/KPI.ts
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
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;
|
||||
}
|
||||
|
||||
export type { ResUserEvaluation };
|
||||
Loading…
Add table
Add a link
Reference in a new issue