hrms-mgt/src/modules/06_retirement/interface/response/Main.ts
2023-08-14 16:45:23 +07:00

32 lines
604 B
TypeScript

interface resMain {
id: string;
createdAt: Date;
year: string;
round: number;
total: number;
typeReport: String;
}
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 };