Merge branch 'develop' into adiDev

This commit is contained in:
AdisakKanthawilang 2025-04-28 14:46:16 +07:00
commit 519de90743
6 changed files with 1748 additions and 81 deletions

View file

@ -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;