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",