Merge branch 'main' of ssh://git.shiblysolution.id:222/TCEL-ANATL/entity

This commit is contained in:
fro1991
2026-01-17 14:26:23 +07:00
2 changed files with 15 additions and 0 deletions

View File

@ -159,6 +159,9 @@ export class HrmsEmployee {
@Column({ type: "int", nullable: true }) @Column({ type: "int", nullable: true })
pay_date: number; pay_date: number;
@Column({ type: "int", nullable: true })
pay_cutoff_date: number;
@Column({ type: "int", nullable: true }) @Column({ type: "int", nullable: true })
working_day: number; working_day: number;

View File

@ -37,11 +37,23 @@ export class HrmsTraining {
}) })
start_at: Date; start_at: Date;
@Column({
nullable: true,
length: 8,
})
start_time: string;
@Column({ @Column({
nullable: false, nullable: false,
}) })
end_at: Date; end_at: Date;
@Column({
nullable: true,
length: 8,
})
end_time: string;
@Column({ @Column({
nullable: false, nullable: false,
length: 64, length: 64,