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

This commit is contained in:
STW_TTTY\stwtt 2024-05-28 15:44:17 +07:00
parent b05065ba67
commit bd6f4fde7f
34 changed files with 9004 additions and 706 deletions

View file

@ -0,0 +1,19 @@
interface DataOptionInsignia {
id: string;
name: string;
typeName: string;
}
interface ResponseObject {
id: string;
name: string;
shortName: string;
insigniaTypeName: string;
createdAt: Date;
lastUpdatedAt: Date;
lastUpdateFullName: string;
isActive: boolean;
note: string;
}
export type { DataOptionInsignia, ResponseObject };

View file

@ -0,0 +1,48 @@
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;
}
interface DataOptionInsignia {
id: string;
name: string;
typeName: string;
}
interface ResponseObject {
id: string;
name: string;
shortName: string;
insigniaTypeName: string;
createdAt: Date;
lastUpdatedAt: Date;
lastUpdateFullName: string;
isActive: boolean;
note: string;
}
export type { FormPerson, FormChildren, DataOptionInsignia, ResponseObject };