update_table_salaryProfile_add_isNext

This commit is contained in:
Kittapath 2024-03-07 17:37:00 +07:00
parent 8d492370b6
commit 20c5e39ff7
3 changed files with 250 additions and 27 deletions

View file

@ -287,6 +287,13 @@ export class SalaryProfile extends EntityBase {
})
isReserve: boolean;
@Column({
nullable: true,
comment: "ทะลุขั้น",
default: false,
})
isNext: boolean;
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
@JoinColumn({ name: "salaryOrgId" })
salaryOrg: SalaryOrg;