From d1a3d3589e2613eb320203e278e3e7e6632d0cb6 Mon Sep 17 00:00:00 2001 From: Narul Hidayah Date: Mon, 12 Jan 2026 17:20:19 +0700 Subject: [PATCH 1/2] update entity --- src/entity/hrms/hrms_training.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/entity/hrms/hrms_training.ts b/src/entity/hrms/hrms_training.ts index 21b2c10..34f7438 100644 --- a/src/entity/hrms/hrms_training.ts +++ b/src/entity/hrms/hrms_training.ts @@ -37,11 +37,23 @@ export class HrmsTraining { }) start_at: Date; + @Column({ + nullable: true, + length: 8, + }) + start_time: string; + @Column({ nullable: false, }) end_at: Date; + @Column({ + nullable: true, + length: 8, + }) + end_time: string; + @Column({ nullable: false, length: 64, From 290392b78b72800d6255f0c7b4e15c7981fd36ad Mon Sep 17 00:00:00 2001 From: Narul Hidayah Date: Tue, 13 Jan 2026 15:09:35 +0700 Subject: [PATCH 2/2] upd pay_cutoff --- src/entity/hrms/hrms_employee.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entity/hrms/hrms_employee.ts b/src/entity/hrms/hrms_employee.ts index 3cc290c..1bd4fd8 100644 --- a/src/entity/hrms/hrms_employee.ts +++ b/src/entity/hrms/hrms_employee.ts @@ -159,6 +159,9 @@ export class HrmsEmployee { @Column({ type: "int", nullable: true }) pay_date: number; + @Column({ type: "int", nullable: true }) + pay_cutoff_date: number; + @Column({ type: "int", nullable: true }) working_day: number;