hrms-mgt/src/components/information/interface/response/Information.ts

35 lines
811 B
TypeScript
Raw Normal View History

//ข้อมูล
interface ResponseObject {
changeName: boolean | null;
birthDate: Date;
bloodGroupId: string | null;
citizenId: string | null;
firstName: string | null;
genderId: string | null;
lastName: string | null;
nationality: string | null;
prefixId: string | null;
race: string | null;
relationshipId: string | null;
religionId: string | null;
telephoneNumber: string | null;
createdFullName: string | null;
createdAt: Date;
age: string | null;
employeeType: string | null;
employeeClass: string | null;
profileType: string | null;
}
2024-01-09 11:03:01 +07:00
interface PersonalImformation {
prefix: string;
citizenId: string;
firstName: string;
lastName: string;
birthDate: string | null;
age: any;
2024-01-09 11:03:01 +07:00
gender: string;
}
export type { ResponseObject, PersonalImformation };