This commit is contained in:
AdisakKanthawilang 2025-03-28 13:58:06 +07:00
parent 27fe258408
commit 23cd5ea4b7

View file

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