This commit is contained in:
fro1991
2025-02-06 04:53:59 +07:00
2 changed files with 45 additions and 2 deletions

View File

@ -34,7 +34,13 @@ export class BankGaransi {
nullable: true, nullable: true,
length: 4096, length: 4096,
}) })
submitter_address: string; applicant_address: string;
@Column({
nullable: true,
length: 4096,
})
applicant_account_number: string;
@Column({ @Column({
nullable: true, nullable: true,
@ -56,8 +62,9 @@ export class BankGaransi {
@Column({ @Column({
nullable: true, nullable: true,
length: 256,
}) })
contract_number: Date; contract_number: String;
@Column({ @Column({
nullable: true, nullable: true,

View File

@ -22,6 +22,42 @@ export class BankGaransiType {
}) })
name_alias: string; name_alias: string;
@Column({
nullable: true,
length: 50,
})
credit_account_number: string;
@Column({
nullable: true,
length: 256,
})
credit_account_name: string;
@Column({
nullable: true,
length: 50,
})
debit_account_number: string;
@Column({
nullable: true,
length: 256,
})
debit_account_name: string;
@Column({
nullable: true,
length: 50,
})
adm_account_number: string;
@Column({
nullable: true,
length: 256,
})
adm_account_name: string;
@Column({ @Column({
type: "enum", type: "enum",
enum: Status, enum: Status,