Refactoring code module 08_KPI

This commit is contained in:
STW_TTTY\stwtt 2024-09-10 11:42:43 +07:00
parent 3636f380fb
commit 67d117dcfc
48 changed files with 989 additions and 1140 deletions

View file

@ -71,6 +71,25 @@ interface FormQuery {
keyword: string;
}
interface ListTarget {
id: string;
createdAt: string;
createdUserId: string;
lastUpdatedAt: string;
lastUpdateUserId: string;
createdFullName: string;
lastUpdateFullName: string;
topic: string;
reason: string;
score: number | null;
reasonEvaluator: string | null;
reasonCommander: string | null;
reasonCommanderHigh: string | null;
status: string;
type: string;
kpiUserCapacityId: string;
}
export type {
FormProfile,
FormDataAssigned,
@ -80,4 +99,5 @@ export type {
FormComment,
FormCommentByRole,
FormQuery,
ListTarget
};