อนุมัติเงินเดือน

This commit is contained in:
Kittapath 2024-03-14 21:52:48 +07:00
parent c680dcd6a8
commit c22dd4ecf2
3 changed files with 192 additions and 9 deletions

View file

@ -108,6 +108,20 @@ export class SalaryOrg extends EntityBase {
})
remainingAmount: number;
@Column({
nullable: true,
comment: "คำแนะนำ สกจ",
length: 255,
})
ownerRecommend: string;
@Column({
nullable: true,
comment: "คำแนะนำ ผอ",
length: 255,
})
headRecommend: string;
@ManyToOne(() => SalaryPeriod, (salaryPeriod) => salaryPeriod.salaryOrgs)
@JoinColumn({ name: "salaryPeriodId" })
salaryPeriod: SalaryPeriod;