ทะเบียนประวัติ: ประวัติส่วนตัว (GET, PUT)

This commit is contained in:
puriphatt 2024-03-22 19:20:35 +07:00
parent 93fc17cea0
commit 79f08f7569
5 changed files with 409 additions and 454 deletions

View file

@ -0,0 +1,24 @@
interface RequestObject {
bloodGroupId: string | null;
relationshipId: string | null;
genderId: string | null;
posTypeId: string;
posLevelId: string;
religionId: string | null;
citizenId: string;
telephoneNumber: string | null;
// nationality: string | null;
ethnicity: string | null;
birthDate: Date | null;
dateRetire: Date | null;
isProbation: boolean;
keycloak: string;
phone: string | null;
email: string | null;
position: string;
lastName: string;
firstName: string;
prefix: string;
}
export type { RequestObject };