ปรับเพิ่ม/แก้ไขลูกจ้าง

This commit is contained in:
Bright 2024-06-05 13:49:58 +07:00
parent 9d205caa1f
commit e4c08a5dc5
2 changed files with 33 additions and 108 deletions

View file

@ -472,51 +472,43 @@ export class ProfileEmployeeHistory extends ProfileEmployee {
}
export class CreateProfileEmployee {
rank: string;
prefix: string;
rank?: string | null;
firstName: string;
lastName: string;
// position: string;
// isProbation: boolean | null;
// dateRetire: Date | null;
birthDate: Date | null;
salaryLevel: number | null;
// ethnicity: string | null;
// telephoneNumber: string | null;
citizenId: string;
// religion: string | null;
posLevelId: string | null;
posTypeId: string | null;
// nationality: string | null;
// gender: string | null;
// relationship: string | null;
// bloodGroup: string | null;
// email: string | null;
// phone: string | null;
birthDate?: Date | null;
position?: string | null;
posLevelId?: string | null;
posTypeId?: string | null;
gender?: string | null;
relationship?: string | null;
nationality?: string | null;
ethnicity?: string | null;
religion?: string | null;
bloodGroup?: string | null;
phone?: string | null;
employeeClass: string;
}
export type UpdateProfileEmployee = {
prefix: string;
rank?: string | null;
prefix?: string | null;
firstName?: string | null;
lastName?: string | null;
// position?: string | null;
// isProbation?: boolean | null;
// dateRetire?: Date | null;
firstName: string;
lastName: string;
citizenId: string;
birthDate?: Date | null;
salaryLevel?: number | null;
ethnicity?: string | null;
telephoneNumber?: string | null;
citizenId?: string;
religion: string | null;
position?: string | null;
posLevelId?: string | null;
posTypeId?: string | null;
nationality?: string | null;
gender?: string | null;
relationship?: string | null;
nationality?: string | null;
ethnicity?: string | null;
religion?: string | null;
bloodGroup?: string | null;
email: string | null;
phone: string | null;
phone?: string | null;
employeeClass: string;
};
export type UpdateProfileAddressEmployee = {