ทะเบียนประวัติ => ข้อมูลครอบครัว

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-17 13:16:13 +07:00
parent 8c829c03bd
commit f7c8315209
2 changed files with 56 additions and 12 deletions

View file

@ -0,0 +1,30 @@
interface FormPerson {
isLive: null | number | boolean | string;
citizenId: string;
prefix: string;
firstName: string;
lastName: string;
job: string;
lastNameOld?: string;
statusMarital?: string;
}
interface FormChildren {
id: string;
createdAt: string;
createdUserId: string;
lastUpdatedAt: string;
lastUpdateUserId: string;
createdFullName: string;
lastUpdateFullName: string;
childrenCareer: string;
childrenFirstName: string;
childrenLastName: string;
childrenPrefix: string;
childrenLive: boolean | number | null;
childrenCitizenId: string;
profileId: string | null;
profileEmployeeId: string | null;
}
export type { FormPerson, FormChildren };