update bank garansi

This commit is contained in:
meusinfirmary
2025-02-06 03:21:56 +07:00
parent 1a1f497345
commit 82c22a5c70
2 changed files with 45 additions and 2 deletions

View File

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

View File

@ -22,6 +22,42 @@ export class BankGaransiType {
})
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({
type: "enum",
enum: Status,