API รายการรอบการประเมินผลการปฏิบัติหน้าที่ราชการ
This commit is contained in:
parent
fa7cab32c3
commit
233c577299
4 changed files with 67 additions and 27 deletions
|
|
@ -1,6 +1,20 @@
|
|||
interface DataOption {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type {DataOption};
|
||||
interface ItemsMenu {
|
||||
label: string;
|
||||
value: string;
|
||||
icon: string;
|
||||
color: string;
|
||||
}
|
||||
|
||||
interface NewPagination {
|
||||
descending: boolean;
|
||||
page: number;
|
||||
rowsPerPage: number;
|
||||
sortBy: string;
|
||||
}
|
||||
|
||||
export type { DataOption, ItemsMenu,NewPagination };
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
interface FormCompetency {
|
||||
competencyType: string;
|
||||
competencyName: string;
|
||||
definition: string;
|
||||
level_1: string;
|
||||
level_2: string;
|
||||
level_3: string;
|
||||
level_4: string;
|
||||
level_5: string;
|
||||
evaluation: string;
|
||||
interface FormQueryRound {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
year: number;
|
||||
keyword: string;
|
||||
}
|
||||
|
||||
export type { FormCompetency };
|
||||
interface FormRound {
|
||||
durationKPI: string;
|
||||
startDate: Date | null;
|
||||
endDate: Date | null;
|
||||
}
|
||||
|
||||
export type { FormQueryRound, FormRound };
|
||||
|
|
|
|||
|
|
@ -1 +1,14 @@
|
|||
export type {};
|
||||
interface ResRound {
|
||||
createdAt: Date;
|
||||
createdFullName: string;
|
||||
createdUserId: Date;
|
||||
durationKPI: string;
|
||||
endDate: Date;
|
||||
id: Date;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: Date;
|
||||
lastUpdatedAt: Date;
|
||||
startDate: Date;
|
||||
}
|
||||
|
||||
export type { ResRound };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue