เพิ่มคำนวนเงินเดือนตำแหน่ง ฉ

This commit is contained in:
Kittapath 2024-04-02 14:34:32 +07:00
parent 822035838d
commit 7a0fec256c
4 changed files with 39 additions and 0 deletions

View file

@ -294,6 +294,13 @@ export class SalaryProfile extends EntityBase {
})
isNext: boolean;
@Column({
nullable: true,
comment: "ฉ",
default: null,
})
isSpecial: boolean;
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
@JoinColumn({ name: "salaryOrgId" })
salaryOrg: SalaryOrg;
@ -395,4 +402,7 @@ export class CreateSalaryProfile {
@Column()
isRetired: boolean;
@Column()
isSpecial: boolean;
}

View file

@ -346,6 +346,13 @@ export class SalaryProfileEmployee extends EntityBase {
})
isNext: boolean;
@Column({
nullable: true,
comment: "ฉ",
default: null,
})
isSpecial: boolean;
@ManyToOne(() => SalaryOrgEmployee, (salaryOrg) => salaryOrg.salaryProfiles)
@JoinColumn({ name: "salaryOrgId" })
salaryOrg: SalaryOrgEmployee;
@ -456,4 +463,7 @@ export class CreateSalaryProfileEmployee {
@Column()
isRetired: boolean;
@Column()
isSpecial: boolean;
}