Refactoring code module 12_evaluatePersonal

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-20 13:13:43 +07:00
parent 381ec04492
commit 490f02309e
33 changed files with 598 additions and 1036 deletions

View file

@ -77,6 +77,22 @@ interface FileLists {
pathName: string; //link file
}
interface Meeting {
id: string;
date: Date | string;
dateStart: Date | string;
title: string;
round: string;
dateEnd: Date | string;
result: string;
timePeriod: string;
}
interface Pagination {
page: number;
rowsPerPage: number;
}
export type {
DataOption,
InvestigatefactsDataRowType,
@ -88,4 +104,6 @@ export type {
DataOptioGroup,
DataOptionYear,
OptionStatus,
Meeting,
Pagination,
};

View file

@ -22,13 +22,11 @@ interface ArrayFileList {
interface FormData {
id: string;
rounded: string;
dateMeeting: string;
dateMeetingStart: Date | null;
dateMeetingEnd: Date | null;
consider: string;
period: string;
title: string;
// file: FileOj[];
}
interface FileOj {

View file

@ -0,0 +1,34 @@
interface Directors {
email: string;
firstName: string;
id: string;
lastName: string;
phone: string;
position: string;
positionName: string;
prefix: string;
createdAt: string | Date;
createdFullName: string;
createdUserId: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string | Date;
}
interface Meetings {
dateEnd: Date | string;
dateStart: Date | string;
duration: string;
id: string;
result: string;
round: string;
title: string;
createdAt: string | Date;
createdFullName: string;
createdUserId: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string | Date;
}
export type { Directors, Meetings };