เพิ่มคำนวนเงินเดือนตำแหน่ง ฉ
This commit is contained in:
parent
822035838d
commit
7a0fec256c
4 changed files with 39 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue