update
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
import { Column, CreateDateColumn, DeleteDateColumn, Entity, JoinColumn, ManyToOne, OneToMany, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm";
|
||||
import { BankGaransiType } from "./bank_garansi_type";
|
||||
import { Branch } from "./branchs";
|
||||
import { BankGaransiPic } from "./bank_garansi_pic";
|
||||
|
||||
// import { CategorySource } from '../types/category_source';
|
||||
// import { Status } from '../types/status';
|
||||
@ -10,7 +11,9 @@ import { Branch } from "./branchs";
|
||||
export class BankGaransiPending {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@ManyToOne(() => BankGaransiPic)
|
||||
@JoinColumn()
|
||||
bankgaransipic: BankGaransiPic;
|
||||
@Column({
|
||||
nullable: true,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user