Merge branch 'main' of ssh://git.shiblysolution.id:222/TCEL-ANATL/entity
This commit is contained in:
@ -159,6 +159,9 @@ export class HrmsEmployee {
|
||||
@Column({ type: "int", nullable: true })
|
||||
pay_date: number;
|
||||
|
||||
@Column({ type: "int", nullable: true })
|
||||
pay_cutoff_date: number;
|
||||
|
||||
@Column({ type: "int", nullable: true })
|
||||
working_day: number;
|
||||
|
||||
|
||||
@ -37,11 +37,23 @@ export class HrmsTraining {
|
||||
})
|
||||
start_at: Date;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 8,
|
||||
})
|
||||
start_time: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
})
|
||||
end_at: Date;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 8,
|
||||
})
|
||||
end_time: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
length: 64,
|
||||
|
||||
Reference in New Issue
Block a user