46 lines
919 B
TypeScript
46 lines
919 B
TypeScript
interface ResponseData {
|
|
createdAt: Date;
|
|
date: Date;
|
|
firstName: string;
|
|
id: string;
|
|
isActive: boolean;
|
|
lastName: string;
|
|
organization: string;
|
|
organizationPositionOld: string;
|
|
posNo: string;
|
|
position: string;
|
|
positionLevel: string;
|
|
positionLevelOld: string;
|
|
positionNumberOld: string;
|
|
positionTypeOld: string;
|
|
prefix: string;
|
|
reason: string;
|
|
salary: number;
|
|
status: string;
|
|
fullname: string;
|
|
statustext: string;
|
|
}
|
|
|
|
interface TypeFile {
|
|
fileName: string;
|
|
pathName: string;
|
|
}
|
|
|
|
interface ResponseDataDetail {
|
|
personId: string;
|
|
avataPath: string;
|
|
createdAt: Date;
|
|
date: Date;
|
|
id: string;
|
|
organization: string;
|
|
organizationPositionOld: string;
|
|
positionLevelOld: string;
|
|
positionNumberOld: string;
|
|
positionTypeOld: string;
|
|
reason: string;
|
|
salary: number;
|
|
status: string;
|
|
fullname: string;
|
|
}
|
|
|
|
export type { ResponseData, ResponseDataDetail, TypeFile };
|