Refactoring code module 14_KPI

This commit is contained in:
STW_TTTY\stwtt 2024-09-20 13:02:15 +07:00
parent bd33093d3e
commit 76118a8d11
37 changed files with 827 additions and 1675 deletions

View file

@ -62,8 +62,8 @@ interface FormCommentByRole {
id: string;
topic: string;
reason: string;
createdFullName: string;
score: string;
createdFullName?: string;
score?: string;
reasonEvaluator: string;
reasonCommander: string;
reasonCommanderHigh: string;

View file

@ -24,4 +24,20 @@ interface ResUserEvaluation {
year: number;
}
export type { ResUserEvaluation };
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 };