sort and add field
This commit is contained in:
parent
dc9ac66896
commit
a47c804969
4 changed files with 69 additions and 1 deletions
|
|
@ -277,6 +277,23 @@ export class ProfileSalaryTemp extends EntityBase {
|
|||
})
|
||||
salaryId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 255,
|
||||
comment: "หน่วยงานที่ออกคำสั่ง",
|
||||
default: null,
|
||||
})
|
||||
posNumCodeSit: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 255,
|
||||
comment: "หน่วยงานที่ออกคำสั่ง(ตัวย่อ)",
|
||||
default: null,
|
||||
})
|
||||
posNumCodeSitAbb: string;
|
||||
|
||||
|
||||
@ManyToOne(() => ProfileSalary, (profileSalary) => profileSalary.profileSalaryTemps)
|
||||
@JoinColumn({ name: "salaryId" })
|
||||
profileSalary: ProfileSalary;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue