update bg peding

This commit is contained in:
meusinfirmary
2025-02-09 01:11:29 +07:00
parent 1beb8d15a6
commit fa51bb0e92

View File

@ -1,5 +1,6 @@
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, OneToMany, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
import { BankGaransiType } from "./bank_garansi_type";
import { Branch } from "./branchs";
// import { CategorySource } from '../types/category_source';
// import { Status } from '../types/status';
@ -26,6 +27,18 @@ export class BankGaransiPending {
})
name: string;
@Column({
nullable: true,
length: 4096,
})
applicant_address: string;
@Column({
nullable: true,
length: 4096,
})
applicant_account_number: string;
@Column({
nullable: true,
length: 256,
@ -57,6 +70,12 @@ export class BankGaransiPending {
})
project_owner: string;
@Column({
nullable: true,
length: 4096,
})
project_owner_address: string;
@Column({
nullable: true,
length: 256,
@ -102,6 +121,34 @@ export class BankGaransiPending {
})
description: string;
@Column({
nullable: true,
length: 256,
})
tin_number: string;
@Column({
nullable: true,
length: 256,
})
sign_by_name: string;
@Column({
nullable: true,
length: 256,
})
sign_by_title: string;
@Column({
nullable: true,
length: 4096,
})
bri_party: string;
@ManyToOne(() => Branch, { onDelete: "RESTRICT" })
@JoinColumn()
branch: Branch;
@Column()
@CreateDateColumn()
created_at: Date;