อัพรูป

This commit is contained in:
Kittapath 2024-05-16 12:13:46 +07:00
parent 6010cc662c
commit 3ea5ec3486
3 changed files with 77 additions and 17 deletions

View file

@ -38,6 +38,13 @@ export class ProfileEmployee extends EntityBase {
})
avatar: string;
@Column({
nullable: true,
comment: "รูปถ่าย",
default: null,
})
avatarName: string;
@Column({
nullable: true,
comment: "ประเภทลูกจ้าง (perm->ลูกจ้างประจำ temp->ลูกจ้างชั่วคราว)",
@ -475,4 +482,4 @@ export type UpdateProfileAddressEmployee = {
currentDistrictId?: string | null;
currentSubDistrictId?: string | null;
currentZipCode?: string | null;
};
};