Merge branch 'develop' of github.com:Frappet/hrms-api-org into develop

This commit is contained in:
mamoss 2025-03-28 14:06:49 +07:00
commit a34f814eba

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