เพิ่มฟิลด์ "หน่วยงานที่ออกคำสั่ง"
This commit is contained in:
parent
ea8d60fda0
commit
38eab9a11e
1 changed files with 16 additions and 0 deletions
|
|
@ -212,6 +212,22 @@ export class ProfileSalaryHistory extends EntityBase {
|
|||
})
|
||||
commandId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 255,
|
||||
comment: "หน่วยงานที่ออกคำสั่ง",
|
||||
default: null,
|
||||
})
|
||||
posNumCodeSit: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 255,
|
||||
comment: "หน่วยงานที่ออกคำสั่ง(ตัวย่อ)",
|
||||
default: null,
|
||||
})
|
||||
posNumCodeSitAbb: string;
|
||||
|
||||
@ManyToOne(() => Command, (command) => command.profileSalaryHistorys)
|
||||
@JoinColumn({ name: "commandId" })
|
||||
command: Command;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue