แก้คิวรี่เงินเดือน

This commit is contained in:
Kittapath 2024-03-11 14:19:26 +07:00
parent d825373542
commit 965dd6fe5b
4 changed files with 109 additions and 7 deletions

View file

@ -117,6 +117,14 @@ export class Profile extends EntityBase {
})
dateRetire: Date;
@Column({
nullable: true,
type: "datetime",
comment: "วันเกิด",
default: null,
})
birthDate: Date;
@OneToMany(() => PosMaster, (posMaster) => posMaster.current_holder)
current_holders: PosMaster[];