From 23cd5ea4b75abec7a07b5e4970505276fed3f9b7 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Fri, 28 Mar 2025 13:58:06 +0700 Subject: [PATCH] fix --- src/entities/ProfileSalary.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/entities/ProfileSalary.ts b/src/entities/ProfileSalary.ts index 24506238..624ac5ee 100644 --- a/src/entities/ProfileSalary.ts +++ b/src/entities/ProfileSalary.ts @@ -320,6 +320,8 @@ export class CreateProfileSalary { isGovernment?: boolean | null; positionCee?: string | null; commandName?: string | null; + posNumCodeSit?: string | null; + posNumCodeSitAbb?: string | null; } export class CreateProfileSalaryEmployee { @@ -351,6 +353,8 @@ export class CreateProfileSalaryEmployee { isGovernment?: boolean | null; positionCee?: string | null; commandName?: string | null; + posNumCodeSit?: string | null; + posNumCodeSitAbb?: string | null; } export class UpdateProfileSalaryEmployee { @@ -381,6 +385,8 @@ export class UpdateProfileSalaryEmployee { isGovernment?: boolean | null; positionCee?: string | null; commandName?: string | null; + posNumCodeSit?: string | null; + posNumCodeSitAbb?: string | null; } export type UpdateProfileSalary = { @@ -411,4 +417,6 @@ export type UpdateProfileSalary = { isGovernment?: boolean | null; positionCee?: string | null; commandName?: string | null; + posNumCodeSit?: string | null; + posNumCodeSitAbb?: string | null; };