refactor: add type

This commit is contained in:
Thanaphon Frappet 2024-11-12 10:39:44 +07:00
parent a38cd5e75d
commit 1dbb113049

View file

@ -237,6 +237,7 @@ export type EmployeeOther = {
fatherFirstName: string;
fatherBirthPlace: string;
citizenId: string;
telephoneNo: string;
};
export type EmployeeOtherCreate = {
@ -250,6 +251,7 @@ export type EmployeeOtherCreate = {
fatherLastName?: string;
fatherFirstName?: string;
fatherBirthPlace?: string;
telephoneNo?: string;
citizenId?: string;
id?: string;
statusSave?: boolean;