upd
This commit is contained in:
@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user