From f53df5d478db1093ab3bf4cbc0a17af5fb90fde7 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 17 Jun 2025 13:40:06 +0700 Subject: [PATCH] add field in salary_profile --- src/entities/SalaryProfile.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/entities/SalaryProfile.ts b/src/entities/SalaryProfile.ts index 5783f22..b1f14d8 100644 --- a/src/entities/SalaryProfile.ts +++ b/src/entities/SalaryProfile.ts @@ -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;