From 566a75240cc5df19aec78fd555ee96495a686c5c Mon Sep 17 00:00:00 2001 From: Net Date: Fri, 9 Aug 2024 15:27:25 +0700 Subject: [PATCH] refactor: edit type --- src/stores/employee/types.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index c99c87d9..4a149347 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -204,6 +204,11 @@ export type EmployeeWorkCreate = { remark?: string; statusSave?: boolean; id?: string; + updatedAt?: Date | string; + updatedByUserId?: string; + createdAt?: Date | string; + createdByUserId?: string; + employeeId?: string; }; export type EmployeeOther = { @@ -232,6 +237,13 @@ export type EmployeeOtherCreate = { fatherFirstName?: string; fatherBirthPlace?: string; citizenId?: string; + id?: string; + statusSave?: boolean; + updatedAt?: Date | string; + updatedByUserId?: string; + createdAt?: Date | string; + createdByUserId?: string; + employeeId?: string; }; export type EmployeeHistory = {