Merge branch 'develop' into adiDev
This commit is contained in:
commit
519de90743
6 changed files with 1748 additions and 81 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