ค้นหาประวัติการครองตำแหน่ง ขรก./ลูกจ้าง

This commit is contained in:
Bright 2024-05-20 15:23:26 +07:00
parent 8f74e3a366
commit 77e3248a3a
4 changed files with 135 additions and 2 deletions

View file

@ -149,7 +149,7 @@ export class ProfileSalary extends EntityBase {
@JoinColumn({ name: "profileId" })
profile: Profile;
@ManyToOne(() => ProfileEmployee, (ProfileEmployee) => ProfileEmployee.profileSalarys)
@ManyToOne(() => ProfileEmployee, (profileEmployee) => profileEmployee.profileSalarys)
@JoinColumn({ name: "profileEmployeeId" })
profileEmployee: ProfileEmployee;
}