From bcbe21e51daa78266fd5c8deabed12976ffb8594 Mon Sep 17 00:00:00 2001 From: Bright Date: Mon, 21 Jul 2025 14:29:34 +0700 Subject: [PATCH] =?UTF-8?q?Fix=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1/=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=20?= =?UTF-8?q?=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=95?= =?UTF-8?q?=E0=B8=B3=E0=B9=81=E0=B8=AB=E0=B8=99=E0=B9=88=E0=B8=87=E0=B9=81?= =?UTF-8?q?=E0=B8=A5=E0=B9=89=E0=B8=A7=20Error=20#1639,=20#1641,=20#1646?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/ProfileSalary.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entities/ProfileSalary.ts b/src/entities/ProfileSalary.ts index ec71c039..ddbe184b 100644 --- a/src/entities/ProfileSalary.ts +++ b/src/entities/ProfileSalary.ts @@ -356,6 +356,8 @@ export class CreateProfileSalaryEmployee { positionLine?: string | null; positionPathSide?: string | null; positionExecutive?: string | null; + positionExecutiveField?: string | null; + positionArea?: string | null; amount?: Double | null; amountSpecial?: Double | null; positionSalaryAmount?: Double | null; @@ -390,6 +392,8 @@ export class UpdateProfileSalaryEmployee { positionLine?: string | null; positionPathSide?: string | null; positionExecutive?: string | null; + positionExecutiveField?: string | null; + positionArea?: string | null; amount?: Double | null; amountSpecial?: Double | null; positionSalaryAmount?: Double | null; @@ -424,6 +428,8 @@ export type UpdateProfileSalary = { positionLine?: string | null; positionPathSide?: string | null; positionExecutive?: string | null; + positionExecutiveField?: string | null; + positionArea?: string | null; amount?: Double | null; amountSpecial?: Double | null; positionSalaryAmount?: Double | null;