From 1dbb113049db0472ad7de91f9834e2ddeb3a9de6 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Tue, 12 Nov 2024 10:39:44 +0700 Subject: [PATCH] refactor: add type --- src/stores/employee/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index 06d0da73..d2320713 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -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;