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; fatherFirstName: string;
fatherBirthPlace: string; fatherBirthPlace: string;
citizenId: string; citizenId: string;
telephoneNo: string;
}; };
export type EmployeeOtherCreate = { export type EmployeeOtherCreate = {
@ -250,6 +251,7 @@ export type EmployeeOtherCreate = {
fatherLastName?: string; fatherLastName?: string;
fatherFirstName?: string; fatherFirstName?: string;
fatherBirthPlace?: string; fatherBirthPlace?: string;
telephoneNo?: string;
citizenId?: string; citizenId?: string;
id?: string; id?: string;
statusSave?: boolean; statusSave?: boolean;