แก้ไขการลา

This commit is contained in:
Thanit Konmek 2023-08-14 16:45:23 +07:00
parent 0116c7fef8
commit 265bc77553
11 changed files with 1022 additions and 264 deletions

View file

@ -1,9 +1,32 @@
interface resMain {
id: string;
createdAt: Date;
year: string;
round: number;
total: number;
typeReport: String;
id: string;
createdAt: Date;
year: string;
round: number;
total: number;
typeReport: String;
}
export type { resMain };
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;
}
export type { resMain, ResponseItems };