2023-08-07 15:05:05 +07:00
|
|
|
interface resMain {
|
2023-08-14 16:45:23 +07:00
|
|
|
id: string;
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
year: string;
|
|
|
|
|
round: number;
|
|
|
|
|
total: number;
|
|
|
|
|
typeReport: String;
|
2023-07-24 17:38:57 +07:00
|
|
|
}
|
2023-08-14 16:45:23 +07:00
|
|
|
|
|
|
|
|
interface ResponseItems {
|
|
|
|
|
activeDate: Date;
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
firstName: string;
|
|
|
|
|
id: string;
|
|
|
|
|
isActive: boolean;
|
|
|
|
|
lastName: string;
|
|
|
|
|
location: string;
|
|
|
|
|
organizationPositionOld: string;
|
|
|
|
|
positionLevelOld: string;
|
|
|
|
|
positionNumberOld: string;
|
|
|
|
|
positionTypeOld: string;
|
|
|
|
|
prefix: string;
|
|
|
|
|
profileId: string;
|
|
|
|
|
reason: string;
|
|
|
|
|
salary: number;
|
|
|
|
|
sendDate: Date;
|
|
|
|
|
status: string;
|
|
|
|
|
statustext: string;
|
|
|
|
|
fullname: string;
|
2023-08-22 15:24:49 +07:00
|
|
|
datetext: string | null;
|
2023-08-14 16:45:23 +07:00
|
|
|
}
|
|
|
|
|
|
2023-08-23 17:42:38 +07:00
|
|
|
interface TypeFile {
|
|
|
|
|
fileName: string;
|
|
|
|
|
pathName: string;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-10 12:03:49 +07:00
|
|
|
interface rowFile {
|
|
|
|
|
fileName: string
|
|
|
|
|
pathName: string
|
|
|
|
|
|
|
|
|
|
}
|
2024-02-27 14:52:53 +07:00
|
|
|
|
|
|
|
|
interface FileList {
|
|
|
|
|
id: string
|
|
|
|
|
fileName: string
|
|
|
|
|
pathName: string
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface CheckBoxType {
|
|
|
|
|
label: string
|
|
|
|
|
value: string
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
export type { resMain, ResponseItems, TypeFile, rowFile,FileList,CheckBoxType };
|