From bb53d4ef638ff5f6b850db3b2e11a3720356ec37 Mon Sep 17 00:00:00 2001 From: Bright Date: Thu, 3 Apr 2025 13:06:10 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=AA=E0=B8=A3=E0=B9=89=E0=B8=B2=E0=B8=87+?= =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=20=E0=B8=AA?= =?UTF-8?q?=E0=B9=88=E0=B8=87=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B8=84?= =?UTF-8?q?=E0=B8=B3=E0=B8=AA=E0=B8=B1=E0=B9=88=E0=B8=87=E0=B9=80=E0=B8=9E?= =?UTF-8?q?=E0=B8=B4=E0=B9=88=E0=B8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/ProfileAssistance.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entities/ProfileAssistance.ts b/src/entities/ProfileAssistance.ts index 1c92d3f8..568552c0 100644 --- a/src/entities/ProfileAssistance.ts +++ b/src/entities/ProfileAssistance.ts @@ -131,6 +131,7 @@ export class CreateProfileAssistance { refCommandDate?: string | null; commandId?: string | null; isUpload?: boolean | null; + commandName?: string | null; } export class CreateProfileAssistanceEmployee { @@ -143,6 +144,7 @@ export class CreateProfileAssistanceEmployee { refCommandDate?: string | null; commandId?: string | null; isUpload?: boolean | null; + commandName?: string | null; } export type UpdateProfileAssistance = { @@ -154,4 +156,5 @@ export type UpdateProfileAssistance = { isUpload?: boolean | null; refCommandDate?: string | null; commandId?: string | null; + commandName?: string | null; };