Merge branch 'develop' into devTee

# Conflicts:
#	src/modules/14_KPI/interface/request/Main.ts
This commit is contained in:
STW_TTTY\stwtt 2024-04-19 16:44:52 +07:00
commit adadddc222
11 changed files with 678 additions and 415 deletions

View file

@ -52,4 +52,19 @@ interface ListGroup{
id:string
nameGroupKPI:string
}
export type { FormQueryRound, FormRound, FormCompetency, FormDataRole,NewPagination,ListGroup };
interface FormQueryCapacity {
page: number;
pageSize: number;
keyword: string;
}
export type {
FormQueryRound,
FormRound,
FormCompetency,
FormDataRole,
NewPagination,
FormQueryCapacity,
ListGroup
};

View file

@ -11,4 +11,19 @@ interface ResRound {
startDate: Date;
}
export type { ResRound };
interface ResDataCapacity {
description: string;
id: string;
name: string;
type: string;
capacityDetails: capacityDetails;
}
interface capacityDetails {
capacityId: string;
description: string;
id: string;
level: string;
}
export type { ResRound, ResDataCapacity };