update bank garansi
This commit is contained in:
@ -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,
|
||||
|
||||
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user