34 lines
811 B
TypeScript
34 lines
811 B
TypeScript
//ข้อมูล
|
|
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;
|
|
}
|
|
|
|
interface PersonalImformation {
|
|
prefix: string;
|
|
citizenId: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
birthDate: string | null;
|
|
age: any;
|
|
gender: string;
|
|
}
|
|
|
|
export type { ResponseObject, PersonalImformation };
|