ทำเบียนประวัติลูกจ้างชั่วคราว

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-06-10 18:00:12 +07:00
parent 40b46b8c62
commit ba64953315
25 changed files with 4679 additions and 848 deletions

View file

@ -2,20 +2,20 @@ interface RequestObject {
birthDate: Date | null;
bloodGroup: string | null;
citizenId: string;
email: string | null;
// email: string | null;
ethnicity: string | null;
firstName: string;
gender: string | null;
lastName: string;
nationality: string | null;
phone: string | null;
posLevelId: string;
posTypeId: string;
// posLevelId: string;
// posTypeId: string;
prefix: string;
rank: string | null;
relationship: string | null;
religion: string | null;
telephoneNumber: string | null;
// telephoneNumber: string | null;
}
export type { RequestObject };