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;