import mis

This commit is contained in:
mamoss 2025-05-21 08:16:21 +07:00
parent 60a72243e8
commit 083a482b3a
26 changed files with 4711 additions and 0 deletions

View file

@ -94,6 +94,13 @@ export class ProfileLeave extends EntityBase {
})
leaveId: string;
@Column({
nullable: false,
comment: "ข้อมูลจาก Entry",
default: false,
})
isEntry: boolean;
@OneToMany(() => ProfileLeaveHistory, (v) => v.profileLeave)
histories: ProfileLeaveHistory[];