diff --git a/src/entities/SalaryProfile.ts b/src/entities/SalaryProfile.ts index a9948fe..5783f22 100644 --- a/src/entities/SalaryProfile.ts +++ b/src/entities/SalaryProfile.ts @@ -382,6 +382,13 @@ export class SalaryProfile extends EntityBase { }) isSpecial: boolean; + @Column({ + nullable: true, + comment: "ดีเด่น", + default: null, + }) + isGood: boolean; + @ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles) @JoinColumn({ name: "salaryOrgId" }) salaryOrg: SalaryOrg;