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,