From 44d039b4e9cdfbf644eff5b733379fda74b3e8dc Mon Sep 17 00:00:00 2001 From: Narul Hidayah Date: Mon, 2 Feb 2026 11:52:16 +0700 Subject: [PATCH] upd --- src/entity/hrms/hrms_attendance.ts | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/entity/hrms/hrms_attendance.ts b/src/entity/hrms/hrms_attendance.ts index 2dc75e3..cac059d 100644 --- a/src/entity/hrms/hrms_attendance.ts +++ b/src/entity/hrms/hrms_attendance.ts @@ -68,6 +68,46 @@ export class HrmsAttendance { }) is_late: boolean; + /** Snapshot: batas awal clock in shift saat absen (agar tidak berubah jika shift diubah nanti) */ + @Column({ + type: "time", + nullable: true, + }) + shift_in_start_time: string; + + /** Snapshot: batas akhir clock in shift saat absen (agar tidak berubah jika shift diubah nanti) */ + @Column({ + type: "time", + nullable: true, + }) + shift_in_end_time: string; + + /** Snapshot: batas break out shift saat absen */ + @Column({ + type: "time", + nullable: true, + }) + shift_break_out_start_time: string; + + @Column({ + type: "time", + nullable: true, + }) + shift_break_out_end_time: string; + + /** Snapshot: batas break in shift saat absen */ + @Column({ + type: "time", + nullable: true, + }) + shift_break_in_start_time: string; + + @Column({ + type: "time", + nullable: true, + }) + shift_break_in_end_time: string; + @Column({ nullable: false, length: 64,