This commit is contained in:
Narul Hidayah
2026-02-02 11:52:16 +07:00
parent ccdd8c1c9c
commit 44d039b4e9

View File

@ -68,6 +68,46 @@ export class HrmsAttendance {
}) })
is_late: boolean; 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({ @Column({
nullable: false, nullable: false,
length: 64, length: 64,