add field in salary_profile
This commit is contained in:
parent
0b38e17a0d
commit
f53df5d478
1 changed files with 16 additions and 0 deletions
|
|
@ -389,6 +389,22 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
isGood: boolean;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ด้านทางการบริหาร",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
positionExecutiveField: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ด้าน/สาขา",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
positionArea: string;
|
||||
|
||||
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
|
||||
@JoinColumn({ name: "salaryOrgId" })
|
||||
salaryOrg: SalaryOrg;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue