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; };