From 59d4377219903aad14ca8a30f78b2c434e136ce7 Mon Sep 17 00:00:00 2001 From: "fazri.is" Date: Fri, 2 Jan 2026 13:18:40 +0700 Subject: [PATCH] update --- src/entity/hrms/hrms_attendance.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/entity/hrms/hrms_attendance.ts b/src/entity/hrms/hrms_attendance.ts index 7ff3309..e34d3dc 100644 --- a/src/entity/hrms/hrms_attendance.ts +++ b/src/entity/hrms/hrms_attendance.ts @@ -34,6 +34,22 @@ export class HrmsAttendance { }) out_at: Date; + @Column({ + nullable: false, + }) + break_start_at: Date; + + @Column({ + nullable: false, + }) + break_end_at: Date; + + @Column({ + nullable: true, + type: "float8", + }) + duration_break: number; + @Column({ nullable: true, type: "float8",