เพิ่มขั้นเงินเดือน

This commit is contained in:
Kittapath 2024-03-18 13:51:10 +07:00
parent 85ba718bbd
commit 23754e849c
4 changed files with 24 additions and 0 deletions

View file

@ -141,6 +141,14 @@ export class ProfileEmployee extends EntityBase {
})
birthDate: Date;
@Column({
type: "double",
nullable: true,
comment: "ขั้นเงินเดือน",
default: null,
})
salaryLevel: number | null;
@OneToMany(() => EmployeePosMaster, (posMaster) => posMaster.current_holder)
current_holders: EmployeePosMaster[];