add field in salary_profile

This commit is contained in:
AdisakKanthawilang 2025-06-17 13:40:06 +07:00
parent 0b38e17a0d
commit f53df5d478

View file

@ -389,6 +389,22 @@ export class SalaryProfile extends EntityBase {
})
isGood: boolean;
@Column({
nullable: true,
comment: "ด้านทางการบริหาร",
length: 255,
default: null,
})
positionExecutiveField: string;
@Column({
nullable: true,
comment: "ด้าน/สาขา",
length: 255,
default: null,
})
positionArea: string;
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
@JoinColumn({ name: "salaryOrgId" })
salaryOrg: SalaryOrg;