This commit is contained in:
meusinfirmary
2025-02-09 02:03:36 +07:00
parent fa51bb0e92
commit a11a20d773

View File

@ -16,6 +16,11 @@ export class BankGaransiPending {
})
open_date: Date;
@Column({
nullable: true,
})
application_date: Date;
@Column({
nullable: true,
})
@ -57,6 +62,12 @@ export class BankGaransiPending {
})
contract_number: string;
@Column({
nullable: true,
length: 256,
})
contract_date: string;
@ManyToOne(() => BankGaransiType, (bank_garansi_type) => bank_garansi_type.bank_garansi)
@JoinColumn({ name: "bgTypeId" }) // Add foreign key column
bank_garansi_type: BankGaransiType;